mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-06 08:11:20 +05:30
57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
import PermissionsState from 'services/authFlow/PermissionsState';
|
|
import CompleteState from 'services/authFlow/CompleteState';
|
|
|
|
import { bootstrap, expectNavigate } from './helpers';
|
|
|
|
describe('PermissionsState', () => {
|
|
let state;
|
|
let context;
|
|
let mock;
|
|
|
|
beforeEach(() => {
|
|
state = new PermissionsState();
|
|
|
|
const data = bootstrap();
|
|
context = data.context;
|
|
mock = data.mock;
|
|
});
|
|
|
|
afterEach(() => {
|
|
mock.verify();
|
|
});
|
|
|
|
describe('#enter', () => {
|
|
it('should navigate to /oauth/permissions', () => {
|
|
expectNavigate(mock, '/oauth/permissions');
|
|
|
|
state.enter(context);
|
|
});
|
|
});
|
|
|
|
describe('#resolve', () => {
|
|
it('should transition to complete state with acceptance', () => {
|
|
mock.expects('setState').once().withExactArgs(
|
|
sinon.match.instanceOf(CompleteState)
|
|
.and(
|
|
sinon.match.has('isPermissionsAccepted', true)
|
|
)
|
|
);
|
|
|
|
state.resolve(context);
|
|
});
|
|
});
|
|
|
|
describe('#reject', () => {
|
|
it('should transition to complete state without acceptance', () => {
|
|
mock.expects('setState').once().withExactArgs(
|
|
sinon.match.instanceOf(CompleteState)
|
|
.and(
|
|
sinon.match.has('isPermissionsAccepted', false)
|
|
)
|
|
);
|
|
|
|
state.reject(context);
|
|
});
|
|
});
|
|
});
|