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

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

Issue 29344967: Issue 4031 - Implement tests for libadblockplus-android (Closed)
Patch Set: fix typo ".. file[s]" Created Sept. 15, 2016, 10:44 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/GlobalJsObjectTest.java
diff --git a/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/GlobalJsObjectTest.java b/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/GlobalJsObjectTest.java
new file mode 100644
index 0000000000000000000000000000000000000000..e42925a5778e2081b03e39fdad0ec0d94afe5918
--- /dev/null
+++ b/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/GlobalJsObjectTest.java
@@ -0,0 +1,77 @@
+/*
+ * This file is part of Adblock Plus <https://adblockplus.org/>,
+ * Copyright (C) 2006-2016 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.AdblockPlusException;
+
+import org.junit.Test;
+
+public class GlobalJsObjectTest extends BaseJsTest
+{
+ @Test
+ public void testSetTimeout() throws InterruptedException
+ {
+ jsEngine.evaluate("setTimeout(function() {foo = 'bar';}, 100)");
+ assertTrue(jsEngine.evaluate("this.foo").isUndefined());
+ Thread.sleep(200);
+ assertEquals("bar", jsEngine.evaluate("this.foo").asString());
+ }
+
+ @Test
+ public void testSetTimeoutWithArgs() throws InterruptedException
+ {
+ jsEngine.evaluate("setTimeout(function(s) {foo = s;}, 100, 'foobar')");
+ assertTrue(jsEngine.evaluate("this.foo").isUndefined());
+ Thread.sleep(200);
+ assertEquals("foobar", jsEngine.evaluate("this.foo").asString());
+ }
+
+ @Test
+ public void testSetTimeoutWithInvalidArgs()
+ {
+ try
+ {
+ jsEngine.evaluate("setTimeout()");
+ fail();
+ }
+ catch (AdblockPlusException e)
+ {
+ // ignored
+ }
+
+ try
+ {
+ jsEngine.evaluate("setTimeout('', 1)");
+ fail();
+ }
+ catch (AdblockPlusException e)
+ {
+ // ignored
+ }
+ }
+
+ @Test
+ public void testSetMultipleTimeouts() throws InterruptedException
+ {
+ jsEngine.evaluate("foo = []");
+ jsEngine.evaluate("setTimeout(function(s) {foo.push('1');}, 100)");
+ jsEngine.evaluate("setTimeout(function(s) {foo.push('2');}, 150)");
+ Thread.sleep(200);
+ assertEquals("1,2", jsEngine.evaluate("this.foo").asString());
+ }
+}

Powered by Google App Engine
This is Rietveld