Skip to main content
summaryrefslogtreecommitdiffstats
blob: b803326190605292ad5f0d09482fc53fdee5e3c2 (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
/*******************************************************************************
 * Copyright (c) 2010 Frank Becker and others.
 * 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:
 *     Frank Becker - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.bugzilla.tests.core;

import java.util.Date;
import java.util.HashMap;

import junit.framework.TestCase;

import org.apache.xmlrpc.XmlRpcException;
import org.eclipse.mylyn.bugzilla.tests.support.BugzillaFixture;
import org.eclipse.mylyn.commons.net.AuthenticationType;
import org.eclipse.mylyn.commons.net.WebLocation;
import org.eclipse.mylyn.internal.bugzilla.core.service.BugzillaXmlRpcClient;

/**
 * Tests should be run against Bugzilla 3.6 or greater
 * 
 * @author Frank Becker
 */

public class BugzillaXMLRPCTest extends TestCase {
	private BugzillaXmlRpcClient bugzillaClient;

	@Override
	public void setUp() throws Exception {
		WebLocation webLocation = new WebLocation(BugzillaFixture.current().getRepositoryUrl() + "/xmlrpc.cgi");
		webLocation.setCredentials(AuthenticationType.REPOSITORY, "tests@mylyn.eclipse.org", "mylyntest");
		bugzillaClient = new BugzillaXmlRpcClient(webLocation);
		bugzillaClient.setContentTypeCheckingEnabled(true);
	}

	@SuppressWarnings("unused")
	public void testxmlrpc() throws Exception {
		if (BugzillaFixture.current() != BugzillaFixture.BUGS_3_6_XML_RPC_DISABLED) {
			int uID = bugzillaClient.login();
			String x0 = bugzillaClient.getVersion();
			HashMap<?, ?> x1 = bugzillaClient.getTime();
			Date x2 = bugzillaClient.getDBTime();
			Date x3 = bugzillaClient.getWebTime();
			Object[] xx0 = bugzillaClient.getUserInfoFromIDs(new Integer[] { 1, 2 });
			Object[] xx1 = bugzillaClient.getUserInfoFromNames(new String[] { "tests@mylyn.eclipse.org" });
			Object[] xx2 = bugzillaClient.getUserInfoWithMatch(new String[] { "est" });
			Object[] xx3 = bugzillaClient.getAllFields();
			Object[] xx4 = bugzillaClient.getFieldsWithNames(new String[] { "qa_contact" });
			Object[] xx5 = bugzillaClient.getFieldsWithIDs(new Integer[] { 12, 18 });
			Object[] xx6 = bugzillaClient.getSelectableProducts();
			Object[] xx7 = bugzillaClient.getEnterableProducts();
			Object[] xx8 = bugzillaClient.getAccessibleProducts();
			Object[] xx9 = bugzillaClient.getProducts(new Integer[] { 1, 3 });
		}
	}

	@SuppressWarnings("unused")
	public void testxmlrpcInstalled() throws Exception {
		int uID = -1;
		BugzillaFixture a = BugzillaFixture.current();
		if (BugzillaFixture.current() == BugzillaFixture.BUGS_3_6_XML_RPC_DISABLED) {
			try {
				uID = bugzillaClient.login();
				fail("Never reach this! We should get an XmlRpcException");
			} catch (XmlRpcException e) {
				assertEquals("The server returned an unexpected content type: 'text/html; charset=UTF-8'",
						e.getMessage());
			}
		} else {
			uID = bugzillaClient.login();
			assertEquals(2, uID);
		}
	}

}

Back to the top