Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fd7cc666016aadeb99019f81683c904e44d8fc6b (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
/*******************************************************************************
 *  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 java.io.IOException;
import java.net.URL;

import junit.framework.TestCase;

import org.apache.http.HttpHost;
import org.eclipse.egit.github.core.client.GitHubClient;

/**
 * Base live test class.
 */
public abstract class LiveTest extends TestCase {

	/**
	 * Configured client
	 */
	protected GitHubClient client;

	/**
	 * Configure client
	 * 
	 * @param client
	 * @return specified client
	 */
	protected GitHubClient configure(GitHubClient client) {
		String user = System.getProperty("github.test.user");
		String password = System.getProperty("github.test.password");
		client.setCredentials(user, password);
		return client;
	}

	/**
	 * Create client for url
	 * 
	 * @param url
	 * @return client
	 * @throws IOException
	 */
	protected GitHubClient createClient(String url) throws IOException {
		GitHubClient client = null;
		if (url != null) {
			URL parsed = new URL(url);
			HttpHost httpHost = new HttpHost(parsed.getHost(), parsed.getPort(),
					parsed.getProtocol());
			client = new GitHubClient(httpHost);
		} else
			client = new GitHubClient();
		return configure(client);
	}

	/**
	 * @see junit.framework.TestCase#setUp()
	 */
	public void setUp() throws Exception {
		String testUrl = System.getProperty("github.test.url");
		this.client = createClient(testUrl);
	}
}

Back to the top