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

Delta Between Two Patch Sets: libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/UpdaterTest.java

Issue 29344967: Issue 4031 - Implement tests for libadblockplus-android (Closed)
Left Patch Set: Updated tests, also moved to libadblockplus-android repo Created June 21, 2016, 10:51 a.m.
Right Patch Set: fix typo ".. file[s]" Created Sept. 15, 2016, 10:44 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/UpdateCheckTest.java ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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.AppInfo; 20 import org.adblockplus.libadblockplus.AppInfo;
21 import org.adblockplus.libadblockplus.FilterEngine; 21 import org.adblockplus.libadblockplus.FilterEngine;
22 import org.adblockplus.libadblockplus.JsEngine; 22 import org.adblockplus.libadblockplus.JsEngine;
23 import org.adblockplus.libadblockplus.MockWebRequest; 23 import org.adblockplus.libadblockplus.MockWebRequest;
24 24
25 import android.test.AndroidTestCase; 25 import android.test.AndroidTestCase;
26 26
27 public class UpdaterTest extends AndroidTestCase { 27 public class UpdaterTest extends AndroidTestCase
28 {
29 protected MockWebRequest mockWebRequest;
30 protected FilterEngine filterEngine;
28 31
29 protected MockWebRequest mockWebRequest; 32 @Override
30 protected FilterEngine filterEngine; 33 protected void setUp() throws Exception
34 {
35 super.setUp();
31 36
32 @Override 37 AppInfo appInfo = AppInfo
33 protected void setUp() throws Exception { 38 .builder()
34 super.setUp(); 39 .setName("test")
40 .setVersion("1.0.1")
41 .build();
35 42
36 AppInfo appInfo = AppInfo 43 JsEngine jsEngine = new JsEngine(appInfo);
37 .builder() 44 mockWebRequest = new MockWebRequest();
38 .setName("test") 45 jsEngine.setWebRequest(mockWebRequest);
39 .setVersion("1.0.1") 46 jsEngine.setDefaultFileSystem(getContext().getFilesDir().getAbsolutePath());
40 .build();
41 47
42 JsEngine jsEngine = new JsEngine(appInfo); 48 filterEngine = new FilterEngine(jsEngine);
43 mockWebRequest = new MockWebRequest(); 49 }
44 jsEngine.setWebRequest(mockWebRequest);
45
46 // TODO : use LazyFileSystem for file system
47 jsEngine.setDefaultFileSystem(getContext().getFilesDir().getAbsolutePath ());
48
49 filterEngine = new FilterEngine(jsEngine);
50 }
51 } 50 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld