Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests')
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/META-INF/MANIFEST.MF3
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/tests/BugzillaRestClientTest.java154
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/tests/BugzillaRestConfigurationTest.java66
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/tests/BugzillaRestConnectorTest.java46
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/test/support/BugzillaRestTestFixture.java56
5 files changed, 324 insertions, 1 deletions
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/META-INF/MANIFEST.MF b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/META-INF/MANIFEST.MF
index caf04bc01..45032365d 100644
--- a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/META-INF/MANIFEST.MF
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/META-INF/MANIFEST.MF
@@ -6,5 +6,6 @@ Bundle-Version: 1.0.0.qualifier
Bundle-Vendor: Eclipse Mylyn
Fragment-Host: org.eclipse.mylyn.bugzilla.rest.core
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
-Require-Bundle: org.junit;bundle-version="4.8.2"
+Require-Bundle: org.junit;bundle-version="4.8.2",
+ org.eclipse.mylyn.commons.sdk.util
Export-Package: org.eclipse.mylyn.internal.bugzilla.rest.core;x-internal:=true
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/tests/BugzillaRestClientTest.java b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/tests/BugzillaRestClientTest.java
new file mode 100644
index 000000000..6432728e3
--- /dev/null
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/tests/BugzillaRestClientTest.java
@@ -0,0 +1,154 @@
+/*******************************************************************************
+ * Copyright (c) 2014 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.internal.bugzilla.rest.core.tests;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+
+import org.eclipse.mylyn.commons.net.AuthenticationCredentials;
+import org.eclipse.mylyn.commons.repositories.core.RepositoryLocation;
+import org.eclipse.mylyn.commons.repositories.core.auth.AuthenticationType;
+import org.eclipse.mylyn.commons.repositories.core.auth.UserCredentials;
+import org.eclipse.mylyn.commons.sdk.util.CommonTestUtil;
+import org.eclipse.mylyn.commons.sdk.util.CommonTestUtil.PrivilegeLevel;
+import org.eclipse.mylyn.commons.sdk.util.Junit4TestFixtureRunner;
+import org.eclipse.mylyn.commons.sdk.util.Junit4TestFixtureRunner.FixtureDefinition;
+import org.eclipse.mylyn.internal.bugzilla.rest.core.BugzillaRestClient;
+import org.eclipse.mylyn.internal.bugzilla.rest.core.BugzillaRestConnector;
+import org.eclipse.mylyn.internal.bugzilla.rest.core.BugzillaRestException;
+import org.eclipse.mylyn.internal.bugzilla.rest.core.BugzillaRestVersion;
+import org.eclipse.mylyn.internal.bugzilla.rest.core.response.data.BugzillaRestLoginToken;
+import org.eclipse.mylyn.internal.bugzilla.rest.test.support.BugzillaRestTestFixture;
+import org.eclipse.mylyn.internal.commons.core.operations.NullOperationMonitor;
+import org.eclipse.mylyn.internal.commons.repositories.core.InMemoryCredentialsStore;
+import org.eclipse.mylyn.internal.tasks.core.TaskRepositoryManager;
+import org.eclipse.mylyn.tasks.core.TaskRepository;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.BeforeClass;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.ExpectedException;
+import org.junit.runner.RunWith;
+
+@SuppressWarnings("restriction")
+@RunWith(Junit4TestFixtureRunner.class)
+@FixtureDefinition(fixtureClass = BugzillaRestTestFixture.class, fixtureType = "bugzillaREST")
+// use this if you only want to run the test class if the property exists with
+// the value in the fixture.
+// Note: When there is no fixture with this property no tests get executed
+//@RunOnlyWhenProperty(property = "default", value = "1")
+public class BugzillaRestClientTest {
+ private final BugzillaRestTestFixture actualFixture;
+
+ @Rule
+ public ExpectedException thrown = ExpectedException.none();
+
+ private static TaskRepositoryManager manager;
+
+ private BugzillaRestConnector connector;
+
+ public BugzillaRestClientTest(BugzillaRestTestFixture fixture) {
+ this.actualFixture = fixture;
+ }
+
+ @BeforeClass
+ public static void setUpClass() {
+ manager = new TaskRepositoryManager();
+ }
+
+ @Before
+ public void setUp() {
+ manager.addRepository(actualFixture.repository());
+ connector = new BugzillaRestConnector();
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ manager.clearRepositories();
+ }
+
+ @Test
+ public void testConnectorClientCache() throws Exception {
+ BugzillaRestClient client1 = connector.getClient(actualFixture.repository());
+ assertNotNull(client1);
+ }
+
+ @Test
+ public void testConnectorClientCacheRepositoryNotInManagerFailwithID() throws Exception {
+ TaskRepository repository = new TaskRepository(actualFixture.getConnectorKind(),
+ actualFixture.getRepositoryUrl());
+ UserCredentials credentials = CommonTestUtil.getCredentials(PrivilegeLevel.USER);
+ repository.setCredentials(org.eclipse.mylyn.commons.net.AuthenticationType.REPOSITORY,
+ new AuthenticationCredentials(credentials.getUserName(), credentials.getPassword()), true);
+ BugzillaRestClient client1 = connector.getClient(repository);
+ assertNotNull(client1);
+ }
+
+ @Test
+ public void testGetVersion() throws Exception {
+ BugzillaRestClient client = new BugzillaRestClient(actualFixture.location());
+ assertNotNull(client.getClient());
+ assertNull(client.getClient().getLoginToken());
+ BugzillaRestVersion version = client.getVersion(new NullOperationMonitor());
+ assertEquals("expeccted: " + actualFixture.getVersion() + " actual: " + version.toString(),
+ actualFixture.getVersion(), version.toString());
+ }
+
+ @Test
+ public void testValidate() throws Exception {
+ BugzillaRestClient client = new BugzillaRestClient(actualFixture.location());
+ assertNotNull(client.getClient());
+ assertNull(client.getClient().getLoginToken());
+ assertTrue(client.validate(new NullOperationMonitor()));
+ assertNotNull(client.getClient());
+ BugzillaRestLoginToken token = client.getClient().getLoginToken();
+ assertNotNull(token);
+ assertEquals("2", token.getId());
+ assertNotNull(token.getToken());
+ assertTrue(token.getToken().length() > 0);
+ }
+
+ @Test
+ public void testInvalideUserValidate() throws BugzillaRestException {
+ RepositoryLocation location = new RepositoryLocation();
+ location.setUrl(actualFixture.getRepositoryUrl());
+ location.setProxy(null);
+ location.setCredentialsStore(new InMemoryCredentialsStore());
+ location.setCredentials(AuthenticationType.REPOSITORY, new UserCredentials("wrong", "wrong"));
+ thrown.expect(BugzillaRestException.class);
+ thrown.expectMessage("Authentication failed");
+ BugzillaRestClient client;
+ client = new BugzillaRestClient(location);
+ assertNotNull(client.getClient());
+ assertNull(client.getClient().getLoginToken());
+ client.validate(new NullOperationMonitor());
+ }
+
+ @Test
+ public void testNoUserValidate() throws BugzillaRestException {
+ RepositoryLocation location = new RepositoryLocation();
+ location.setUrl(actualFixture.getRepositoryUrl());
+ location.setProxy(null);
+ location.setCredentialsStore(new InMemoryCredentialsStore());
+ location.setCredentials(AuthenticationType.REPOSITORY, null);
+ thrown.expect(IllegalStateException.class);
+ thrown.expectMessage("Authentication requested without valid credentials");
+ BugzillaRestClient client;
+ client = new BugzillaRestClient(location);
+ assertNotNull(client.getClient());
+ assertNull(client.getClient().getLoginToken());
+ client.validate(new NullOperationMonitor());
+ }
+} \ No newline at end of file
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/tests/BugzillaRestConfigurationTest.java b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/tests/BugzillaRestConfigurationTest.java
new file mode 100644
index 000000000..2ff339046
--- /dev/null
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/tests/BugzillaRestConfigurationTest.java
@@ -0,0 +1,66 @@
+/*******************************************************************************
+ * Copyright (c) 2014 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.internal.bugzilla.rest.core.tests;
+
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.mylyn.commons.sdk.util.Junit4TestFixtureRunner;
+import org.eclipse.mylyn.commons.sdk.util.Junit4TestFixtureRunner.FixtureDefinition;
+import org.eclipse.mylyn.internal.bugzilla.rest.core.BugzillaRestConnector;
+import org.eclipse.mylyn.internal.bugzilla.rest.core.RepositoryKey;
+import org.eclipse.mylyn.internal.bugzilla.rest.test.support.BugzillaRestTestFixture;
+import org.eclipse.mylyn.internal.tasks.core.TaskRepositoryManager;
+import org.eclipse.mylyn.tasks.core.TaskRepository;
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+@SuppressWarnings("restriction")
+@RunWith(Junit4TestFixtureRunner.class)
+@FixtureDefinition(fixtureClass = BugzillaRestTestFixture.class, fixtureType = "bugzillaREST")
+//@RunOnlyWhenProperty(property = "default", value = "1")
+public class BugzillaRestConfigurationTest {
+ private final BugzillaRestTestFixture actualFixture;
+
+ private static TaskRepositoryManager manager;
+
+ public BugzillaRestConfigurationTest(BugzillaRestTestFixture fixture) {
+ this.actualFixture = fixture;
+ }
+
+ @BeforeClass
+ public static void setUpClass() {
+ manager = new TaskRepositoryManager();
+ }
+
+ @Test
+ public void testRepositoryKey() throws CoreException {
+ RepositoryKey rep1 = new RepositoryKey(new TaskRepository("xx", "url"));
+ RepositoryKey rep2 = new RepositoryKey(new TaskRepository("xx1", "url1"));
+ RepositoryKey rep3 = new RepositoryKey(new TaskRepository("xx", "url"));
+ assertTrue(rep1.equals(rep1));
+ assertTrue(rep1.equals(rep3));
+ assertFalse(rep1.equals(rep2));
+ }
+
+ @Test
+ public void testConfigurationFromConnector() throws CoreException {
+ BugzillaRestConnector connector = new BugzillaRestConnector();
+ assertNotNull(connector);
+ assertNull(connector.getRepositoryConfiguration(actualFixture.repository()));
+ }
+
+}
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/tests/BugzillaRestConnectorTest.java b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/tests/BugzillaRestConnectorTest.java
new file mode 100644
index 000000000..083c879c5
--- /dev/null
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/core/tests/BugzillaRestConnectorTest.java
@@ -0,0 +1,46 @@
+package org.eclipse.mylyn.internal.bugzilla.rest.core.tests;
+
+import static org.junit.Assert.assertNull;
+
+import org.eclipse.mylyn.commons.net.AuthenticationCredentials;
+import org.eclipse.mylyn.commons.net.AuthenticationType;
+import org.eclipse.mylyn.commons.sdk.util.Junit4TestFixtureRunner;
+import org.eclipse.mylyn.commons.sdk.util.Junit4TestFixtureRunner.FixtureDefinition;
+import org.eclipse.mylyn.internal.bugzilla.rest.core.BugzillaRestConfiguration;
+import org.eclipse.mylyn.internal.bugzilla.rest.core.BugzillaRestConnector;
+import org.eclipse.mylyn.internal.bugzilla.rest.test.support.BugzillaRestTestFixture;
+import org.eclipse.mylyn.internal.tasks.core.TaskRepositoryManager;
+import org.eclipse.mylyn.tasks.core.TaskRepository;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+@RunWith(Junit4TestFixtureRunner.class)
+@FixtureDefinition(fixtureClass = BugzillaRestTestFixture.class, fixtureType = "bugzillaREST")
+public class BugzillaRestConnectorTest {
+ private final BugzillaRestTestFixture actualFixture;
+
+ private static TaskRepositoryManager manager;
+
+ private BugzillaRestConnector connector;
+
+ public BugzillaRestConnectorTest(BugzillaRestTestFixture fixture) {
+ this.actualFixture = fixture;
+ }
+
+ @Before
+ public void setUp() {
+ connector = new BugzillaRestConnector();
+ }
+
+ @Test
+ public void testLoadCacheWrongRepository() throws Exception {
+ TaskRepository taskRepository = new TaskRepository(connector.getConnectorKind(),
+ "http://mylyn.org/bugzilla-rest-trunk-wrong/");
+ AuthenticationCredentials credentials = new AuthenticationCredentials("username", "password");
+ taskRepository.setCredentials(AuthenticationType.REPOSITORY, credentials, false);
+ BugzillaRestConfiguration configuration = connector.getRepositoryConfiguration(taskRepository);
+ assertNull(configuration);
+ }
+
+}
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/test/support/BugzillaRestTestFixture.java b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/test/support/BugzillaRestTestFixture.java
new file mode 100644
index 000000000..defde2aa1
--- /dev/null
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core.tests/src/org/eclipse/mylyn/internal/bugzilla/rest/test/support/BugzillaRestTestFixture.java
@@ -0,0 +1,56 @@
+/*******************************************************************************
+ * Copyright (c) 2014 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.internal.bugzilla.rest.test.support;
+
+import org.eclipse.mylyn.commons.net.AuthenticationCredentials;
+import org.eclipse.mylyn.commons.repositories.core.auth.UserCredentials;
+import org.eclipse.mylyn.commons.sdk.util.AbstractTestFixture;
+import org.eclipse.mylyn.commons.sdk.util.CommonTestUtil;
+import org.eclipse.mylyn.commons.sdk.util.CommonTestUtil.PrivilegeLevel;
+import org.eclipse.mylyn.commons.sdk.util.FixtureConfiguration;
+import org.eclipse.mylyn.commons.sdk.util.TestConfiguration;
+import org.eclipse.mylyn.internal.bugzilla.rest.core.BugzillaRestCore;
+import org.eclipse.mylyn.tasks.core.TaskRepository;
+
+public class BugzillaRestTestFixture extends AbstractTestFixture {
+
+ public final String version;
+
+ protected TaskRepository repository;
+
+ @Override
+ protected AbstractTestFixture getDefault() {
+ return TestConfiguration.getDefault().discoverDefault(BugzillaRestTestFixture.class, "bugzillaREST");
+ }
+
+ public BugzillaRestTestFixture(FixtureConfiguration config) {
+ super(BugzillaRestCore.CONNECTOR_KIND, config);
+ version = config.getVersion();
+ setInfo("Bugzilla", config.getVersion(), config.getInfo());
+ }
+
+ public String getVersion() {
+ return version;
+ }
+
+ public TaskRepository repository() {
+ if (repository != null) {
+ return repository;
+ }
+ repository = new TaskRepository(getConnectorKind(), getRepositoryUrl());
+ UserCredentials credentials = CommonTestUtil.getCredentials(PrivilegeLevel.USER);
+ repository.setCredentials(org.eclipse.mylyn.commons.net.AuthenticationType.REPOSITORY,
+ new AuthenticationCredentials(credentials.getUserName(), credentials.getPassword()), true);
+ return repository;
+ }
+
+}

Back to the top