2019-04-05 02:23:40 +07:00
|
|
|
import React from 'react';
|
|
|
|
import { mount } from 'enzyme';
|
|
|
|
|
2019-10-08 03:19:18 +07:00
|
|
|
import storage from '../utils/storage';
|
2019-06-20 19:37:28 +07:00
|
|
|
import { generateTokenWithTimeRange } from '../../jest/unit/components/__mocks__/token';
|
2019-04-05 02:23:40 +07:00
|
|
|
|
2019-10-08 03:19:18 +07:00
|
|
|
import App from './App';
|
|
|
|
|
2019-06-20 19:37:28 +07:00
|
|
|
jest.mock('../utils/storage', () => {
|
2019-04-05 02:23:40 +07:00
|
|
|
class LocalStorageMock {
|
2019-06-24 02:50:30 +07:00
|
|
|
private store: object;
|
2019-06-20 19:37:28 +07:00
|
|
|
public constructor() {
|
2019-04-05 02:23:40 +07:00
|
|
|
this.store = {};
|
|
|
|
}
|
2019-06-20 19:37:28 +07:00
|
|
|
public clear(): void {
|
2019-04-05 02:23:40 +07:00
|
|
|
this.store = {};
|
|
|
|
}
|
2019-06-20 19:37:28 +07:00
|
|
|
public getItem(key): unknown {
|
2019-04-05 02:23:40 +07:00
|
|
|
return this.store[key] || null;
|
|
|
|
}
|
2019-06-20 19:37:28 +07:00
|
|
|
public setItem(key, value): void {
|
2019-04-05 02:23:40 +07:00
|
|
|
this.store[key] = value.toString();
|
|
|
|
}
|
2019-06-20 19:37:28 +07:00
|
|
|
public removeItem(key): void {
|
2019-04-05 02:23:40 +07:00
|
|
|
delete this.store[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return new LocalStorageMock();
|
|
|
|
});
|
|
|
|
|
2019-06-20 19:37:28 +07:00
|
|
|
jest.mock('../utils/api', () => ({
|
|
|
|
request: require('../../jest/unit/components/__mocks__/api').default.request,
|
2019-04-05 02:23:40 +07:00
|
|
|
}));
|
|
|
|
|
|
|
|
describe('App', () => {
|
|
|
|
let wrapper;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
wrapper = mount(<App />);
|
|
|
|
});
|
2019-05-02 02:02:46 +07:00
|
|
|
|
2019-04-05 02:23:40 +07:00
|
|
|
test('toggleLoginModal: should toggle the value in state', () => {
|
|
|
|
const { handleToggleLoginModal } = wrapper.instance();
|
|
|
|
expect(wrapper.state().showLoginModal).toBeFalsy();
|
|
|
|
handleToggleLoginModal();
|
|
|
|
expect(wrapper.state('showLoginModal')).toBeTruthy();
|
2019-06-26 05:29:53 +07:00
|
|
|
expect(wrapper.state('error')).toEqual(undefined);
|
2019-04-05 02:23:40 +07:00
|
|
|
});
|
|
|
|
|
|
|
|
test('isUserAlreadyLoggedIn: token already available in storage', async () => {
|
|
|
|
storage.setItem('username', 'verdaccio');
|
|
|
|
storage.setItem('token', generateTokenWithTimeRange(24));
|
|
|
|
const { isUserAlreadyLoggedIn } = wrapper.instance();
|
|
|
|
|
|
|
|
isUserAlreadyLoggedIn();
|
|
|
|
|
|
|
|
expect(wrapper.state('user').username).toEqual('verdaccio');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('handleLogout - logouts the user and clear localstorage', async () => {
|
|
|
|
const { handleLogout } = wrapper.instance();
|
|
|
|
storage.setItem('username', 'verdaccio');
|
|
|
|
storage.setItem('token', 'xxxx.TOKEN.xxxx');
|
|
|
|
|
|
|
|
await handleLogout();
|
|
|
|
expect(wrapper.state('user')).toEqual({});
|
|
|
|
expect(wrapper.state('isUserLoggedIn')).toBeFalsy();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('handleDoLogin - login the user successfully', async () => {
|
|
|
|
const { handleDoLogin } = wrapper.instance();
|
|
|
|
await handleDoLogin('sam', '1234');
|
|
|
|
const result = {
|
|
|
|
username: 'sam',
|
|
|
|
};
|
|
|
|
expect(wrapper.state('isUserLoggedIn')).toBeTruthy();
|
|
|
|
expect(wrapper.state('showLoginModal')).toBeFalsy();
|
|
|
|
expect(storage.getItem('username')).toEqual('sam');
|
|
|
|
expect(storage.getItem('token')).toEqual('TEST_TOKEN');
|
|
|
|
expect(wrapper.state('user')).toEqual(result);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('handleDoLogin - authentication failure', async () => {
|
|
|
|
const { handleDoLogin } = wrapper.instance();
|
|
|
|
await handleDoLogin('sam', '12345');
|
|
|
|
const result = {
|
|
|
|
description: 'bad username/password, access denied',
|
|
|
|
title: 'Unable to login',
|
2019-06-20 19:37:28 +07:00
|
|
|
type: 'error',
|
2019-04-05 02:23:40 +07:00
|
|
|
};
|
|
|
|
expect(wrapper.state('user')).toEqual({});
|
|
|
|
expect(wrapper.state('error')).toEqual(result);
|
|
|
|
});
|
|
|
|
});
|