Kaynağa Gözat

Add unit test.

pull/22/head
Greg Holmes 9 yıl önce
ebeveyn
işleme
856bdeaec8

+ 2
- 2
src/com/dmdirc/util/io/ListenerInputStream.java Dosyayı Görüntüle

@@ -53,8 +53,8 @@ public class ListenerInputStream extends FilterInputStream {
53 53
         this.length = length;
54 54
         count = 0;
55 55
         mark = count;
56
-        if (length == -1) {
57
-            listener.setIndeterminate(true);
56
+        if (listener != null) {
57
+            listener.setIndeterminate(length == -1);
58 58
         }
59 59
     }
60 60
 

+ 62
- 0
test/com/dmdirc/util/collections/URLEncodingMapFlattenerTest.java Dosyayı Görüntüle

@@ -0,0 +1,62 @@
1
+/*
2
+ * Copyright (c) 2006-2014 DMDirc Developers
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
+
23
+package com.dmdirc.util.collections;
24
+
25
+import com.google.common.collect.ImmutableMap;
26
+
27
+import java.util.List;
28
+import java.util.Map;
29
+import java.util.stream.Collectors;
30
+
31
+import org.junit.Before;
32
+import org.junit.Test;
33
+import org.junit.runner.RunWith;
34
+import org.mockito.runners.MockitoJUnitRunner;
35
+
36
+import static junit.framework.TestCase.assertEquals;
37
+
38
+@RunWith(MockitoJUnitRunner.class)
39
+public class URLEncodingMapFlattenerTest {
40
+
41
+    private URLEncodingMapFlattener instance;
42
+    private Map<String, String> map;
43
+
44
+    @Before
45
+    public void setUp() throws Exception {
46
+        instance = new URLEncodingMapFlattener();
47
+        map = ImmutableMap.<String, String>builder()
48
+                .put("key", "value")
49
+                .put("key&", "value&")
50
+                .build();
51
+    }
52
+
53
+    @Test
54
+    public void testApply() throws Exception {
55
+        final List<String> result = map.entrySet().stream()
56
+                .flatMap(instance)
57
+                .collect(Collectors.toList());
58
+        assertEquals(2, result.size());
59
+        assertEquals("key=value", result.get(0));
60
+        assertEquals("key%26=value%26", result.get(1));
61
+    }
62
+}

Loading…
İptal
Kaydet