OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 package org.adblockplus.libadblockplus.tests; | 18 package org.adblockplus.libadblockplus.tests; |
19 | 19 |
20 import org.adblockplus.libadblockplus.LogSystem; | 20 import org.adblockplus.libadblockplus.LogSystem; |
21 import org.adblockplus.libadblockplus.MockLogSystem; | 21 import org.adblockplus.libadblockplus.MockLogSystem; |
22 | 22 |
23 import org.junit.Test; | 23 import org.junit.Test; |
24 | 24 |
25 public class ConsoleJsObjectTest extends BaseJsTest | 25 public class ConsoleJsObjectTest extends BaseJsTest |
26 { | 26 { |
27 protected MockLogSystem mockLogSystem; | 27 protected MockLogSystem mockLogSystem; |
28 | 28 |
29 @Override | 29 @Override |
30 protected void setUp() throws Exception | 30 protected void setUp() throws Exception |
31 { | 31 { |
32 super.setUp(); | 32 super.setUp(); |
33 | 33 |
34 mockLogSystem = new MockLogSystem(); | 34 mockLogSystem = new MockLogSystem(); |
35 jsEngine.setLogSystem(mockLogSystem); | 35 jsEngine.setLogSystem(mockLogSystem); |
36 } | 36 } |
37 | 37 |
38 @Test | 38 @Test |
39 public void testConsoleLogCall() | 39 public void testConsoleLogCall() |
40 { | 40 { |
41 jsEngine.evaluate("\n\nconsole.log('foo', 'bar');\n\n", "eval"); | 41 jsEngine.evaluate("\n\nconsole.log('foo', 'bar');\n\n", "eval"); |
42 assertEquals(LogSystem.LogLevel.LOG, mockLogSystem.getLastLogLevel()); | 42 assertEquals(LogSystem.LogLevel.LOG, mockLogSystem.getLastLogLevel()); |
43 assertEquals("foo bar", mockLogSystem.getLastMessage()); | 43 assertEquals("foo bar", mockLogSystem.getLastMessage()); |
44 assertEquals("eval:3", mockLogSystem.getLastSource()); | 44 assertEquals("eval:3", mockLogSystem.getLastSource()); |
45 } | 45 } |
46 | 46 |
47 @Test | 47 @Test |
48 public void testConsoleDebugCall() | 48 public void testConsoleDebugCall() |
49 { | 49 { |
50 jsEngine.evaluate("console.debug('foo', 'bar')"); | 50 jsEngine.evaluate("console.debug('foo', 'bar')"); |
51 assertEquals(LogSystem.LogLevel.LOG, mockLogSystem.getLastLogLevel()); | 51 assertEquals(LogSystem.LogLevel.LOG, mockLogSystem.getLastLogLevel()); |
52 assertEquals("foo bar", mockLogSystem.getLastMessage()); | 52 assertEquals("foo bar", mockLogSystem.getLastMessage()); |
53 assertEquals(":1", mockLogSystem.getLastSource()); | 53 assertEquals(":1", mockLogSystem.getLastSource()); |
54 } | 54 } |
55 | 55 |
56 @Test | 56 @Test |
57 public void testConsoleInfoCall() | 57 public void testConsoleInfoCall() |
58 { | 58 { |
59 jsEngine.evaluate("console.info('foo', 'bar')"); | 59 jsEngine.evaluate("console.info('foo', 'bar')"); |
60 assertEquals(LogSystem.LogLevel.INFO, mockLogSystem.getLastLogLevel()); | 60 assertEquals(LogSystem.LogLevel.INFO, mockLogSystem.getLastLogLevel()); |
61 assertEquals("foo bar", mockLogSystem.getLastMessage()); | 61 assertEquals("foo bar", mockLogSystem.getLastMessage()); |
62 assertEquals(":1", mockLogSystem.getLastSource()); | 62 assertEquals(":1", mockLogSystem.getLastSource()); |
63 } | 63 } |
64 | 64 |
65 @Test | 65 @Test |
66 public void testConsoleWarnCall() | 66 public void testConsoleWarnCall() |
67 { | 67 { |
68 jsEngine.evaluate("console.warn('foo', 'bar')"); | 68 jsEngine.evaluate("console.warn('foo', 'bar')"); |
69 assertEquals(LogSystem.LogLevel.WARN, mockLogSystem.getLastLogLevel()); | 69 assertEquals(LogSystem.LogLevel.WARN, mockLogSystem.getLastLogLevel()); |
70 assertEquals("foo bar", mockLogSystem.getLastMessage()); | 70 assertEquals("foo bar", mockLogSystem.getLastMessage()); |
71 assertEquals(":1", mockLogSystem.getLastSource()); | 71 assertEquals(":1", mockLogSystem.getLastSource()); |
72 } | 72 } |
73 | 73 |
74 @Test | 74 @Test |
75 public void testConsoleErrorCall() | 75 public void testConsoleErrorCall() |
76 { | 76 { |
77 jsEngine.evaluate("console.error('foo', 'bar')"); | 77 jsEngine.evaluate("console.error('foo', 'bar')"); |
78 assertEquals(LogSystem.LogLevel.ERROR, mockLogSystem.getLastLogLevel()); | 78 assertEquals(LogSystem.LogLevel.ERROR, mockLogSystem.getLastLogLevel()); |
79 assertEquals("foo bar", mockLogSystem.getLastMessage()); | 79 assertEquals("foo bar", mockLogSystem.getLastMessage()); |
80 assertEquals(":1", mockLogSystem.getLastSource()); | 80 assertEquals(":1", mockLogSystem.getLastSource()); |
81 } | 81 } |
82 | 82 |
83 @Test | 83 @Test |
84 public void testConsoleTraceCall() | 84 public void testConsoleTraceCall() |
85 { | 85 { |
86 jsEngine.evaluate( | 86 jsEngine.evaluate( |
87 "\n" + | 87 "\n" + |
88 "function foo()\n" + | 88 "function foo()\n" + |
89 "{\n" + | 89 "{\n" + |
90 " (function() {\n" + | 90 " (function() {\n" + |
91 " console.trace();\n" + | 91 " console.trace();\n" + |
92 " })();\n" + | 92 " })();\n" + |
93 "}\n" + | 93 "}\n" + |
94 "foo();", "eval"); | 94 "foo();", "eval"); |
95 assertEquals(LogSystem.LogLevel.TRACE, mockLogSystem.getLastLogLevel()); | 95 assertEquals(LogSystem.LogLevel.TRACE, mockLogSystem.getLastLogLevel()); |
96 assertEquals( | 96 assertEquals( |
97 "1: /* anonymous */() at eval:5\n" + | 97 "1: /* anonymous */() at eval:5\n" + |
98 "2: foo() at eval:6\n" + | 98 "2: foo() at eval:6\n" + |
99 "3: /* anonymous */() at eval:8\n", mockLogSystem.getLastMessage()); | 99 "3: /* anonymous */() at eval:8\n", mockLogSystem.getLastMessage()); |
100 assertEquals("", mockLogSystem.getLastSource()); | 100 assertEquals("", mockLogSystem.getLastSource()); |
101 } | 101 } |
102 } | 102 } |
OLD | NEW |