Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: efbef24e017391348e03832e4d812489660af80e (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
/******************************************************************************
 *  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.live;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;

import java.util.List;

import org.eclipse.egit.github.core.Repository;
import org.eclipse.egit.github.core.RepositoryId;
import org.eclipse.egit.github.core.User;
import org.eclipse.egit.github.core.service.WatcherService;
import org.junit.Test;

/**
 * Unit tests of {@link WatcherService}
 */
public class WatcherTest extends LiveTest {

	/**
	 * Test getting watchers of a repository
	 * 
	 * @throws Exception
	 */
	@Test
	public void getWatchers() throws Exception {
		WatcherService service = new WatcherService(client);
		List<User> watchers = service.getWatchers(new RepositoryId("defunkt",
				"dotjs"));
		assertNotNull(watchers);
		assertFalse(watchers.isEmpty());
		for (User watcher : watchers) {
			assertNotNull(watcher);
			assertNotNull(watcher.getLogin());
		}
	}

	/**
	 * Test getting repositories watched by a user
	 * 
	 * @throws Exception
	 */
	@Test
	public void getWatched() throws Exception {
		WatcherService service = new WatcherService(client);
		List<Repository> watched = service.getWatched("defunkt");
		assertNotNull(watched);
		assertFalse(watched.isEmpty());
		for (Repository repo : watched) {
			assertNotNull(repo);
			assertNotNull(repo.getName());
			assertNotNull(repo.getOwner());
		}
	}

	/**
	 * Test if current user is watching a repository
	 * 
	 * @throws Exception
	 */
	@Test
	public void isWatching() throws Exception {
		checkUser();
		WatcherService service = new WatcherService(client);
		List<Repository> watched = service.getWatched();
		assertNotNull(watched);
		assertFalse(watched.isEmpty());
		for (Repository repo : watched) {
			assertNotNull(repo);
			assertNotNull(repo.getName());
			assertNotNull(repo.getOwner());
			assertTrue(service.isWatching(repo));
		}
	}
}

Back to the top