mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-06 08:11:20 +05:30
128 lines
3.2 KiB
JavaScript
128 lines
3.2 KiB
JavaScript
import ResendActivationState from 'services/authFlow/ResendActivationState';
|
|
import CompleteState from 'services/authFlow/CompleteState';
|
|
import ActivationState from 'services/authFlow/ActivationState';
|
|
import RegisterState from 'services/authFlow/RegisterState';
|
|
|
|
import { bootstrap, expectState, expectNavigate, expectRun } from './helpers';
|
|
|
|
describe('ResendActivationState', () => {
|
|
let state;
|
|
let context;
|
|
let mock;
|
|
|
|
beforeEach(() => {
|
|
state = new ResendActivationState();
|
|
|
|
const data = bootstrap();
|
|
context = data.context;
|
|
mock = data.mock;
|
|
});
|
|
|
|
afterEach(() => {
|
|
mock.verify();
|
|
});
|
|
|
|
describe('#enter', () => {
|
|
it('should navigate to /resend-activation', () => {
|
|
context.getState.returns({
|
|
user: {
|
|
isGuest: false,
|
|
isActive: false
|
|
}
|
|
});
|
|
|
|
expectNavigate(mock, '/resend-activation');
|
|
|
|
state.enter(context);
|
|
});
|
|
|
|
it('should navigate to /resend-activation for guests', () => {
|
|
context.getState.returns({
|
|
user: {
|
|
isGuest: true,
|
|
isActive: true
|
|
}
|
|
});
|
|
|
|
expectNavigate(mock, '/resend-activation');
|
|
|
|
state.enter(context);
|
|
});
|
|
|
|
it('should transition to complete state if account activated', () => {
|
|
context.getState.returns({
|
|
user: {
|
|
isGuest: false,
|
|
isActive: true
|
|
}
|
|
});
|
|
|
|
expectState(mock, CompleteState);
|
|
|
|
state.enter(context);
|
|
});
|
|
});
|
|
|
|
describe('#resolve', () => {
|
|
it('should call resendActivation with payload', () => {
|
|
const payload = {email: 'foo@bar.com'};
|
|
|
|
expectRun(
|
|
mock,
|
|
'resendActivation',
|
|
sinon.match.same(payload)
|
|
).returns({then() {}});
|
|
|
|
state.resolve(context, payload);
|
|
});
|
|
|
|
it('should transition to complete state on success', () => {
|
|
const promise = Promise.resolve();
|
|
|
|
mock.expects('run').returns(promise);
|
|
expectState(mock, CompleteState);
|
|
|
|
state.resolve(context);
|
|
|
|
return promise;
|
|
});
|
|
|
|
it('should NOT transition to complete state on fail', () => {
|
|
const promise = Promise.reject();
|
|
|
|
mock.expects('run').returns(promise);
|
|
mock.expects('setState').never();
|
|
|
|
state.resolve(context);
|
|
|
|
return promise.catch(mock.verify.bind(mock));
|
|
});
|
|
});
|
|
|
|
describe('#goBack', () => {
|
|
it('should transition to activation', () => {
|
|
context.getState.returns({
|
|
user: {
|
|
isGuest: false
|
|
}
|
|
});
|
|
|
|
expectState(mock, ActivationState);
|
|
|
|
state.goBack(context);
|
|
});
|
|
|
|
it('should transition to register if guest', () => {
|
|
context.getState.returns({
|
|
user: {
|
|
isGuest: true
|
|
}
|
|
});
|
|
|
|
expectState(mock, RegisterState);
|
|
|
|
state.goBack(context);
|
|
});
|
|
});
|
|
});
|