forked from jxnblk/refunk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
74 lines (65 loc) · 1.67 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
import test from 'ava'
import React from 'react'
import { create as render } from 'react-test-renderer'
import { shallow } from 'enzyme'
import { createProvider, connect } from './src'
const App = props => (
<h1>Hello</h1>
)
const Container = props => (
<h2>Container</h2>
)
let Provider
let Sub
test('exports functions', t => {
t.is(typeof createProvider, 'function')
t.is(typeof connect, 'function')
})
test('creates a provider', t => {
t.notThrows(() => {
const init = { count: 1 }
Provider = createProvider(init)(App)
})
const wrapper = shallow(<Provider />) //.first().shallow()
t.is(wrapper.props().count, 1)
t.is(typeof wrapper.props().update, 'function')
})
test('connects subcomponents', t => {
t.notThrows(() => {
Sub = connect()(Container)
})
const wrapper = shallow(<Sub />, {
context: {
update: () => {},
state: {}
}
})
t.is(typeof wrapper.context('update'), 'function')
t.is(typeof wrapper.context('state'), 'object')
t.is(typeof wrapper.props().update, 'function')
})
test('connect maps state to props', t => {
Sub = connect(state => ({ count: state.count }))(Container)
const wrapper = shallow(<Sub />, {
context: {
update: () => {},
state: {
count: 3,
color: 'tomato'
}
}
})
t.is(wrapper.props().count, 3)
t.falsy(wrapper.props().color)
})
test('Provider.update() sets state', t => {
const wrapper = shallow(<Provider />)
wrapper.instance().update(state => ({
count: 32
}))
t.is(wrapper.state().count, 32)
})
test('Provider adds props to initial state', t => {
const wrapper = shallow(<Provider foo='hello' />)
t.is(wrapper.state().foo, 'hello')
})