Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Aniszczyk2011-04-14 15:23:55 +0000
committerChris Aniszczyk2011-04-14 15:51:38 +0000
commit1af5ee3d37d23942c6515efaa8de36267a3619d6 (patch)
tree1d4546f777e6368c28e0cc198a21f5f33325b5dc /org.eclipse.mylyn.github.tests
parentbccdc244f930a9fb6df14263a992540e8e33519c (diff)
downloadegit-github-1af5ee3d37d23942c6515efaa8de36267a3619d6.tar.gz
egit-github-1af5ee3d37d23942c6515efaa8de36267a3619d6.tar.xz
egit-github-1af5ee3d37d23942c6515efaa8de36267a3619d6.zip
Remove GitHubService
Clients should use GitHubClient from now on. Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
Diffstat (limited to 'org.eclipse.mylyn.github.tests')
-rw-r--r--org.eclipse.mylyn.github.tests/src/org/eclipse/mylyn/github/tests/AllHeadlessTests.java1
-rw-r--r--org.eclipse.mylyn.github.tests/src/org/eclipse/mylyn/github/tests/GitHubServiceTest.java123
2 files changed, 0 insertions, 124 deletions
diff --git a/org.eclipse.mylyn.github.tests/src/org/eclipse/mylyn/github/tests/AllHeadlessTests.java b/org.eclipse.mylyn.github.tests/src/org/eclipse/mylyn/github/tests/AllHeadlessTests.java
index 009f6db0..c5630ed5 100644
--- a/org.eclipse.mylyn.github.tests/src/org/eclipse/mylyn/github/tests/AllHeadlessTests.java
+++ b/org.eclipse.mylyn.github.tests/src/org/eclipse/mylyn/github/tests/AllHeadlessTests.java
@@ -18,7 +18,6 @@ import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses( { //
- GitHubServiceTest.class,
MarshalingTest.class
})
public class AllHeadlessTests {
diff --git a/org.eclipse.mylyn.github.tests/src/org/eclipse/mylyn/github/tests/GitHubServiceTest.java b/org.eclipse.mylyn.github.tests/src/org/eclipse/mylyn/github/tests/GitHubServiceTest.java
deleted file mode 100644
index 0997c3aa..00000000
--- a/org.eclipse.mylyn.github.tests/src/org/eclipse/mylyn/github/tests/GitHubServiceTest.java
+++ /dev/null
@@ -1,123 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011 Red Hat 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:
- * David Green <david.green@tasktop.com> - initial contribution
- * Christian Trutz <christian.trutz@gmail.com> - initial contribution
- * Chris Aniszczyk <caniszczyk@gmail.com> - initial contribution
- *******************************************************************************/
-package org.eclipse.mylyn.github.tests;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertTrue;
-
-import org.eclipse.mylyn.github.internal.GitHubCredentials;
-import org.eclipse.mylyn.github.internal.GitHubIssue;
-import org.eclipse.mylyn.github.internal.GitHubIssues;
-import org.eclipse.mylyn.github.internal.GitHubService;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.junit.runners.JUnit4;
-
-/**
- * Run All the JUnit Tests for the GitHub API implementation
- */
-@RunWith(JUnit4.class)
-public class GitHubServiceTest {
-
- // GitHub API key for user "eclipse-github-plugin"
- String API_KEY = "8b35af675fcdca9d254ae7a6ad4d0be8";
-
- String TEST_USER = "eclipse-github-plugin";
-
- String TEST_PASS = "plugin";
-
- String TEST_PROJECT = "org.eclipse.mylyn.github.issues";
-
- /**
- * Test the GitHubService issue searching implementation
- */
- @SuppressWarnings("restriction")
- @Test
- public void searchIssues() throws Exception {
- final GitHubService service = new GitHubService();
- final GitHubIssues issues = service.searchIssues(TEST_USER,
- TEST_PROJECT, "open", "test", new GitHubCredentials(TEST_USER,
- API_KEY));
- assertEquals(0, issues.getIssues().length);
- }
-
- /**
- * Test the GitHubService implementation for opening a new issue.
- */
- @Test
- public void openIssue() throws Exception {
- final GitHubService service = new GitHubService();
- final GitHubIssue issue = new GitHubIssue();
- issue.setUser(TEST_USER);
- issue.setBody("This is a test body");
- issue.setTitle("Issue Title");
- GitHubIssue newIssue = service.openIssue(TEST_USER, TEST_PROJECT, issue,
- new GitHubCredentials(TEST_USER,API_KEY));
- assertTrue(newIssue != null);
- assertEquals(issue.getUser(),newIssue.getUser());
- assertEquals(issue.getBody(),newIssue.getBody());
- assertEquals(issue.getTitle(),newIssue.getTitle());
- assertTrue(newIssue.getNumber() != null && newIssue.getNumber().length() > 0);
- }
- /**
- * Test the GitHubService implementation for opening a new issue.
- */
- @Test
- public void editIssue() throws Exception {
- final GitHubService service = new GitHubService();
- final GitHubIssue issue = new GitHubIssue();
- issue.setUser(TEST_USER);
- issue.setBody("This is a test body");
- issue.setTitle("Issue Title");
- GitHubIssue newIssue = service.openIssue(TEST_USER, TEST_PROJECT, issue,
- new GitHubCredentials(TEST_USER,API_KEY));
- assertTrue(newIssue != null);
-
- newIssue.setTitle(newIssue.getTitle()+" - modified");
- newIssue.setBody(newIssue.getBody()+" - modified");
-
- service.editIssue(TEST_USER, TEST_PROJECT, issue, new GitHubCredentials(TEST_USER,API_KEY));
-
- GitHubIssue showIssue = service.showIssue(TEST_USER, TEST_PROJECT,
- issue.getNumber(), new GitHubCredentials(TEST_USER, API_KEY));
-
- assertTrue(showIssue != null);
- assertEquals(newIssue.getTitle(),showIssue.getTitle());
- }
-
-
-
- /**
- * Test the GitHubService implementation for adding a label to an existing
- * issue.
- */
- @Test
- public void addLabel() throws Exception {
- final GitHubService service = new GitHubService();
- final boolean result = service.addLabel(TEST_USER, TEST_PROJECT,
- "lame", 1, new GitHubCredentials(TEST_USER,API_KEY));
- assertTrue(result);
- }
-
- /**
- * Test the GitHubService implementation for removing an existing label from
- * any GitHub issue.
- */
- @Test
- public void removeLable() throws Exception {
- final GitHubService service = new GitHubService();
- final boolean result = service.removeLabel(TEST_USER, TEST_PROJECT,
- "lame", 1, new GitHubCredentials(TEST_USER,API_KEY));
- assertTrue(result);
- }
-} \ No newline at end of file

Back to the top