-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathconstructor.js
161 lines (117 loc) · 3.55 KB
/
constructor.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
'use strict';
const assert = require('assert');
const mockRequire = require('mock-require');
const MockLinux = require('./mocks/linux');
const MockEpoll = require('./mocks/epoll');
mockRequire('epoll', MockEpoll);
const Gpio = require('../onoff').Gpio;
describe('constructor', () => {
let gpio;
let pin;
beforeEach(() => {
pin = 4;
MockLinux.gpio(pin);
});
it('creates input', () => {
gpio = new Gpio(pin, 'in');
const expected = 'in';
const actual = gpio.direction();
assert.deepEqual(actual, expected);
});
it('creates output', () => {
gpio = new Gpio(pin, 'out');
const expected = 'out';
const actual = gpio.direction();
assert.deepEqual(actual, expected);
});
it('creates active low input', () => {
gpio = new Gpio(pin, 'in', {activeLow: true});
const expected = true;
const actual = gpio.activeLow();
assert.deepEqual(actual, expected);
});
it('creates active high input', () => {
gpio = new Gpio(pin, 'in', {activeLow: false});
const expected = false;
const actual = gpio.activeLow();
assert.deepEqual(actual, expected);
});
it('creates input with debounce timeout', () => {
gpio = new Gpio(pin, 'in', {debounceTimeout: 10});
const expected = 10;
const actual = gpio._debounceTimeout;
assert.deepEqual(actual, expected);
});
it('ignores exceptions thrown by setActiveLow', () => {
const setActiveLow = Gpio.prototype.setActiveLow;
Gpio.prototype.setActiveLow = () => {
throw new Error();
};
const expected = '';
let actual;
try {
gpio = new Gpio(pin, 'out', {activeLow: true});
actual = '';
} catch (err) {
actual = 'error thrown by setActiveLow was not ignored';
}
Gpio.prototype.setActiveLow = setActiveLow;
assert.deepEqual(actual, expected);
});
it('ignores exceptions thrown by setDirection', () => {
const setDirection = Gpio.prototype.setDirection;
Gpio.prototype.setDirection = () => {
throw new Error();
};
const expected = '';
let actual;
try {
gpio = new Gpio(pin, 'out');
actual = '';
} catch (err) {
actual = 'error thrown by setDirection was not ignored';
}
Gpio.prototype.setDirection = setDirection;
assert.deepEqual(actual, expected);
});
it('ignores exceptions thrown by setEdge', () => {
const setEdge = Gpio.prototype.setEdge;
Gpio.prototype.setEdge = () => {
throw new Error();
};
const expected = '';
let actual;
try {
gpio = new Gpio(pin, 'in', 'both');
actual = '';
} catch (err) {
actual = 'error thrown by setEdge was not ignored';
}
Gpio.prototype.setEdge = setEdge;
assert.deepEqual(actual, expected);
});
it('does not unnecessarily reconfigure direction', () => {
let setDirectionCalled = false;
const setDirection = Gpio.prototype.setDirection;
Gpio.prototype.setDirection = () => {
setDirectionCalled = true;
};
gpio = new Gpio(pin, 'in', {reconfigureDirection: false});
Gpio.prototype.setDirection = setDirection;
assert(!setDirectionCalled);
});
it('reconfigures direction if necessary', () => {
let setDirectionCalled = false;
const setDirection = Gpio.prototype.setDirection;
Gpio.prototype.setDirection = () => {
setDirectionCalled = true;
};
gpio = new Gpio(pin, 'high', {reconfigureDirection: false});
Gpio.prototype.setDirection = setDirection;
assert(setDirectionCalled);
});
afterEach(() => {
gpio.unexport();
MockLinux.restore();
});
});