forked from ember-cli/eslint-plugin-ember
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-no-potential-path-strings.js
More file actions
154 lines (149 loc) · 3.98 KB
/
template-no-potential-path-strings.js
File metadata and controls
154 lines (149 loc) · 3.98 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
const { RuleTester } = require('eslint');
const rule = require('../../../lib/rules/template-no-potential-path-strings');
const ruleTester = new RuleTester({
parser: require.resolve('ember-eslint-parser'),
parserOptions: { ecmaVersion: 2022, sourceType: 'module' },
});
ruleTester.run('template-no-potential-path-strings', rule, {
valid: [
'<template><img src="foo.png"></template>',
'<template><img src={{picture}}></template>',
'<template><img src={{this.picture}}></template>',
'<template><img src={{@img}}></template>',
'<template><SomeComponent @foo={{@bar}} /></template>',
'<template><Ui::Demo @title="@my-org/my-package" /></template>',
'<template><Ui::Demo @title="@my-org\\my-package" /></template>',
'<template><Ui::Demo @title="@my-org|my-package" /></template>',
],
invalid: [
{
code: '<template><img src="this.picture"></template>',
output: null,
errors: [
{
message: 'Potential path in attribute string detected. Did you mean {{this.picture}}?',
},
],
},
{
code: '<template><img src=this.picture></template>',
output: null,
errors: [
{
message: 'Potential path in attribute string detected. Did you mean {{this.picture}}?',
},
],
},
{
code: '<template><img src="@img"></template>',
output: null,
errors: [
{
message: 'Potential path in attribute string detected. Did you mean {{@img}}?',
},
],
},
{
code: '<template><img src=@img></template>',
output: null,
errors: [
{
message: 'Potential path in attribute string detected. Did you mean {{@img}}?',
},
],
},
{
code: '<template><SomeComponent @foo=@bar /></template>',
output: null,
errors: [
{
message: 'Potential path in attribute string detected. Did you mean {{@bar}}?',
},
],
},
{
code: '<template><SomeComponent @foo=this.bar /></template>',
output: null,
errors: [
{
message: 'Potential path in attribute string detected. Did you mean {{this.bar}}?',
},
],
},
],
});
const hbsRuleTester = new RuleTester({
parser: require.resolve('ember-eslint-parser/hbs'),
parserOptions: {
ecmaVersion: 2022,
sourceType: 'module',
},
});
hbsRuleTester.run('template-no-potential-path-strings', rule, {
valid: [
'<img src="foo.png">',
'<img src={{picture}}>',
'<img src={{this.picture}}>',
'<img src={{@img}}>',
'<SomeComponent @foo={{@bar}} />',
'<Ui::Demo @title="@my-org/my-package" />',
'<Ui::Demo @title="@my-org\\my-package" />',
'<Ui::Demo @title="@my-org|my-package" />',
],
invalid: [
{
code: '<img src="this.picture">',
output: null,
errors: [
{
message: 'Potential path in attribute string detected. Did you mean {{this.picture}}?',
},
],
},
{
code: '<img src=this.picture>',
output: null,
errors: [
{
message: 'Potential path in attribute string detected. Did you mean {{this.picture}}?',
},
],
},
{
code: '<img src="@img">',
output: null,
errors: [
{
message: 'Potential path in attribute string detected. Did you mean {{@img}}?',
},
],
},
{
code: '<img src=@img>',
output: null,
errors: [
{
message: 'Potential path in attribute string detected. Did you mean {{@img}}?',
},
],
},
{
code: '<SomeComponent @foo=@bar />',
output: null,
errors: [
{
message: 'Potential path in attribute string detected. Did you mean {{@bar}}?',
},
],
},
{
code: '<SomeComponent @foo=this.bar />',
output: null,
errors: [
{
message: 'Potential path in attribute string detected. Did you mean {{this.bar}}?',
},
],
},
],
});