forked from ember-cli/eslint-plugin-ember
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatic-attr-value-test.js
More file actions
129 lines (118 loc) · 3.65 KB
/
static-attr-value-test.js
File metadata and controls
129 lines (118 loc) · 3.65 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
'use strict';
const { getStaticAttrValue } = require('../../../lib/utils/static-attr-value');
describe('getStaticAttrValue', () => {
it('returns empty string for null/undefined (valueless attribute)', () => {
expect(getStaticAttrValue(null)).toBe('');
expect(getStaticAttrValue(undefined)).toBe('');
});
it('returns chars for GlimmerTextNode', () => {
expect(getStaticAttrValue({ type: 'GlimmerTextNode', chars: 'hello' })).toBe('hello');
expect(getStaticAttrValue({ type: 'GlimmerTextNode', chars: '' })).toBe('');
});
it('unwraps GlimmerMustacheStatement with BooleanLiteral', () => {
expect(
getStaticAttrValue({
type: 'GlimmerMustacheStatement',
path: { type: 'GlimmerBooleanLiteral', value: true },
})
).toBe('true');
expect(
getStaticAttrValue({
type: 'GlimmerMustacheStatement',
path: { type: 'GlimmerBooleanLiteral', value: false },
})
).toBe('false');
});
it('unwraps GlimmerMustacheStatement with StringLiteral', () => {
expect(
getStaticAttrValue({
type: 'GlimmerMustacheStatement',
path: { type: 'GlimmerStringLiteral', value: 'foo' },
})
).toBe('foo');
expect(
getStaticAttrValue({
type: 'GlimmerMustacheStatement',
path: { type: 'GlimmerStringLiteral', value: '' },
})
).toBe('');
});
it('unwraps GlimmerMustacheStatement with NumberLiteral', () => {
expect(
getStaticAttrValue({
type: 'GlimmerMustacheStatement',
path: { type: 'GlimmerNumberLiteral', value: -1 },
})
).toBe('-1');
expect(
getStaticAttrValue({
type: 'GlimmerMustacheStatement',
path: { type: 'GlimmerNumberLiteral', value: 0 },
})
).toBe('0');
});
it('returns undefined for GlimmerMustacheStatement with a dynamic PathExpression', () => {
expect(
getStaticAttrValue({
type: 'GlimmerMustacheStatement',
path: { type: 'GlimmerPathExpression', original: 'this.foo' },
})
).toBeUndefined();
});
it('joins GlimmerConcatStatement with only static parts', () => {
expect(
getStaticAttrValue({
type: 'GlimmerConcatStatement',
parts: [
{ type: 'GlimmerTextNode', chars: 'prefix-' },
{
type: 'GlimmerMustacheStatement',
path: { type: 'GlimmerStringLiteral', value: 'mid' },
},
{ type: 'GlimmerTextNode', chars: '-suffix' },
],
})
).toBe('prefix-mid-suffix');
});
it('joins concat with boolean and number literal parts', () => {
expect(
getStaticAttrValue({
type: 'GlimmerConcatStatement',
parts: [
{
type: 'GlimmerMustacheStatement',
path: { type: 'GlimmerBooleanLiteral', value: true },
},
],
})
).toBe('true');
expect(
getStaticAttrValue({
type: 'GlimmerConcatStatement',
parts: [
{
type: 'GlimmerMustacheStatement',
path: { type: 'GlimmerNumberLiteral', value: -1 },
},
],
})
).toBe('-1');
});
it('returns undefined for GlimmerConcatStatement with a dynamic part', () => {
expect(
getStaticAttrValue({
type: 'GlimmerConcatStatement',
parts: [
{ type: 'GlimmerTextNode', chars: 'x-' },
{
type: 'GlimmerMustacheStatement',
path: { type: 'GlimmerPathExpression', original: 'this.foo' },
},
],
})
).toBeUndefined();
});
it('returns undefined for an unknown node type', () => {
expect(getStaticAttrValue({ type: 'GlimmerSubExpression' })).toBeUndefined();
});
});