2016-03-21 11:46:37 +05:30
|
|
|
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', () => {
|
2016-08-27 20:06:33 +05:30
|
|
|
context.getRequest.returns({
|
|
|
|
path: '/'
|
|
|
|
});
|
|
|
|
|
|
|
|
expectNavigate(mock, '/oauth/permissions', {
|
|
|
|
replace: false
|
|
|
|
});
|
|
|
|
|
|
|
|
state.enter(context);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should replace instead of push if current request contains oauth2', () => {
|
|
|
|
context.getRequest.returns({
|
|
|
|
path: '/oauth2'
|
|
|
|
});
|
|
|
|
|
|
|
|
expectNavigate(mock, '/oauth/permissions', {
|
|
|
|
replace: true
|
|
|
|
});
|
2016-03-21 11:46:37 +05:30
|
|
|
|
|
|
|
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);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|