forked from hub4j/github-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGHTeamTest.java
More file actions
266 lines (212 loc) · 8.73 KB
/
Copy pathGHTeamTest.java
File metadata and controls
266 lines (212 loc) · 8.73 KB
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
package org.kohsuke.github;
import org.junit.Test;
import org.kohsuke.github.GHTeam.Privacy;
import org.kohsuke.github.GHTeam.Role;
import java.io.IOException;
import java.util.List;
import java.util.Set;
import static org.hamcrest.Matchers.containsInAnyOrder;
import static org.hamcrest.Matchers.empty;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.hasProperty;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.notNullValue;
// TODO: Auto-generated Javadoc
/**
* The Class GHTeamTest.
*/
public class GHTeamTest extends AbstractGitHubWireMockTest {
/**
* Test set description.
*
* @throws IOException
* Signals that an I/O exception has occurred.
*/
@Test
public void testSetDescription() throws IOException {
String description = "Updated by API Test";
String teamSlug = "dummy-team";
// Set the description.
GHTeam team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug);
assertThat(team.getHtmlUrl(), notNullValue());
team.setDescription(description);
// Check that it was set correctly.
team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug);
assertThat(team.getDescription(), equalTo(description));
description += "Modified";
// Set the description.
team.setDescription(description);
// Check that it was set correctly.
team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug);
assertThat(team.getDescription(), equalTo(description));
}
/**
* Gets the members.
*
* @throws IOException
* Signals that an I/O exception has occurred.
*/
@Test
public void getMembers() throws IOException {
String teamSlug = "dummy-team";
GHTeam team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug);
Set<GHUser> admins = team.getMembers();
assertThat(admins, notNullValue());
assertThat("One admin in dummy team", admins.size(), equalTo(1));
assertThat("Specific user in admin team",
admins.stream().anyMatch(ghUser -> ghUser.getLogin().equals("bitwiseman")));
}
/**
* List members.
*
* @throws IOException
* Signals that an I/O exception has occurred.
*/
@Test
public void listMembers() throws IOException {
String teamSlug = "dummy-team";
GHTeam team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug);
List<GHUser> admins = team.listMembers().toList();
assertThat(admins, notNullValue());
assertThat("One admin in dummy team", admins.size(), equalTo(1));
assertThat("Specific user in admin team",
admins.stream().anyMatch(ghUser -> ghUser.getLogin().equals("bitwiseman")));
}
/**
* List members admin.
*
* @throws IOException
* Signals that an I/O exception has occurred.
*/
@Test
public void listMembersAdmin() throws IOException {
String teamSlug = "dummy-team";
GHTeam team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug);
List<GHUser> admins = team.listMembers("admin").toList();
assertThat(admins, notNullValue());
assertThat("One admin in dummy team", admins.size(), equalTo(1));
assertThat("Specific user in admin team",
admins.stream().anyMatch(ghUser -> ghUser.getLogin().equals("bitwiseman")));
}
/**
* List members no match.
*
* @throws IOException
* Signals that an I/O exception has occurred.
*/
@Test
public void listMembersNoMatch() throws IOException {
String teamSlug = "dummy-team";
GHTeam team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug);
List<GHUser> justMembers = team.listMembers("member").toList();
assertThat("No regular members in team", justMembers.isEmpty());
}
/**
* Test set privacy.
*
* @throws IOException
* Signals that an I/O exception has occurred.
*/
@Test
public void testSetPrivacy() throws IOException {
// we need to use a team that doesn't have child teams
// as secret privacy is not supported for parent teams
String teamSlug = "simple-team";
Privacy privacy = Privacy.CLOSED;
// Set the privacy.
GHTeam team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug);
team.setPrivacy(privacy);
// Check that it was set correctly.
team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug);
assertThat(team.getPrivacy(), equalTo(privacy));
privacy = Privacy.SECRET;
// Set the privacy.
team.setPrivacy(privacy);
// Check that it was set correctly.
team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug);
assertThat(team.getPrivacy(), equalTo(privacy));
}
/**
* Test fetch child teams.
*
* @throws IOException
* Signals that an I/O exception has occurred.
*/
@Test
public void testFetchChildTeams() throws IOException {
String teamSlug = "dummy-team";
GHOrganization org = gitHub.getOrganization(GITHUB_API_TEST_ORG);
GHTeam team = org.getTeamBySlug(teamSlug);
Set<GHTeam> result = team.listChildTeams().toSet();
assertThat(result.size(), equalTo(1));
assertThat(result.toArray(new GHTeam[]{})[0].getName(), equalTo("child-team-for-dummy"));
}
/**
* Test fetch empty child teams.
*
* @throws IOException
* Signals that an I/O exception has occurred.
*/
@Test
public void testFetchEmptyChildTeams() throws IOException {
String teamSlug = "simple-team";
GHOrganization org = gitHub.getOrganization(GITHUB_API_TEST_ORG);
GHTeam team = org.getTeamBySlug(teamSlug);
Set<GHTeam> result = team.listChildTeams().toSet();
assertThat(result, is(empty()));
}
/**
* Adds the remove member.
*
* @throws IOException
* Signals that an I/O exception has occurred.
*/
@Test
public void addRemoveMember() throws IOException {
String teamSlug = "dummy-team";
GHTeam team = gitHub.getOrganization(GITHUB_API_TEST_ORG).getTeamBySlug(teamSlug);
List<GHUser> members = team.listMembers().toList();
assertThat(members, notNullValue());
assertThat("One admin in dummy team", members.size(), equalTo(1));
assertThat("Specific user in admin team",
members.stream().anyMatch(ghUser -> ghUser.getLogin().equals("bitwiseman")));
GHUser user = gitHub.getUser("gsmet");
try {
team.add(user, Role.MAINTAINER);
// test all
members = team.listMembers().toList();
assertThat(members, notNullValue());
assertThat("Two members for all roles in dummy team", members.size(), equalTo(2));
assertThat("Specific users in team",
members,
containsInAnyOrder(hasProperty("login", equalTo("bitwiseman")),
hasProperty("login", equalTo("gsmet"))));
// test maintainer role filter
members = team.listMembers(Role.MAINTAINER).toList();
assertThat(members, notNullValue());
assertThat("Two members for all roles in dummy team", members.size(), equalTo(2));
assertThat("Specific users in team",
members,
containsInAnyOrder(hasProperty("login", equalTo("bitwiseman")),
hasProperty("login", equalTo("gsmet"))));
// test member role filter
// it's hard to test this as owner of the org are automatically made maintainer
// so let's just test that we don't have any members around
members = team.listMembers(Role.MEMBER).toList();
assertThat(members, notNullValue());
assertThat("No members in dummy team", members.size(), equalTo(0));
// test removing the user has effect
team.remove(user);
members = team.listMembers().toList();
assertThat(members, notNullValue());
assertThat("One member for all roles in dummy team", members.size(), equalTo(1));
assertThat("Specific user in team",
members,
containsInAnyOrder(hasProperty("login", equalTo("bitwiseman"))));
} finally {
if (team.hasMember(user)) {
team.remove(user);
}
}
}
}