This repository was archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetAnElementValue.tests.js
80 lines (60 loc) · 2.27 KB
/
SetAnElementValue.tests.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
describe('The SetAnElementValue service', function() {
var scratchArea;
function clearNodes(element)
{
while(element.firstChild)
element.removeChild(element.firstChild);
}
function addScratchElement(name)
{
var element = document.createElement(name);
scratchArea.appendChild(element);
return element;
}
beforeEach(function() {
scratchArea = document.getElementById('test_scratch_area');
});
afterEach(function() {
clearNodes(scratchArea);
});
it('should use the arguments-array validator', function() {
spyOn(argumentsArrayValidator, 'validate')
.and
.returnValue(true);
var element = addScratchElement('input');
executeScript([element, 3]);
expect(argumentsArrayValidator.validate).toHaveBeenCalledWith([element, 3], 2);
});
it('should throw an error when the element is null', function() {
expect(function() {
executeScript([null, 'value']);
}).toThrowError(Error, /must provide an HTML element/);
});
it('should throw an error when used with an object which is not an HTMLElement', function() {
expect(function() {
executeScript([{ not: 'an', html: 'element' }, 'value']);
}).toThrowError(Error, /must be an HTML element/);
});
it('should throw an error when used with an HTML element that does not have a value', function() {
var element = addScratchElement('div');
expect(function() {
executeScript([element, 'value']);
}).toThrowError(Error, /must have a 'value' property/);
});
it('should be able to set the value of an HTML <input> element', function() {
var element = addScratchElement('input');
executeScript([element, 'newVal']);
expect(element.value).toEqual('newVal');
});
it('should be able to set the value of an HTML <textarea> element', function() {
var element = addScratchElement('textarea');
executeScript([element, 'newVal']);
expect(element.value).toEqual('newVal');
});
it('should trigger the change event when it sets the value', function() {
var element = addScratchElement('input'), eventTriggered = false;
element.addEventListener('change', function() { eventTriggered = true; return true; })
executeScript([element, 'newVal']);
expect(eventTriggered).toEqual(true);
});
});