import { __stub } from 'soapbox/api'; import { mockStore } from 'soapbox/jest/test-helpers'; import rootReducer from 'soapbox/reducers'; import { normalizeAccount } from '../../normalizers'; import { changeAccountNoteComment, initAccountNoteModal, submitAccountNote } from '../account-notes'; describe('submitAccountNote()', () => { let store; beforeEach(() => { const state = rootReducer(undefined, {}) .set('account_notes', { edit: { account_id: 1, comment: 'hello' } }); store = mockStore(state); }); describe('with a successful API request', () => { beforeEach(() => { __stub((mock) => { mock.onPost('/api/v1/accounts/1/note').reply(200, {}); }); }); it('post the note to the API', async() => { const expectedActions = [ { type: 'ACCOUNT_NOTE_SUBMIT_REQUEST' }, { type: 'MODAL_CLOSE', modalType: undefined }, { type: 'ACCOUNT_NOTE_SUBMIT_SUCCESS', relationship: {} }, ]; await store.dispatch(submitAccountNote()); const actions = store.getActions(); expect(actions).toEqual(expectedActions); }); }); describe('with an unsuccessful API request', () => { beforeEach(() => { __stub((mock) => { mock.onPost('/api/v1/accounts/1/note').networkError(); }); }); it('should dispatch failed action', async() => { const expectedActions = [ { type: 'ACCOUNT_NOTE_SUBMIT_REQUEST' }, { type: 'ACCOUNT_NOTE_SUBMIT_FAIL', error: new Error('Network Error'), }, ]; await store.dispatch(submitAccountNote()); const actions = store.getActions(); expect(actions).toEqual(expectedActions); }); }); }); describe('initAccountNoteModal()', () => { let store; beforeEach(() => { const state = rootReducer(undefined, {}) .set('relationships', { 1: { note: 'hello' } }); store = mockStore(state); }); it('dispatches the proper actions', async() => { const account = normalizeAccount({ id: '1', acct: 'justin-username', display_name: 'Justin L', avatar: 'test.jpg', verified: true, }); const expectedActions = [ { type: 'ACCOUNT_NOTE_INIT_MODAL', account, comment: 'hello' }, { type: 'MODAL_OPEN', modalType: 'ACCOUNT_NOTE' }, ]; await store.dispatch(initAccountNoteModal(account)); const actions = store.getActions(); expect(actions).toEqual(expectedActions); }); }); describe('changeAccountNoteComment()', () => { let store; beforeEach(() => { const state = rootReducer(undefined, {}); store = mockStore(state); }); it('dispatches the proper actions', async() => { const comment = 'hello world'; const expectedActions = [ { type: 'ACCOUNT_NOTE_CHANGE_COMMENT', comment }, ]; await store.dispatch(changeAccountNoteComment(comment)); const actions = store.getActions(); expect(actions).toEqual(expectedActions); }); });