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

Side by Side Diff: test/subscriptionClasses.js

Issue 29375915: Issue 4878 - Start using ESLint for adblockpluscore (Closed)
Patch Set: Removed unused imports Created March 15, 2017, 3:11 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/stub-modules/utils.js ('k') | test/synchronizer.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "use strict"; 18 "use strict";
19 19
20 let {createSandbox} = require("./_common"); 20 const {createSandbox} = require("./_common");
21 21
22 let Subscription = null; 22 let Subscription = null;
23 let SpecialSubscription = null; 23 let SpecialSubscription = null;
24 let DownloadableSubscription = null; 24 let DownloadableSubscription = null;
25 let RegularSubscription = null; 25 let RegularSubscription = null;
26 let ExternalSubscription = null; 26 let ExternalSubscription = null;
27 27
28 exports.setUp = function(callback) 28 exports.setUp = function(callback)
29 { 29 {
30 let sandboxedRequire = createSandbox(); 30 let sandboxedRequire = createSandbox();
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 test.equal(typeof ExternalSubscription, "function", "typeof ExternalSubscripti on"); 65 test.equal(typeof ExternalSubscription, "function", "typeof ExternalSubscripti on");
66 test.equal(typeof DownloadableSubscription, "function", "typeof DownloadableSu bscription"); 66 test.equal(typeof DownloadableSubscription, "function", "typeof DownloadableSu bscription");
67 67
68 test.done(); 68 test.done();
69 }; 69 };
70 70
71 exports.testSubscriptionsWithState = function(test) 71 exports.testSubscriptionsWithState = function(test)
72 { 72 {
73 compareSubscription(test, "~fl~", ["url=~fl~"]); 73 compareSubscription(test, "~fl~", ["url=~fl~"]);
74 compareSubscription(test, "http://test/default", ["url=http://test/default", " title=http://test/default"]); 74 compareSubscription(test, "http://test/default", ["url=http://test/default", " title=http://test/default"]);
75 compareSubscription(test, "http://test/default_titled", ["url=http://test/defa ult_titled", "title=test"], function(subscription) 75 compareSubscription(
76 { 76 test, "http://test/default_titled", ["url=http://test/default_titled", "titl e=test"],
77 subscription.title = "test"; 77 subscription =>
78 }); 78 {
79 compareSubscription(test, "http://test/non_default", ["url=http://test/non_def ault", "title=test", 79 subscription.title = "test";
80 "disabled=true", "lastSuccess= 8", "lastDownload=12", "lastCheck=16", "softExpiration=18", "expires=20", "downl oadStatus=foo", 80 }
81 "errors=3", "version=24", "req uiredVersion=0.6"], function(subscription) 81 );
82 { 82 compareSubscription(
83 subscription.title = "test"; 83 test, "http://test/non_default",
84 subscription.disabled = true; 84 [
85 subscription.lastSuccess = 8; 85 "url=http://test/non_default", "title=test", "disabled=true",
86 subscription.lastDownload = 12; 86 "lastSuccess=8", "lastDownload=12", "lastCheck=16", "softExpiration=18",
87 subscription.lastCheck = 16; 87 "expires=20", "downloadStatus=foo", "errors=3", "version=24",
88 subscription.softExpiration = 18; 88 "requiredVersion=0.6"
89 subscription.expires = 20; 89 ],
90 subscription.downloadStatus = "foo"; 90 subscription =>
91 subscription.errors = 3; 91 {
92 subscription.version = 24; 92 subscription.title = "test";
93 subscription.requiredVersion = "0.6"; 93 subscription.disabled = true;
94 }); 94 subscription.lastSuccess = 8;
95 compareSubscription(test, "~wl~", ["url=~wl~", "disabled=true", "title=Test gr oup"], function(subscription) 95 subscription.lastDownload = 12;
96 { 96 subscription.lastCheck = 16;
97 subscription.title = "Test group"; 97 subscription.softExpiration = 18;
98 subscription.disabled = true; 98 subscription.expires = 20;
99 }); 99 subscription.downloadStatus = "foo";
100 subscription.errors = 3;
101 subscription.version = 24;
102 subscription.requiredVersion = "0.6";
103 }
104 );
105 compareSubscription(
106 test, "~wl~", ["url=~wl~", "disabled=true", "title=Test group"],
107 subscription =>
108 {
109 subscription.title = "Test group";
110 subscription.disabled = true;
111 }
112 );
100 113
101 test.done(); 114 test.done();
102 }; 115 };
OLDNEW
« no previous file with comments | « test/stub-modules/utils.js ('k') | test/synchronizer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld