accounts-frontend/tests/services/authFlow/PermissionsState.test.js
2016-03-21 08:20:31 +02:00

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);
});
});
});