Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Muskalla2011-08-17 12:18:57 +0000
committerMatthias Sohn2011-08-17 12:18:57 +0000
commit4620af17ae771f0fadb9c612466f90f94a520f4c (patch)
tree9892d3f43ea55c179168e2f529f1bd6a8cca489b /org.eclipse.egit.mylyn.ui.test/src/org/eclipse
parentf1ad64cb5fa45b4a9769464e165d7cbac9a111c4 (diff)
downloadegit-4620af17ae771f0fadb9c612466f90f94a520f4c.tar.gz
egit-4620af17ae771f0fadb9c612466f90f94a520f4c.tar.xz
egit-4620af17ae771f0fadb9c612466f90f94a520f4c.zip
Support hyperlink detector for Commit ids
In order to have better navigation between code and tasks, this hyperlink detector recognizes commit ids inside the task descriptions and lets the user open the corresponding commit in the Commit editor. Change-Id: Ic60d11a45b8cb8cc9383e4120a84eae2f1859e32 Signed-off-by: Benjamin Muskalla <benjamin.muskalla@tasktop.com> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.mylyn.ui.test/src/org/eclipse')
-rw-r--r--org.eclipse.egit.mylyn.ui.test/src/org/eclipse/egit/internal/mylyn/AllMylynTests.java21
-rw-r--r--org.eclipse.egit.mylyn.ui.test/src/org/eclipse/egit/internal/mylyn/CommitHyperlinkDetectorTest.java142
2 files changed, 163 insertions, 0 deletions
diff --git a/org.eclipse.egit.mylyn.ui.test/src/org/eclipse/egit/internal/mylyn/AllMylynTests.java b/org.eclipse.egit.mylyn.ui.test/src/org/eclipse/egit/internal/mylyn/AllMylynTests.java
new file mode 100644
index 0000000000..eac8bad76e
--- /dev/null
+++ b/org.eclipse.egit.mylyn.ui.test/src/org/eclipse/egit/internal/mylyn/AllMylynTests.java
@@ -0,0 +1,21 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Benjamin Muskalla 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:
+ * Benjamin Muskalla <benjamin.muskalla@tasktop.com> - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.egit.internal.mylyn;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+@RunWith(Suite.class)
+@SuiteClasses({ CommitHyperlinkDetectorTest.class })
+public class AllMylynTests {
+ // empty class, don't need anything here
+}
diff --git a/org.eclipse.egit.mylyn.ui.test/src/org/eclipse/egit/internal/mylyn/CommitHyperlinkDetectorTest.java b/org.eclipse.egit.mylyn.ui.test/src/org/eclipse/egit/internal/mylyn/CommitHyperlinkDetectorTest.java
new file mode 100644
index 0000000000..b8b97c155e
--- /dev/null
+++ b/org.eclipse.egit.mylyn.ui.test/src/org/eclipse/egit/internal/mylyn/CommitHyperlinkDetectorTest.java
@@ -0,0 +1,142 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Benjamin Muskalla 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:
+ * Benjamin Muskalla <benjamin.muskalla@tasktop.com> - initial implementation
+ *******************************************************************************/
+package org.eclipse.egit.internal.mylyn;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNull;
+
+import org.eclipse.egit.internal.mylyn.ui.CommitHyperlinkDetector;
+import org.eclipse.jface.text.Document;
+import org.eclipse.jface.text.Region;
+import org.eclipse.jface.text.TextViewer;
+import org.eclipse.jface.text.hyperlink.IHyperlink;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.widgets.Shell;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.BlockJUnit4ClassRunner;
+
+@RunWith(BlockJUnit4ClassRunner.class)
+public class CommitHyperlinkDetectorTest {
+
+ private static final String OTHER_EXAMPLE_ID = "3de38c8898c74b867cb6f06f7907e0719d9d4c0c";
+ private static final String EXAMPLE_ID = "2de0ab486c66566ae1ad36b73bfc9d99e14eb195";
+ private TextViewer textViewer;
+ private CommitHyperlinkDetector detector;
+
+ @Test
+ public void testNoDocument() {
+ textViewer.setDocument(null);
+ IHyperlink[] hyperlinks = detectHyperlinks(0,0);
+ assertNull(hyperlinks);
+ }
+
+ @Test
+ public void testBadLocation() {
+ textViewer.setDocument(null);
+ IHyperlink[] hyperlinks = detectHyperlinks(10,0);
+ assertNull(hyperlinks);
+ }
+
+ @Test
+ public void testEmpty() {
+ setText("");
+ IHyperlink[] hyperlinks = detectHyperlinks();
+ assertNull(hyperlinks);
+ }
+
+ @Test
+ public void testSimpleId() {
+ setText(EXAMPLE_ID);
+ IHyperlink[] hyperlinks = detectHyperlinks();
+ assertEquals(1, hyperlinks.length);
+ assertEquals(EXAMPLE_ID, hyperlinks[0].getHyperlinkText());
+ }
+
+ @Test
+ public void testMultiId() {
+ setText(EXAMPLE_ID + " and " + OTHER_EXAMPLE_ID);
+ IHyperlink[] hyperlinks = detectHyperlinks();
+ assertEquals(2, hyperlinks.length);
+ assertEquals(EXAMPLE_ID, hyperlinks[0].getHyperlinkText());
+ assertEquals(OTHER_EXAMPLE_ID, hyperlinks[1].getHyperlinkText());
+ }
+
+ @Test
+ public void testEndLine() {
+ setText("Merged as " + EXAMPLE_ID);
+ IHyperlink[] hyperlinks = detectHyperlinks();
+ assertEquals(1, hyperlinks.length);
+ assertEquals(EXAMPLE_ID, hyperlinks[0].getHyperlinkText());
+ }
+
+ @Test
+ public void testMiddleLine() {
+ setText("Merged as " + EXAMPLE_ID + " and something else");
+ IHyperlink[] hyperlinks = detectHyperlinks();
+ assertEquals(1, hyperlinks.length);
+ assertEquals(EXAMPLE_ID, hyperlinks[0].getHyperlinkText());
+ }
+
+ @Test
+ public void testBeginSentence() {
+ setText("end of sentence." + EXAMPLE_ID);
+ IHyperlink[] hyperlinks = detectHyperlinks();
+ assertEquals(1, hyperlinks.length);
+ assertEquals(EXAMPLE_ID, hyperlinks[0].getHyperlinkText());
+ }
+
+ @Test
+ public void testEndSentence() {
+ setText("Merged as " + EXAMPLE_ID + ".");
+ IHyperlink[] hyperlinks = detectHyperlinks();
+ assertEquals(1, hyperlinks.length);
+ assertEquals(EXAMPLE_ID, hyperlinks[0].getHyperlinkText());
+ }
+
+ @Test
+ public void testOffsetMiddle() {
+ setText(EXAMPLE_ID);
+ IHyperlink[] hyperlinks = detectHyperlinks(3,0);
+ assertEquals(1, hyperlinks.length);
+ assertEquals(EXAMPLE_ID, hyperlinks[0].getHyperlinkText());
+ }
+
+ @Test
+ public void testOffsetOff() {
+ setText("some bla " + EXAMPLE_ID);
+ IHyperlink[] hyperlinks = detectHyperlinks(3,0);
+ assertNull(hyperlinks);
+ }
+
+ private IHyperlink[] detectHyperlinks() {
+ return detectHyperlinks(0, textViewer.getDocument().getLength());
+ }
+
+ private IHyperlink[] detectHyperlinks(int offset, int length) {
+ return detector.detectHyperlinks(textViewer,
+ new Region(offset, length), false);
+ }
+
+ private void setText(String text) {
+ textViewer.getDocument().set(text);
+ }
+
+ @Before
+ public void setUp() throws Exception {
+ detector = new CommitHyperlinkDetector();
+ Shell shell = new Shell();
+ textViewer = new TextViewer(shell, SWT.NONE);
+ textViewer.setDocument(new Document());
+ }
+
+}

Back to the top