Browse Source

Pull the intelligent linking tests into their own parameterised test

git-svn-id: http://svn.dmdirc.com/trunk@3496 00569f92-eb28-0410-84fd-f71c24880f
tags/0.6
Chris Smith 16 years ago
parent
commit
f946f7dd89

+ 76
- 0
test/com/dmdirc/ui/messages/IntelligentLinkingTest.java View File

@@ -0,0 +1,76 @@
1
+/*
2
+ * Copyright (c) 2006-2008 Chris Smith, Shane Mc Cormack, Gregory Holmes
3
+ *
4
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ * of this software and associated documentation files (the "Software"), to deal
6
+ * in the Software without restriction, including without limitation the rights
7
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ * copies of the Software, and to permit persons to whom the Software is
9
+ * furnished to do so, subject to the following conditions:
10
+ *
11
+ * The above copyright notice and this permission notice shall be included in
12
+ * all copies or substantial portions of the Software.
13
+ *
14
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ * SOFTWARE.
21
+ */
22
+package com.dmdirc.ui.messages;
23
+
24
+import com.dmdirc.config.IdentityManager;
25
+import java.util.Arrays;
26
+import java.util.List;
27
+import org.junit.Before;
28
+import org.junit.Test;
29
+import org.junit.runner.RunWith;
30
+import org.junit.runners.Parameterized;
31
+import static org.junit.Assert.*;
32
+
33
+@RunWith(Parameterized.class)
34
+public class IntelligentLinkingTest {
35
+    
36
+    private String input, expected;
37
+    
38
+    public IntelligentLinkingTest(String input, String expected) {
39
+        this.input = input;
40
+        this.expected = expected;
41
+    }
42
+    
43
+    @Before
44
+    public void setUp() {
45
+        IdentityManager.load();
46
+    }    
47
+    
48
+    @Test
49
+    public void testLink() {
50
+        assertEquals(expected, Styliser.doLinks(input).replace(Styliser.CODE_HYPERLINK, '~'));
51
+    }
52
+
53
+    @Parameterized.Parameters
54
+    public static List<String[]> data() {
55
+        final String[][] tests = {
56
+            {"no links here!", "no links here!"},
57
+            {"www.google.com", "~www.google.com~"},
58
+            {"http://www.google.com", "~http://www.google.com~"},
59
+            {"www.google.com www.google.com", "~www.google.com~ ~www.google.com~"},
60
+            {"http://www.google.com:80/test#flub", "~http://www.google.com:80/test#flub~"},
61
+            {"(www.google.com)", "(~www.google.com~)"},
62
+            {"(foo: www.google.com)", "(foo: ~www.google.com~)"},
63
+            {"(foo: 'www.google.com')", "(foo: '~www.google.com~')"},
64
+            {"foo: www.google.com, bar", "foo: ~www.google.com~, bar"},
65
+            {"\"foo\" www.google.com \"www.google.com\"",
66
+                     "\"foo\" ~www.google.com~ \"~www.google.com~\"",
67
+            },
68
+        };
69
+
70
+        return Arrays.asList(tests);
71
+    }    
72
+    
73
+    public static junit.framework.Test suite() {
74
+        return new junit.framework.JUnit4TestAdapter(IntelligentLinkingTest.class);
75
+    }    
76
+}

+ 0
- 24
test/com/dmdirc/ui/messages/StyliserTest.java View File

@@ -77,30 +77,6 @@ public class StyliserTest extends junit.framework.TestCase {
77 77
         assertEquals(expResult, result);
78 78
     }
79 79
     
80
-    @Test
81
-    public void testLinking() {
82
-        final char h = Styliser.CODE_HYPERLINK;
83
-        
84
-        final String[][] tests = {
85
-            {"no links here!", "no links here!"},
86
-            {"www.google.com", "~www.google.com~"},
87
-            {"http://www.google.com", "~http://www.google.com~"},
88
-            {"www.google.com www.google.com", "~www.google.com~ ~www.google.com~"},
89
-            {"http://www.google.com:80/test#flub", "~http://www.google.com:80/test#flub~"},
90
-            {"(www.google.com)", "(~www.google.com~)"},
91
-            {"(foo: www.google.com)", "(foo: ~www.google.com~)"},
92
-            {"(foo: 'www.google.com')", "(foo: '~www.google.com~')"},
93
-            {"foo: www.google.com, bar", "foo: ~www.google.com~, bar"},
94
-            {"\"foo\" www.google.com \"www.google.com\"",
95
-                     "\"foo\" ~www.google.com~ \"~www.google.com~\"",
96
-            },
97
-        };
98
-        
99
-        for (String[] testcase : tests) {
100
-            assertEquals(testcase[1], Styliser.doLinks(testcase[0]).replace(h, '~'));
101
-        }
102
-    }
103
-    
104 80
     @Test
105 81
     public void testNegation() {
106 82
         final String input1 = ((char) 18) + "abc" + ((char) 2) + "def" + ((char) 31) + "ghi";

Loading…
Cancel
Save