1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00
awx/__tests__/App.test.jsx

73 lines
2.6 KiB
React
Raw Normal View History

import React from 'react';
2018-12-03 21:17:53 +03:00
import { HashRouter as Router } from 'react-router-dom';
import { shallow, mount } from 'enzyme';
import App from '../src/App';
import api from '../src/api';
2018-11-13 17:53:36 +03:00
import { API_LOGOUT } from '../src/endpoints';
2018-11-13 17:46:43 +03:00
import Dashboard from '../src/pages/Dashboard';
import Login from '../src/pages/Login';
2018-11-06 20:25:36 +03:00
import { asyncFlush } from '../jest.setup';
const DEFAULT_ACTIVE_GROUP = 'views_group';
const DEFAULT_ACTIVE_ITEM = 'views_group_dashboard';
describe('<App />', () => {
test('renders without crashing', () => {
const appWrapper = shallow(<App />);
expect(appWrapper.length).toBe(1);
});
test('renders login page when not authenticated', () => {
api.isAuthenticated = jest.fn();
api.isAuthenticated.mockReturnValue(false);
2018-12-03 21:17:53 +03:00
const appWrapper = mount(<Router><App /></Router>);
2018-10-25 04:15:08 +03:00
const login = appWrapper.find(Login);
expect(login.length).toBe(1);
const dashboard = appWrapper.find(Dashboard);
expect(dashboard.length).toBe(0);
});
test('renders dashboard when authenticated', () => {
api.isAuthenticated = jest.fn();
api.isAuthenticated.mockReturnValue(true);
2018-12-03 21:17:53 +03:00
const appWrapper = mount(<Router><App /></Router>);
2018-10-25 04:15:08 +03:00
const dashboard = appWrapper.find(Dashboard);
expect(dashboard.length).toBe(1);
const login = appWrapper.find(Login);
expect(login.length).toBe(0);
});
test('onNavToggle sets state.isNavOpen to opposite', () => {
2018-12-05 15:56:53 +03:00
const appWrapper = shallow(<App.WrappedComponent />);
expect(appWrapper.state().isNavOpen).toBe(true);
appWrapper.instance().onNavToggle();
expect(appWrapper.state().isNavOpen).toBe(false);
});
test('onLogoClick sets selected nav back to defaults', () => {
2018-12-05 15:56:53 +03:00
const appWrapper = shallow(<App.WrappedComponent />);
appWrapper.setState({ activeGroup: 'foo', activeItem: 'bar' });
expect(appWrapper.state().activeItem).toBe('bar');
expect(appWrapper.state().activeGroup).toBe('foo');
appWrapper.instance().onLogoClick();
expect(appWrapper.state().activeGroup).toBe(DEFAULT_ACTIVE_GROUP);
});
2018-11-06 20:25:36 +03:00
test('api.logout called from logout button', async () => {
2018-11-13 17:53:36 +03:00
api.get = jest.fn().mockImplementation(() => Promise.resolve({}));
2018-12-05 15:56:53 +03:00
const appWrapper = shallow(<App.WrappedComponent />);
appWrapper.instance().onDevLogout();
2018-11-06 20:25:36 +03:00
appWrapper.setState({ activeGroup: 'foo', activeItem: 'bar' });
2018-11-13 17:53:36 +03:00
expect(api.get).toHaveBeenCalledTimes(1);
expect(api.get).toHaveBeenCalledWith(API_LOGOUT);
2018-12-05 15:56:53 +03:00
await asyncFlush();
expect(appWrapper.state().activeItem).toBe(DEFAULT_ACTIVE_ITEM);
2018-11-06 20:25:36 +03:00
expect(appWrapper.state().activeGroup).toBe(DEFAULT_ACTIVE_GROUP);
});
});