2016-10-30 17:42:49 +05:30
|
|
|
import expect from 'unexpected';
|
|
|
|
|
|
|
|
import accounts from 'components/accounts/reducer';
|
2016-11-05 15:41:41 +05:30
|
|
|
import {
|
2016-11-14 10:58:25 +05:30
|
|
|
updateToken, add, remove, activate, reset,
|
|
|
|
ADD, REMOVE, ACTIVATE, UPDATE_TOKEN, RESET
|
2016-11-05 15:41:41 +05:30
|
|
|
} from 'components/accounts/actions';
|
2016-10-30 17:42:49 +05:30
|
|
|
|
|
|
|
const account = {
|
|
|
|
id: 1,
|
|
|
|
username: 'username',
|
|
|
|
email: 'email@test.com',
|
2016-11-19 21:20:30 +05:30
|
|
|
token: 'foo'
|
2016-10-30 17:42:49 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
describe('Accounts reducer', () => {
|
|
|
|
let initial;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2016-11-05 15:41:41 +05:30
|
|
|
initial = accounts(undefined, {});
|
2016-10-30 17:42:49 +05:30
|
|
|
});
|
|
|
|
|
2016-11-05 15:41:41 +05:30
|
|
|
it('should be empty', () => expect(accounts(undefined, {}), 'to equal', {
|
2016-10-30 17:42:49 +05:30
|
|
|
active: null,
|
|
|
|
available: []
|
|
|
|
}));
|
|
|
|
|
2016-11-05 15:41:41 +05:30
|
|
|
it('should return last state if unsupported action', () =>
|
|
|
|
expect(accounts({state: 'foo'}, {}), 'to equal', {state: 'foo'})
|
|
|
|
);
|
|
|
|
|
2016-10-30 17:42:49 +05:30
|
|
|
describe(ACTIVATE, () => {
|
|
|
|
it('sets active account', () => {
|
2016-11-05 15:41:41 +05:30
|
|
|
expect(accounts(initial, activate(account)), 'to satisfy', {
|
2016-10-30 17:42:49 +05:30
|
|
|
active: account
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe(ADD, () => {
|
|
|
|
it('adds an account', () =>
|
2016-11-05 15:41:41 +05:30
|
|
|
expect(accounts(initial, add(account)), 'to satisfy', {
|
2016-10-30 17:42:49 +05:30
|
|
|
available: [account]
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
2016-11-13 02:01:44 +05:30
|
|
|
it('should replace if account was added for the second time', () => {
|
|
|
|
const outdatedAccount = {
|
|
|
|
...account,
|
|
|
|
someShit: true
|
|
|
|
};
|
|
|
|
|
|
|
|
const updatedAccount = {
|
|
|
|
...account,
|
|
|
|
token: 'newToken'
|
|
|
|
};
|
|
|
|
|
2016-11-13 17:46:21 +05:30
|
|
|
expect(
|
2016-11-13 02:01:44 +05:30
|
|
|
accounts({...initial, available: [outdatedAccount]}, add(updatedAccount)),
|
|
|
|
'to satisfy', {
|
|
|
|
available: [updatedAccount]
|
|
|
|
});
|
|
|
|
});
|
2016-10-30 17:42:49 +05:30
|
|
|
|
2016-11-13 17:46:21 +05:30
|
|
|
it('should sort accounts by username', () => {
|
|
|
|
const newAccount = {
|
|
|
|
...account,
|
|
|
|
id: 2,
|
|
|
|
username: 'abc'
|
|
|
|
};
|
|
|
|
|
|
|
|
expect(accounts({...initial, available: [account]}, add(newAccount)),
|
|
|
|
'to satisfy', {
|
|
|
|
available: [newAccount, account]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-10-30 17:42:49 +05:30
|
|
|
it('throws, when account is invalid', () => {
|
2016-11-05 15:41:41 +05:30
|
|
|
expect(() => accounts(initial, add()),
|
|
|
|
'to throw', 'Invalid or empty payload passed for accounts.add');
|
2016-10-30 17:42:49 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe(REMOVE, () => {
|
|
|
|
it('should remove an account', () =>
|
2016-11-05 15:41:41 +05:30
|
|
|
expect(accounts({...initial, available: [account]}, remove(account)),
|
|
|
|
'to equal', initial)
|
2016-10-30 17:42:49 +05:30
|
|
|
);
|
|
|
|
|
|
|
|
it('throws, when account is invalid', () => {
|
2016-11-05 15:41:41 +05:30
|
|
|
expect(() => accounts(initial, remove()),
|
|
|
|
'to throw', 'Invalid or empty payload passed for accounts.remove');
|
|
|
|
});
|
|
|
|
});
|
2016-10-30 17:42:49 +05:30
|
|
|
|
2016-11-14 10:58:25 +05:30
|
|
|
describe(RESET, () => {
|
|
|
|
it('should reset accounts state', () =>
|
|
|
|
expect(accounts({...initial, available: [account]}, reset()),
|
|
|
|
'to equal', initial)
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2016-11-05 15:41:41 +05:30
|
|
|
describe(UPDATE_TOKEN, () => {
|
|
|
|
it('should update token', () => {
|
|
|
|
const newToken = 'newToken';
|
|
|
|
|
|
|
|
expect(accounts(
|
|
|
|
{active: account, available: [account]},
|
|
|
|
updateToken(newToken)
|
|
|
|
), 'to satisfy', {
|
|
|
|
active: {
|
|
|
|
...account,
|
|
|
|
token: newToken
|
|
|
|
},
|
|
|
|
available: [account]
|
|
|
|
});
|
2016-10-30 17:42:49 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|