-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathwill-destroy-test.js
More file actions
99 lines (77 loc) · 2.72 KB
/
will-destroy-test.js
File metadata and controls
99 lines (77 loc) · 2.72 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
import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render, setupOnerror } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Modifier | will-destroy', function (hooks) {
setupRenderingTest(hooks);
test('it basically works', async function (assert) {
assert.expect(2);
this.someMethod = (element) => {
assert.equal(element.tagName, 'DIV', 'correct element tagName');
assert.dom(element).hasAttribute('data-foo', 'some-thing');
};
this.set('show', true);
await render(
hbs`{{#if this.show}}<div data-foo="some-thing" {{will-destroy this.someMethod}}></div>{{/if}}`
);
// trigger destroy
this.set('show', false);
});
test('it can accept arguments', async function (assert) {
assert.expect(4);
this.someMethod = (element, positional, named) => {
assert.equal(element.tagName, 'DIV', 'correct element tagName');
assert.dom(element).hasAttribute('data-foo', 'some-thing');
assert.namedArgsEqual(named, { some: 'hash-value' }, 'named args match');
assert.deepEqual(positional, ['some-positional-value'], 'positional args match');
};
this.set('show', true);
await render(
hbs`{{#if this.show}}<div data-foo="some-thing" {{will-destroy this.someMethod "some-positional-value" some="hash-value"}}></div>{{/if}}`
);
// trigger destroy
this.set('show', false);
});
test('provides a useful error on install', async function (assert) {
assert.expect(1);
// Setup error capturing
setupOnerror(function (err) {
assert.equal(
err.toString(),
`TypeError: did-destroy expected a function, instead received "undefined"`
);
});
await render(hbs`
<div {{will-destroy this.nonExistentMethod}}></div>
`);
// Prevent double error on test teardown
this.set('nonExistentMethod', () => {});
// Reset error capturing
setupOnerror();
});
test('provides a useful error on destroy', async function (assert) {
assert.expect(1);
// Start with a valid function so that install works
this.set('nonExistentMethod', () => {});
// Setup error capturing
setupOnerror(function (err) {
assert.equal(
err.toString(),
`TypeError: did-destroy expected a function, instead received "undefined"`
);
});
this.set('show', true);
await render(hbs`
{{#if this.show}}
<div {{will-destroy this.nonExistentMethod}}></div>
{{/if}}
`);
// Remove the function to trigger an error on destroy
this.setProperties({
nonExistentMethod: undefined,
show: false,
});
// Reset error capturing
setupOnerror();
});
});