Created
October 22, 2017 23:27
-
-
Save lmatteis/d64b799a0b394d1a7b901fec107e2df6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { shallow } from 'enzyme'; | |
import ReduxTdd from '../src/redux-tdd'; | |
import { Observable } from 'rxjs/Observable'; | |
import 'rxjs/add/observable/of'; | |
import 'rxjs/add/operator/toArray'; | |
import 'rxjs/add/operator/switchMap'; | |
import 'rxjs/add/operator/map'; | |
function fetchItems() { | |
return { type: 'FETCH_ITEMS' } | |
} | |
function recievedItems(payload) { | |
return { type: 'RECIEVED_ITEMS', payload } | |
} | |
function pauseItem(id) { | |
return { type: 'PAUSE_ITEM', payload: id } | |
} | |
function pauseItemSuccess(payload) { | |
return { type: 'PAUSE_ITEM_SUCCESS', payload } | |
} | |
function handleFetchItems(action$, store, { getJSON }) { | |
return action$ | |
.ofType('FETCH_ITEMS') | |
.switchMap(action => | |
getJSON('http://foo') | |
.map(response => | |
response.reduce((acc, curr) => | |
({ | |
...acc, | |
[curr.id]: curr, | |
}) | |
, {}) | |
) | |
.map(response => recievedItems(response)) | |
) | |
} | |
function handlePausItem(action$, store, { getJSON }) { | |
return action$ | |
.ofType('PAUSE_ITEM') | |
.switchMap(action => | |
getJSON('http://gg.com') | |
.map(response => | |
pauseItemSuccess(action.payload) | |
) | |
) | |
} | |
function Pause({ id, onClick }) { | |
return <a href="#" onClick={onClick}>pause</a> | |
} | |
function Item({ item }) { | |
return <div> | |
<Pause id={item.id} /> | |
</div> | |
} | |
function Items({ items }) { | |
return <div> | |
{Object.keys(items).map(id => <Item key={id} item={items[id]} />)} | |
</div> | |
} | |
// items: { id -> item } | |
function items(state = {}, action) { | |
switch (action.type) { | |
case 'RECIEVED_ITEMS': | |
return action.payload; | |
case 'PAUSE_ITEM': | |
return { | |
...state, | |
[action.payload]: { | |
...state[action.payload], | |
loading: true | |
} | |
} | |
case 'PAUSE_ITEM_SUCCESS': | |
return { | |
...state, | |
[action.payload]: { | |
...state[action.payload], | |
status: 'paused', | |
loading: false | |
} | |
} | |
default: | |
return state; | |
} | |
} | |
describe('Items and Item', () => { | |
const response = [ | |
{ id: 1, name: 'Foo', date: 'March' }, | |
{ id: 2, name: 'Bar', date: 'November' } | |
] | |
ReduxTdd({ items }, state => ([ | |
<Items | |
items={state.items} | |
fetchItems={fetchItems} | |
/> | |
, | |
<Item | |
item={state.items['1'] || {}} | |
/> | |
, | |
<Pause | |
id={'1'} onClick={pauseItem} | |
loading={state.items['1'] && state.items['1'].loading} | |
/> | |
])) | |
.it('should load items') | |
.action(props => props.fetchItems()) | |
.epic(handleFetchItems, { getJSON: () => | |
Observable.of(response) | |
}) | |
.toMatchProps({ items: | |
{ | |
1: { id: 1, name: 'Foo', date: 'March' }, | |
2: { id: 2, name: 'Bar', date: 'November' } | |
} | |
}) | |
.view(wrapper => | |
expect(wrapper.find(Item).length).toEqual(2) | |
) | |
.it('should test our Item got the right prop') | |
.switch(Item) | |
.toMatchProps({ item: | |
{ id: 1, name: 'Foo', date: 'March' } | |
}) | |
.it('should pause item with id 1') | |
.switch(Pause) | |
.action(props => props.onClick(1)) | |
.it('should show loading on Pause button') | |
.toMatchProps({ loading: true }) | |
.epic(handlePausItem, { getJSON: () => | |
Observable.of({}) | |
}) | |
.it('should hide loading') | |
.toMatchProps({ loading: false }) | |
.it('should test that our item recieved the correct "paused" status') | |
.switch(Item) | |
.toMatchProps({ item: | |
{ id: 1, name: 'Foo', date: 'March', status: 'paused' } | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment