-
-
Notifications
You must be signed in to change notification settings - Fork 681
/
Copy pathvalid-v-model.js
171 lines (166 loc) · 5.55 KB
/
valid-v-model.js
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/**
* @author Toru Nagashima
* @copyright 2017 Toru Nagashima. All rights reserved.
* See LICENSE file in root directory for full license.
*/
'use strict'
// ------------------------------------------------------------------------------
// Requirements
// ------------------------------------------------------------------------------
const RuleTester = require('eslint').RuleTester
const rule = require('../../../lib/rules/valid-v-model')
// ------------------------------------------------------------------------------
// Tests
// ------------------------------------------------------------------------------
const tester = new RuleTester({
parser: 'vue-eslint-parser',
parserOptions: { ecmaVersion: 2015 }
})
tester.run('valid-v-model', rule, {
valid: [
{
filename: 'test.vue',
code: ''
},
{
filename: 'test.vue',
code: '<template><input v-model="foo"></template>'
},
{
filename: 'test.vue',
code: '<template><input type="text" v-model.lazy="foo"></template>'
},
{
filename: 'test.vue',
code: '<template><input type="number" v-model.number="foo"></template>'
},
{
filename: 'test.vue',
code: '<template><input type="password" v-model.trim="foo"></template>'
},
{
filename: 'test.vue',
code: '<template><input type="checkbox" v-model="foo.bar"></template>'
},
{
filename: 'test.vue',
code: '<template><input type="radio" v-model="foo"></template>'
},
{
filename: 'test.vue',
code: '<template><textarea v-model="foo"></textarea></template>'
},
{
filename: 'test.vue',
code: '<template><select v-model="foo"></select></template>'
},
{
filename: 'test.vue',
code: '<template><your-component v-model="foo"></your-component></template>'
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="x.foo"></div></div></template>'
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="foo[x]"></div></div></template>'
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="foo[x - 1]"></div></div></template>'
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="foo[`${x}`]"></div></div></template>'
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="foo[`prefix_${x}`]"></div></div></template>'
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="foo[x ? x : \'_\']"></div></div></template>'
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="foo[x || \'_\']"></div></div></template>'
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="foo[x()]"></div></div></template>'
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="foo[/r/.match(x) ? 0 : 1]"></div></div></template>'
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="foo[typeof x]"></div></div></template>'
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="foo[tag`${x}`]"></div></div></template>'
},
{
filename: 'test.vue',
code: '<template><input :type="a" v-model="b"></template>'
},
{
filename: 'test.vue',
code: '<template><input v-bind:type="a" v-model="b"></template>'
}
],
invalid: [
{
filename: 'test.vue',
code: '<template><div v-model="foo"></div></template>',
errors: ["'v-model' directives aren't supported on <div> elements."]
},
{
filename: 'test.vue',
code: '<template><input v-model:aaa="foo"></template>',
errors: ["'v-model' directives require no argument."]
},
{
filename: 'test.vue',
code: '<template><input v-model.aaa="foo"></template>',
errors: ["'v-model' directives don't support the modifier 'aaa'."]
},
{
filename: 'test.vue',
code: '<template><input v-model></template>',
errors: ["'v-model' directives require that attribute value."]
},
{
filename: 'test.vue',
code: '<template><input v-model="a + b"></template>',
errors: ["'v-model' directives require the attribute value which is valid as LHS."]
},
{
filename: 'test.vue',
code: '<template><input type="file" v-model="b"></template>',
errors: ["'v-model' directives don't support 'file' input type."]
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="x"></div></div></template>',
errors: ["'v-model' directives cannot update the iteration variable 'x' itself."]
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="(x)"></div></div></template>',
errors: ["'v-model' directives cannot update the iteration variable 'x' itself."]
},
{
filename: 'test.vue',
code: '<template><div><div v-for="x in list"><input v-model="(((x)))"></div></div></template>',
errors: ["'v-model' directives cannot update the iteration variable 'x' itself."]
},
{
filename: 'test.vue',
code: '<template><div><div v-for="e in list"><input v-model="e"></div></div></template>',
errors: ["'v-model' directives cannot update the iteration variable 'e' itself."]
}
]
})