-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
hash-test.js
236 lines (170 loc) · 6.13 KB
/
hash-test.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
import { RenderingTestCase, defineComponent, moduleFor, runTask } from 'internal-test-helpers';
import { Component } from '../../utils/helpers';
import { set, computed } from '@ember/object';
moduleFor(
'Helpers test: {{hash}}',
class extends RenderingTestCase {
['@test returns a hash with the right key-value']() {
this.render(`{{#let (hash name="Sergio") as |person|}}{{person.name}}{{/let}}`);
this.assertText('Sergio');
runTask(() => this.rerender());
this.assertText('Sergio');
}
['@test can be shadowed']() {
let hash = (obj) =>
Object.entries(obj)
.map(([key, value]) => `hash:${key}=${value}`)
.join(',');
let Root = defineComponent(
{ hash, shadowHash: hash },
`({{hash apple='red' banana='yellow'}}) ({{#let shadowHash as |hash|}}{{hash apple='green'}}{{/let}})`
);
this.renderComponent(Root, {
expect: '(hash:apple=red,hash:banana=yellow) (hash:apple=green)',
});
}
['@test can have more than one key-value']() {
this.render(
`{{#let (hash name="Sergio" lastName="Arbeo") as |person|}}{{person.name}} {{person.lastName}}{{/let}}`
);
this.assertText('Sergio Arbeo');
runTask(() => this.rerender());
this.assertText('Sergio Arbeo');
}
['@test binds values when variables are used']() {
this.render(
`{{#let (hash name=this.model.firstName lastName="Arbeo") as |person|}}{{person.name}} {{person.lastName}}{{/let}}`,
{
model: {
firstName: 'Marisa',
},
}
);
this.assertText('Marisa Arbeo');
runTask(() => this.rerender());
this.assertText('Marisa Arbeo');
runTask(() => set(this.context, 'model.firstName', 'Sergio'));
this.assertText('Sergio Arbeo');
runTask(() => set(this.context, 'model', { firstName: 'Marisa' }));
this.assertText('Marisa Arbeo');
}
['@test binds multiple values when variables are used']() {
this.render(
`{{#let (hash name=this.model.firstName lastName=this.model.lastName) as |person|}}{{person.name}} {{person.lastName}}{{/let}}`,
{
model: {
firstName: 'Marisa',
lastName: 'Arbeo',
},
}
);
this.assertText('Marisa Arbeo');
runTask(() => this.rerender());
this.assertText('Marisa Arbeo');
runTask(() => set(this.context, 'model.firstName', 'Sergio'));
this.assertText('Sergio Arbeo');
runTask(() => set(this.context, 'model.lastName', 'Smith'));
this.assertText('Sergio Smith');
runTask(() =>
set(this.context, 'model', {
firstName: 'Marisa',
lastName: 'Arbeo',
})
);
this.assertText('Marisa Arbeo');
}
['@test hash helpers can be nested']() {
this.render(
`{{#let (hash person=(hash name=this.model.firstName)) as |ctx|}}{{ctx.person.name}}{{/let}}`,
{
model: { firstName: 'Balint' },
}
);
this.assertText('Balint');
runTask(() => this.rerender());
this.assertText('Balint');
runTask(() => set(this.context, 'model.firstName', 'Chad'));
this.assertText('Chad');
runTask(() => set(this.context, 'model', { firstName: 'Balint' }));
this.assertText('Balint');
}
['@test should yield hash of internal properties']() {
let fooBarInstance;
let FooBarComponent = Component.extend({
init() {
this._super();
fooBarInstance = this;
this.model = { firstName: 'Chad' };
},
});
this.registerComponent('foo-bar', {
ComponentClass: FooBarComponent,
template: `{{yield (hash firstName=this.model.firstName)}}`,
});
this.render(`{{#foo-bar as |values|}}{{values.firstName}}{{/foo-bar}}`);
this.assertText('Chad');
runTask(() => this.rerender());
this.assertText('Chad');
runTask(() => set(fooBarInstance, 'model.firstName', 'Godfrey'));
this.assertText('Godfrey');
runTask(() => set(fooBarInstance, 'model', { firstName: 'Chad' }));
this.assertText('Chad');
}
['@test should yield hash of internal and external properties']() {
let fooBarInstance;
let FooBarComponent = Component.extend({
init() {
this._super();
fooBarInstance = this;
this.model = { firstName: 'Chad' };
},
});
this.registerComponent('foo-bar', {
ComponentClass: FooBarComponent,
template: `{{yield (hash firstName=this.model.firstName lastName=this.lastName)}}`,
});
this.render(
`{{#foo-bar lastName=this.model.lastName as |values|}}{{values.firstName}} {{values.lastName}}{{/foo-bar}}`,
{
model: { lastName: 'Hietala' },
}
);
this.assertText('Chad Hietala');
runTask(() => this.rerender());
this.assertText('Chad Hietala');
runTask(() => {
set(fooBarInstance, 'model.firstName', 'Godfrey');
set(this.context, 'model.lastName', 'Chan');
});
this.assertText('Godfrey Chan');
runTask(() => {
set(fooBarInstance, 'model', { firstName: 'Chad' });
set(this.context, 'model', { lastName: 'Hietala' });
});
this.assertText('Chad Hietala');
}
['@test works with computeds']() {
let FooBarComponent = Component.extend({
fullName: computed('hash.firstName', 'hash.lastName', function () {
return `${this.hash.firstName} ${this.hash.lastName}`;
}),
});
this.registerComponent('foo-bar', {
ComponentClass: FooBarComponent,
template: `{{this.fullName}}`,
});
this.render(`{{foo-bar hash=(hash firstName=this.firstName lastName=this.lastName)}}`, {
firstName: 'Chad',
lastName: 'Hietala',
});
this.assertText('Chad Hietala');
runTask(() => this.rerender());
this.assertText('Chad Hietala');
runTask(() => {
set(this.context, 'firstName', 'Godfrey');
set(this.context, 'lastName', 'Chan');
});
this.assertText('Godfrey Chan');
}
}
);