Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/ConsoleJsObjectTest.java

Issue 29678581: Issue 6000 - Rename "libadblockplus-android" (Closed)
Patch Set: addressed comments Created Jan. 29, 2018, 11:04 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/ConsoleJsObjectTest.java
diff --git a/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/ConsoleJsObjectTest.java b/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/ConsoleJsObjectTest.java
deleted file mode 100644
index 1c3ed8ed25b71611065979dc8feceda37510a797..0000000000000000000000000000000000000000
--- a/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/ConsoleJsObjectTest.java
+++ /dev/null
@@ -1,99 +0,0 @@
-/*
- * This file is part of Adblock Plus <https://adblockplus.org/>,
- * Copyright (C) 2006-present eyeo GmbH
- *
- * Adblock Plus is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
- *
- * Adblock Plus is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
- */
-
-package org.adblockplus.libadblockplus.tests;
-
-import org.adblockplus.libadblockplus.LogSystem;
-import org.adblockplus.libadblockplus.MockLogSystem;
-
-import org.junit.Test;
-
-public class ConsoleJsObjectTest extends BaseJsEngineTest
-{
- protected MockLogSystem mockLogSystem;
-
- @Override
- protected LogSystem createLogSystem()
- {
- return mockLogSystem = new MockLogSystem();
- }
-
- @Test
- public void testConsoleLogCall()
- {
- jsEngine.evaluate("\n\nconsole.log('foo', 'bar');\n\n", "eval");
- assertEquals(LogSystem.LogLevel.LOG, mockLogSystem.getLastLogLevel());
- assertEquals("foo bar", mockLogSystem.getLastMessage());
- assertEquals("eval:3", mockLogSystem.getLastSource());
- }
-
- @Test
- public void testConsoleDebugCall()
- {
- jsEngine.evaluate("console.debug('foo', 'bar')");
- assertEquals(LogSystem.LogLevel.LOG, mockLogSystem.getLastLogLevel());
- assertEquals("foo bar", mockLogSystem.getLastMessage());
- assertEquals(":1", mockLogSystem.getLastSource());
- }
-
- @Test
- public void testConsoleInfoCall()
- {
- jsEngine.evaluate("console.info('foo', 'bar')");
- assertEquals(LogSystem.LogLevel.INFO, mockLogSystem.getLastLogLevel());
- assertEquals("foo bar", mockLogSystem.getLastMessage());
- assertEquals(":1", mockLogSystem.getLastSource());
- }
-
- @Test
- public void testConsoleWarnCall()
- {
- jsEngine.evaluate("console.warn('foo', 'bar')");
- assertEquals(LogSystem.LogLevel.WARN, mockLogSystem.getLastLogLevel());
- assertEquals("foo bar", mockLogSystem.getLastMessage());
- assertEquals(":1", mockLogSystem.getLastSource());
- }
-
- @Test
- public void testConsoleErrorCall()
- {
- jsEngine.evaluate("console.error('foo', 'bar')");
- assertEquals(LogSystem.LogLevel.ERROR, mockLogSystem.getLastLogLevel());
- assertEquals("foo bar", mockLogSystem.getLastMessage());
- assertEquals(":1", mockLogSystem.getLastSource());
- }
-
- @Test
- public void testConsoleTraceCall()
- {
- jsEngine.evaluate(
- "\n" +
- "function foo()\n" +
- "{\n" +
- " (function() {\n" +
- " console.trace();\n" +
- " })();\n" +
- "}\n" +
- "foo();", "eval");
- assertEquals(LogSystem.LogLevel.TRACE, mockLogSystem.getLastLogLevel());
- assertEquals(
- "1: /* anonymous */() at eval:5\n" +
- "2: foo() at eval:6\n" +
- "3: /* anonymous */() at eval:8\n", mockLogSystem.getLastMessage());
- assertEquals("", mockLogSystem.getLastSource());
- }
-}

Powered by Google App Engine
This is Rietveld