Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 801fb14552392fc2be4d3787f39db52e1a3c94cc (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
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
/******************************************************************************
 *  Copyright (c) 2011 GitHub Inc.
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 *  which accompanies this distribution, and is available at
 *  http://www.eclipse.org/legal/epl-v10.html
 *
 *  Contributors:
 *    Kevin Sawicki (GitHub Inc.) - initial API and implementation
 *****************************************************************************/
package org.eclipse.egit.github.core.tests;

import static org.junit.Assert.assertNotNull;
import static org.mockito.Matchers.any;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.verify;

import java.io.IOException;

import org.eclipse.egit.github.core.Key;
import org.eclipse.egit.github.core.User;
import org.eclipse.egit.github.core.client.GitHubClient;
import org.eclipse.egit.github.core.client.GitHubRequest;
import org.eclipse.egit.github.core.client.GitHubResponse;
import org.eclipse.egit.github.core.service.UserService;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;

/**
 * Unit tests of {@link UserService}
 */
@RunWith(MockitoJUnitRunner.class)
public class UserServiceTest {

	@Mock
	private GitHubClient client;

	@Mock
	private GitHubResponse response;

	private UserService service;

	/**
	 * Test case set up
	 *
	 * @throws IOException
	 */
	@Before
	public void before() throws IOException {
		doReturn(response).when(client).get(any(GitHubRequest.class));
		service = new UserService(client);
	}

	/**
	 * Create service using default constructor
	 */
	@Test
	public void constructor() {
		assertNotNull(new UserService().getClient());
	}

	/**
	 * Get user with null name
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void getUserNullName() throws IOException {
		service.getUser(null);
	}

	/**
	 * Get user with empty name
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void getUserEmptyName() throws IOException {
		service.getUser("");
	}

	/**
	 * Get current user
	 *
	 * @throws IOException
	 */
	@Test
	public void getCurrentUser() throws IOException {
		service.getUser();
		GitHubRequest request = new GitHubRequest();
		request.setUri("/user");
		verify(client).get(request);
	}

	/**
	 * Get user
	 *
	 * @throws IOException
	 */
	@Test
	public void getUser() throws IOException {
		service.getUser("beauser");
		GitHubRequest request = new GitHubRequest();
		request.setUri("/users/beauser");
		verify(client).get(request);
	}

	/**
	 * Edit user with null user
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void editUserNullUser() throws IOException {
		service.editUser(null);
	}

	/**
	 * Edit user
	 *
	 * @throws IOException
	 */
	@Test
	public void editUser() throws IOException {
		User user = new User().setName("user1").setBlog("blog");
		service.editUser(user);
		verify(client).post("/user", user, User.class);
	}

	/**
	 * Get current followers
	 *
	 * @throws IOException
	 */
	@Test
	public void getCurrentFollowers() throws IOException {
		service.getFollowers();
		GitHubRequest request = new GitHubRequest();
		request.setUri(Utils.page("/user/followers"));
		verify(client).get(request);
	}

	/**
	 * Get followers with null name
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void getFollowersNullName() throws IOException {
		service.getFollowers(null);
	}

	/**
	 * Get followers with empty name
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void getFollowersEmptyName() throws IOException {
		service.getFollowers("");
	}

	/**
	 * Get followers
	 *
	 * @throws IOException
	 */
	@Test
	public void getFollowers() throws IOException {
		service.getFollowers("beauser");
		GitHubRequest request = new GitHubRequest();
		request.setUri(Utils.page("/users/beauser/followers"));
		verify(client).get(request);
	}

	/**
	 * Get current following
	 *
	 * @throws IOException
	 */
	@Test
	public void getCurrentFollowing() throws IOException {
		service.getFollowing();
		GitHubRequest request = new GitHubRequest();
		request.setUri(Utils.page("/user/following"));
		verify(client).get(request);
	}

	/**
	 * Get following with null name
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void getFollowingNullName() throws IOException {
		service.getFollowing(null);
	}

	/**
	 * Get following with empty name
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void getFollowingEmptyName() throws IOException {
		service.getFollowing("");
	}

	/**
	 * Get following
	 *
	 * @throws IOException
	 */
	@Test
	public void getFollowing() throws IOException {
		service.getFollowing("beauser");
		GitHubRequest request = new GitHubRequest();
		request.setUri(Utils.page("/users/beauser/following"));
		verify(client).get(request);
	}

	/**
	 * Is following with null user
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void isFollowingNullUser() throws IOException {
		service.isFollowing(null);
	}

	/**
	 * Is following with empty user
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void isFollowingEmptyUser() throws IOException {
		service.isFollowing("");
	}

	/**
	 * Is following
	 *
	 * @throws IOException
	 */
	@Test
	public void isFollowing() throws IOException {
		service.isFollowing("beauser");
		GitHubRequest request = new GitHubRequest();
		request.setUri("/user/following/beauser");
		verify(client).get(request);
	}

	/**
	 * Follow with null user
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void followNullUser() throws IOException {
		service.follow(null);
	}

	/**
	 * Follow with empty user
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void followEmptyUser() throws IOException {
		service.follow("");
	}

	/**
	 * Follow
	 *
	 * @throws IOException
	 */
	@Test
	public void follow() throws IOException {
		service.follow("abc");
		verify(client).put("/user/following/abc");
	}

	/**
	 * Unfollow with null user
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void unfollowNullUser() throws IOException {
		service.unfollow(null);
	}

	/**
	 * Unfollow with empty user
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void unfollowEmptyUser() throws IOException {
		service.unfollow("");
	}

	/**
	 * Unfollow
	 *
	 * @throws IOException
	 */
	@Test
	public void unfollow() throws IOException {
		service.unfollow("abc");
		verify(client).delete("/user/following/abc");
	}

	/**
	 * Get emails
	 *
	 * @throws IOException
	 */
	@Test
	public void getEmails() throws IOException {
		service.getEmails();
		GitHubRequest request = new GitHubRequest();
		request.setUri(Utils.page("/user/emails"));
		verify(client).get(request);
	}

	/**
	 * Add email with null emails
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void addEmailNullEmails() throws IOException {
		service.addEmail((String[]) null);
	}

	/**
	 * Add email with empty emails
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void addEmailEmptyEmails() throws IOException {
		service.addEmail(new String[0]);
	}

	/**
	 * Add email
	 *
	 * @throws IOException
	 */
	@Test
	public void addEmail() throws IOException {
		String[] emails = new String[] { "t@es.t" };
		service.addEmail(emails);
		verify(client).post("/user/emails", emails, null);
	}

	/**
	 * Remove email with null emails
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void removeEmailNullEmails() throws IOException {
		service.removeEmail((String[]) null);
	}

	/**
	 * Remove email with empty emails
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void removeEmailEmptyEmails() throws IOException {
		service.removeEmail(new String[0]);
	}

	/**
	 * Remove email
	 *
	 * @throws IOException
	 */
	@Test
	public void removeEmail() throws IOException {
		String[] emails = new String[] { "t@es.t" };
		service.removeEmail(emails);
		verify(client).delete("/user/emails", emails);
	}

	/**
	 * Get keys
	 *
	 * @throws IOException
	 */
	@Test
	public void getKeys() throws IOException {
		service.getKeys();
		GitHubRequest request = new GitHubRequest();
		request.setUri(Utils.page("/user/keys"));
		verify(client).get(request);
	}

	/**
	 * Get key
	 *
	 * @throws IOException
	 */
	@Test
	public void getKey() throws IOException {
		service.getKey(4);
		GitHubRequest request = new GitHubRequest();
		request.setUri("/user/keys/4");
		verify(client).get(request);
	}

	/**
	 * Create key
	 *
	 * @throws IOException
	 */
	@Test
	public void createKey() throws IOException {
		Key key = new Key().setId(5);
		service.createKey(key);
		verify(client).post("/user/keys", key, Key.class);
	}

	/**
	 * Edit key with null key
	 *
	 * @throws IOException
	 */
	@Test(expected = IllegalArgumentException.class)
	public void editKeyNullKey() throws IOException {
		service.editKey(null);
	}

	/**
	 * Edit key
	 *
	 * @throws IOException
	 */
	@Test
	public void editKey() throws IOException {
		Key key = new Key().setId(12);
		service.editKey(key);
		verify(client).post("/user/keys/12", key, Key.class);
	}

	/**
	 * Delete key
	 *
	 * @throws IOException
	 */
	@Test
	public void deleteKey() throws IOException {
		service.deleteKey(6);
		verify(client).delete("/user/keys/6");
	}
}

Back to the top