-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.test.js
90 lines (77 loc) · 1.97 KB
/
table.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
85
86
87
88
89
90
import expect from 'expect';
import { create } from '../index';
import { valueOf } from '../src/meta';
import Table from '../examples/table';
class Num {
get state() {
let value = valueOf(this);
return value == null ? 0 : value;
}
increment() {
return this.state + 1;
}
}
describe('Table', () => {
let table;
beforeEach(() => {
table = create(Table(Num), [
[1, 2, 3],
[4, 5, 6]
]);
});
it('provides access to the cells', function() {
let [ first ] = table;
expect(first).toBeDefined();
expect(valueOf(first)).toEqual(1);
});
it('provides access to the cells via the rows', function() {
let [ , [first, second, third] ] = table.rows;
expect(first.state).toEqual(4);
expect(second.state).toEqual(5);
expect(third.state).toEqual(6);
});
it('provides access to the cells via the columns', function() {
let [ , [top, bottom] ] = table.columns;
expect(top.state).toEqual(2);
expect(bottom.state).toEqual(5);
});
describe('transitioning a cell directly', function() {
let next;
beforeEach(() => {
let [,,, fourth] = table;
next = fourth.increment();
});
it('increments the number at the right location', function() {
expect(valueOf(next)).toEqual([
[1, 2, 3],
[5, 5, 6]
]);
});
});
describe('transitioning from a row', function() {
let next;
beforeEach(() => {
let [, [ row2Column1 ]] = table.rows;
next = row2Column1.increment();
});
it('correctly updates the atom', function() {
expect(valueOf(next)).toEqual([
[1, 2, 3],
[5, 5, 6]
]);
});
});
describe('transitioning from a column', function() {
let next;
beforeEach(() => {
let [, [, column2Row2] ] = table.columns;
next = column2Row2.increment();
});
it('properly updates the atom', function() {
expect(valueOf(next)).toEqual([
[1, 2, 3],
[4, 6, 6]
]);
});
});
});