-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathno-data.js
More file actions
48 lines (43 loc) · 1.26 KB
/
no-data.js
File metadata and controls
48 lines (43 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
'use strict';
const rule = require( '../../src/rules/no-data' );
const RuleTester = require( '../../tools/rule-tester' );
const error = 'Prefer WeakMap to .data/$.data';
const removeError = 'Prefer WeakMap to .removeData/$.removeData';
const hasError = 'Prefer WeakMap to .hasData/$.hasData';
const ruleTester = new RuleTester();
ruleTester.run( 'no-data', rule, {
valid: [
'data()',
'[].data()',
'div.data()',
'div.data',
'removeData()',
'[].removeData()',
'div.removeData()',
'div.removeData',
'hasData()',
'[].hasData()',
'div.hasData()',
'div.hasData'
// TODO: Technically $div.hasData should be allowed as $.hasData
// only exists as a utility, but as we are using createCollectionOrUtilMethodRule
// the non-existant method is disallowed as well.
],
invalid: [
...[
'$.data(elem, "foo")',
'$("div").data("foo", "bar")',
'$div.data("foo")',
'$("div").first().data("foo", "bar")',
'$("div").append($("input").data("foo"))'
].map( ( code ) => ( { code, errors: [ error ] } ) ),
...[
'$.removeData(elem, "foo")',
'$("div").removeData("foo")',
'$div.removeData("foo")'
].map( ( code ) => ( { code, errors: [ removeError ] } ) ),
...[
'$.hasData(elem)'
].map( ( code ) => ( { code, errors: [ hasError ] } ) )
]
} );