aboutsummaryrefslogtreecommitdiff
path: root/test/bottin_test.go
blob: 00c0da996074b789edb7cb1e46761cf5b1e84748 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
package main

import (
	"testing"
)

func TestAddThenDelete(t *testing.T) {
	t.Parallel()
	//SetUp - Create Users and Groups
	inst, err := Init()
	if err != nil {
		t.Error(err)
	}

	//TearDown - Delete all the users and groups created
	err = inst.Clean()
	if err != nil {
		t.Error(err)
	}
}

func TestConfirmAddAttributes(t *testing.T) {
	t.Parallel()
	//SetUp - Create Users and Groups
	inst, err := Init()
	if err != nil {
		t.Error(err)
	}

	//Test search_attribute to confirm the Add
	if ok, err := inst.CompareOurDataWithConsul(); !ok {
		t.Error(err)
	}
	//TearDown - Delete all the users and groups created
	err = inst.Clean()
	if err != nil {
		t.Error(err)
	}
}

//Modifyrequest Test
func TestModifyRequest(t *testing.T) {
	t.Parallel()
	//SetUp - Create Users and Groups
	inst, err := Init()
	if err != nil {
		t.Error(err)
	}

	//Test modify all data (groups and users)
	err = inst.ModifyRandomAllData()
	if err != nil {
		t.Error(err)
	}

	//TearDown - Delete all the users and groups created
	err = inst.Clean()
	if err != nil {
		t.Error(err)
	}
}

func TestModifyRequestAndCheck(t *testing.T) {
	t.Parallel()
	//SetUp - Create Users and Groups
	inst, err := Init()
	if err != nil {
		t.Error(err)
	}

	//Test modify all data (groups and users)
	err = inst.ModifyRandomAllData()
	if err != nil {
		t.Error(err)
	}

	//Check if the data was modify on Consul
	if ok, err := inst.CompareOurDataWithConsul(); !ok {
		t.Error(err)
	}

	//TearDown - Delete all the users and groups created
	err = inst.Clean()
	if err != nil {
		t.Error(err)
	}
}

func TestAddUserInGroup(t *testing.T) {
	t.Parallel()
	//SetUp - Create Users and Groups
	inst, err := Init()
	if err != nil {
		t.Error(err)
	}

	//Add users in group
	err = inst.AddAllUsersInGroup()
	if err != nil {
		t.Error(err)
	}

	//TearDown - Delete all the users and groups created
	err = inst.Clean()
	if err != nil {
		t.Error(err)
	}
}

func TestDeleteGroupsAfterAddedUsers(t *testing.T) {
	t.Parallel()
	//SetUp - Create Users and Groups
	inst, err := Init()
	if err != nil {
		t.Error(err)
	}

	//Add users in group
	err = inst.AddAllUsersInGroup()
	if err != nil {
		t.Error(err)
	}

	//Delete the half groups
	number := len(inst.dataGroups) / 2
	err = inst.clean(inst.dataGroups[0:number])
	if err != nil {
		t.Error(err)
	}
	inst.dataGroups = inst.dataGroups[number:len(inst.dataGroups)]

	//Check all the groups in memberOf exist
	ok, err := inst.CheckMemberOf()
	if err != nil {
		t.Error(err)
	}
	if !ok {
		t.Errorf("Found group in memberOf that isn't in Consul.")
	}

	//TearDown - Delete all the users and groups created
	err = inst.Clean()
	if err != nil {
		t.Error(err)
	}
}

//Example of paralellism Test
func TestPrincipal(t *testing.T) {

	t.Run("A=1", TestAddThenDelete)
	t.Run("A=2", TestModifyRequest)
	if !testing.Short() {
		t.Run("B=1", TestConfirmAddAttributes)
		t.Run("B=2", TestModifyRequestAndCheck)
		t.Run("C=1", TestAddUserInGroup)
		t.Run("C=2", TestDeleteGroupsAfterAddedUsers)
	}

}