-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathcalculator-test.js
51 lines (38 loc) · 1.56 KB
/
calculator-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
import assert from 'assert'
let subject, Adder, Subtractor, Multiplier, divider, result
describe('Calculator', () => {
beforeEach(() => {
Adder = td.replace('../../lib/adder')
Subtractor = td.replace('../../lib/subtractor')
Multiplier = td.replace('../../lib/multiplier').default
divider = td.replace('../../lib/divider').default
const Calculator = require('../../lib/calculator').default
subject = new Calculator()
})
describe('#calculate', () => {
it('delegates to an Adder', () => {
td.when(Adder.prototype.add(4, 9)).thenReturn('yay math!')
result = subject.calculate('add', 4, 9)
assert.equal(result, 'yay math!')
})
it('delegates to a Subtractor', () => {
td.when(Subtractor.prototype.subtract(9, 8)).thenReturn('minus math!')
result = subject.calculate('subtract', 9, 8)
assert.equal(result, 'minus math!')
})
it('delegates to a Multiplier', () => {
td.when(Multiplier.prototype.multiply(1, 4)).thenReturn('times math!')
result = subject.calculate('multiply', 1, 4)
assert.equal(result, 'times math!')
})
it('delegates to a really weird and very deeply nested Divider', () => {
// This is a very bad test to verify deep nesting.
// Please do not write things like this!
td.when(divider.ohAndAlso.Executor.prototype.execute()).thenReturn('lol')
result = subject.calculate('divide', 10, 2)
td.verify(divider.numerator.set(10))
td.verify(divider.otherOptions.divisor.setThatToo(2))
assert.equal(result, 'lol')
})
})
})