-
Notifications
You must be signed in to change notification settings - Fork 1
/
rpiLeds.spec.js
149 lines (119 loc) · 4.01 KB
/
rpiLeds.spec.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
"use strict";
var proxyquire = require('proxyquire');
var sinon = require('sinon');
var leds, execStub;
describe('rpiLeds', function() {
beforeEach(function() {
// Stub, so commands aren't executed
execStub = sinon.spy();
var RpiLeds = proxyquire('../lib/rpiLeds', {
'sync-exec': execStub
});
leds = new RpiLeds();
});
it('runs initialisation with led0', function() {
expect(execStub.calledWithMatch('echo gpio | sudo tee /sys/class/leds/led0/trigger')).toBeTruthy();
});
it('runs initialisation with led1', function() {
expect(execStub.calledWithMatch('echo gpio | sudo tee /sys/class/leds/led1/trigger')).toBeTruthy();
});
describe('reset', function() {
beforeEach(function() {
leds.reset();
});
it('resets both LEDs', function() {
expect(execStub.calledWithMatch('echo input | sudo tee /sys/class/leds/led1/trigger')).toBeTruthy();
expect(execStub.calledWithMatch('echo mmc0 | sudo tee /sys/class/leds/led0/trigger')).toBeTruthy();
});
});
describe('power', function() {
it('exists', function() {
expect(leds.power).toBeTruthy();
});
describe('turnOn()', function() {
beforeEach(function() {
leds.power.turnOn();
});
it('sets brightness command', function() {
expect(execStub.calledWithMatch('echo 1 | sudo tee /sys/class/leds/led1/brightness')).toBeTruthy();
});
});
describe('.turnOff()', function() {
beforeEach(function() {
leds.power.turnOff();
});
it('sets brightness command', function() {
expect(execStub.calledWithMatch('echo 0 | sudo tee /sys/class/leds/led1/brightness')).toBeTruthy();
});
});
describe('.heartbeat()', function() {
beforeEach(function() {
leds.power.heartbeat();
});
it('sets trigger', function() {
expect(execStub.calledWithMatch('echo heartbeat | sudo tee /sys/class/leds/led1/trigger')).toBeTruthy();
});
});
describe('.blink()', function() {
beforeEach(function() {
leds.power.blink();
});
it('sets trigger', function() {
expect(execStub.calledWithMatch('echo timer | sudo tee /sys/class/leds/led1/trigger')).toBeTruthy();
});
});
describe('.reset()', function() {
beforeEach(function() {
leds.power.reset();
});
it('sets trigger to `input`', function() {
expect(execStub.calledWithMatch('echo input | sudo tee /sys/class/leds/led1/trigger')).toBeTruthy();
});
});
});
describe('status', function() {
it('exists', function() {
expect(leds.status).toBeTruthy();
});
describe('turnOn()', function() {
beforeEach(function() {
leds.status.turnOn();
});
it('sets brightness command', function() {
expect(execStub.calledWithMatch('echo 1 | sudo tee /sys/class/leds/led0/brightness')).toBeTruthy();
});
});
describe('.turnOff()', function() {
beforeEach(function() {
leds.status.turnOff();
});
it('sets brightness command', function() {
expect(execStub.calledWithMatch('echo 0 | sudo tee /sys/class/leds/led0/brightness')).toBeTruthy();
});
});
describe('.heartbeat()', function() {
beforeEach(function() {
leds.status.heartbeat();
});
it('sets trigger', function() {
expect(execStub.calledWithMatch('echo heartbeat | sudo tee /sys/class/leds/led0/trigger')).toBeTruthy();
});
});
describe('.blink()', function() {
beforeEach(function() {
leds.status.blink();
});
it('sets trigger', function() {
expect(execStub.calledWithMatch('echo timer | sudo tee /sys/class/leds/led0/trigger')).toBeTruthy();
});
});
describe('.reset()', function() {
beforeEach(function() {
leds.status.reset();
});
it('sets trigger to `mmc0`', function() {
expect(execStub.calledWithMatch('echo mmc0 | sudo tee /sys/class/leds/led0/trigger')).toBeTruthy();
});
});
});
});