-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
84 lines (67 loc) · 1.72 KB
/
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
const assert = require('assert');
const Display = require('./lcd');
const displayHelper = (expectedOutput) => expectedOutput.replace(/^ +/gm, '');
describe('Day 8: Two-Factor Authentication', () => {
it('should initialize empty display', () => {
const display = new Display(7, 3);
assert.strictEqual(
display.print(),
displayHelper(
`.......
.......
.......`
)
);
assert.strictEqual(display.lights, 0);
});
it('should create a small rectangle in the top-left corner', () => {
const display = new Display(7, 3);
display.drawRect(3, 2);
assert.strictEqual(
display.print(),
displayHelper(
`###....
###....
.......`
));
});
it('should rotate the second column down by one pixel', () => {
const display = new Display(7, 3);
display.drawRect(3, 2);
display.rotateColumn(1, 1);
assert.strictEqual(
display.print(),
displayHelper(
`#.#....
###....
.#.....`
));
});
it('should rotate the top row right by four pixels', () => {
const display = new Display(7, 3);
display.drawRect(3, 2);
display.rotateColumn(1, 1);
display.rotateRow(0, 4);
assert.strictEqual(
display.print(),
displayHelper(
`....#.#
###....
.#.....`
));
});
it('should again rotate the second column down by one pixel', () => {
const display = new Display(7, 3);
display.drawRect(3, 2);
display.rotateColumn(1, 1);
display.rotateRow(0, 4);
display.rotateColumn(1, 1);
assert.strictEqual(
display.print(),
displayHelper(
`.#..#.#
#.#....
.#.....`
));
});
});