242 lines
7.3 KiB
JavaScript
242 lines
7.3 KiB
JavaScript
import MockAdapter from 'axios-mock-adapter';
|
|
import Vue from 'vue';
|
|
import Vuex from 'vuex';
|
|
import { useLocalStorageSpy } from 'helpers/local_storage_helper';
|
|
import { mountExtended } from 'helpers/vue_test_utils_helper';
|
|
import waitForPromises from 'helpers/wait_for_promises';
|
|
import App from '~/frequent_items/components/app.vue';
|
|
import FrequentItemsList from '~/frequent_items/components/frequent_items_list.vue';
|
|
import { FREQUENT_ITEMS, HOUR_IN_MS } from '~/frequent_items/constants';
|
|
import eventHub from '~/frequent_items/event_hub';
|
|
import { createStore } from '~/frequent_items/store';
|
|
import { getTopFrequentItems } from '~/frequent_items/utils';
|
|
import axios from '~/lib/utils/axios_utils';
|
|
import { currentSession, mockFrequentProjects, mockSearchedProjects } from '../mock_data';
|
|
|
|
Vue.use(Vuex);
|
|
|
|
useLocalStorageSpy();
|
|
|
|
const TEST_NAMESPACE = 'projects';
|
|
const TEST_VUEX_MODULE = 'frequentProjects';
|
|
const TEST_PROJECT = currentSession[TEST_NAMESPACE].project;
|
|
const TEST_STORAGE_KEY = currentSession[TEST_NAMESPACE].storageKey;
|
|
|
|
describe('Frequent Items App Component', () => {
|
|
let wrapper;
|
|
let mock;
|
|
let store;
|
|
|
|
const createComponent = ({ currentItem = null } = {}) => {
|
|
const session = currentSession[TEST_NAMESPACE];
|
|
gon.api_version = session.apiVersion;
|
|
|
|
wrapper = mountExtended(App, {
|
|
store,
|
|
propsData: {
|
|
namespace: TEST_NAMESPACE,
|
|
currentUserName: session.username,
|
|
currentItem: currentItem || session.project,
|
|
},
|
|
provide: {
|
|
vuexModule: TEST_VUEX_MODULE,
|
|
},
|
|
});
|
|
};
|
|
|
|
const triggerDropdownOpen = () => eventHub.$emit(`${TEST_NAMESPACE}-dropdownOpen`);
|
|
const getStoredProjects = () => JSON.parse(localStorage.getItem(TEST_STORAGE_KEY));
|
|
const findSearchInput = () => wrapper.findByTestId('frequent-items-search-input');
|
|
const findLoading = () => wrapper.findByTestId('loading');
|
|
const findSectionHeader = () => wrapper.findByTestId('header');
|
|
const findFrequentItemsList = () => wrapper.findComponent(FrequentItemsList);
|
|
const findFrequentItems = () => findFrequentItemsList().findAll('li');
|
|
const setSearch = (search) => {
|
|
const searchInput = wrapper.find('input');
|
|
|
|
searchInput.setValue(search);
|
|
};
|
|
|
|
beforeEach(() => {
|
|
mock = new MockAdapter(axios);
|
|
store = createStore();
|
|
});
|
|
|
|
afterEach(() => {
|
|
mock.restore();
|
|
wrapper.destroy();
|
|
});
|
|
|
|
describe('default', () => {
|
|
beforeEach(() => {
|
|
jest.spyOn(store, 'dispatch');
|
|
|
|
createComponent();
|
|
});
|
|
|
|
it('should fetch frequent items', () => {
|
|
triggerDropdownOpen();
|
|
|
|
expect(store.dispatch).toHaveBeenCalledWith(`${TEST_VUEX_MODULE}/fetchFrequentItems`);
|
|
});
|
|
|
|
it('should not fetch frequent items if detroyed', () => {
|
|
wrapper.destroy();
|
|
triggerDropdownOpen();
|
|
|
|
expect(store.dispatch).not.toHaveBeenCalledWith(`${TEST_VUEX_MODULE}/fetchFrequentItems`);
|
|
});
|
|
|
|
it('should render search input', () => {
|
|
expect(findSearchInput().exists()).toBe(true);
|
|
});
|
|
|
|
it('should render loading animation', async () => {
|
|
triggerDropdownOpen();
|
|
store.state[TEST_VUEX_MODULE].isLoadingItems = true;
|
|
|
|
await wrapper.vm.$nextTick();
|
|
|
|
const loading = findLoading();
|
|
|
|
expect(loading.exists()).toBe(true);
|
|
expect(loading.find('[aria-label="Loading projects"]').exists()).toBe(true);
|
|
});
|
|
|
|
it('should render frequent projects list header', () => {
|
|
const sectionHeader = findSectionHeader();
|
|
|
|
expect(sectionHeader.exists()).toBe(true);
|
|
expect(sectionHeader.text()).toBe('Frequently visited');
|
|
});
|
|
|
|
it('should render frequent projects list', async () => {
|
|
const expectedResult = getTopFrequentItems(mockFrequentProjects);
|
|
localStorage.setItem(TEST_STORAGE_KEY, JSON.stringify(mockFrequentProjects));
|
|
|
|
expect(findFrequentItems().length).toBe(1);
|
|
|
|
triggerDropdownOpen();
|
|
await wrapper.vm.$nextTick();
|
|
|
|
expect(findFrequentItems().length).toBe(expectedResult.length);
|
|
expect(findFrequentItemsList().props()).toEqual({
|
|
items: expectedResult,
|
|
namespace: TEST_NAMESPACE,
|
|
hasSearchQuery: false,
|
|
isFetchFailed: false,
|
|
matcher: '',
|
|
});
|
|
});
|
|
|
|
it('should render searched projects list', async () => {
|
|
mock.onGet(/\/api\/v4\/projects.json(.*)$/).replyOnce(200, mockSearchedProjects.data);
|
|
|
|
setSearch('gitlab');
|
|
await wrapper.vm.$nextTick();
|
|
|
|
expect(findLoading().exists()).toBe(true);
|
|
|
|
await waitForPromises();
|
|
|
|
expect(findFrequentItems().length).toBe(mockSearchedProjects.data.length);
|
|
expect(findFrequentItemsList().props()).toEqual(
|
|
expect.objectContaining({
|
|
items: mockSearchedProjects.data.map(
|
|
({ avatar_url, web_url, name_with_namespace, ...item }) => ({
|
|
...item,
|
|
avatarUrl: avatar_url,
|
|
webUrl: web_url,
|
|
namespace: name_with_namespace,
|
|
}),
|
|
),
|
|
namespace: TEST_NAMESPACE,
|
|
hasSearchQuery: true,
|
|
isFetchFailed: false,
|
|
matcher: 'gitlab',
|
|
}),
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('logging', () => {
|
|
it('when created, it should create a project storage entry and adds a project', () => {
|
|
createComponent();
|
|
|
|
expect(getStoredProjects()).toEqual([
|
|
expect.objectContaining({
|
|
frequency: 1,
|
|
lastAccessedOn: Date.now(),
|
|
}),
|
|
]);
|
|
});
|
|
|
|
describe('when created multiple times', () => {
|
|
beforeEach(() => {
|
|
createComponent();
|
|
wrapper.destroy();
|
|
createComponent();
|
|
wrapper.destroy();
|
|
});
|
|
|
|
it('should only log once', () => {
|
|
expect(getStoredProjects()).toEqual([
|
|
expect.objectContaining({
|
|
lastAccessedOn: Date.now(),
|
|
frequency: 1,
|
|
}),
|
|
]);
|
|
});
|
|
|
|
it('should increase frequency, when created an hour later', () => {
|
|
const hourLater = Date.now() + HOUR_IN_MS + 1;
|
|
|
|
jest.spyOn(Date, 'now').mockReturnValue(hourLater);
|
|
createComponent({ currentItem: { ...TEST_PROJECT, lastAccessedOn: hourLater } });
|
|
|
|
expect(getStoredProjects()).toEqual([
|
|
expect.objectContaining({
|
|
lastAccessedOn: hourLater,
|
|
frequency: 2,
|
|
}),
|
|
]);
|
|
});
|
|
});
|
|
|
|
it('should always update project metadata', () => {
|
|
const oldProject = {
|
|
...TEST_PROJECT,
|
|
};
|
|
|
|
const newProject = {
|
|
...oldProject,
|
|
name: 'New Name',
|
|
avatarUrl: 'new/avatar.png',
|
|
namespace: 'New / Namespace',
|
|
webUrl: 'http://localhost/new/web/url',
|
|
};
|
|
|
|
createComponent({ currentItem: oldProject });
|
|
wrapper.destroy();
|
|
expect(getStoredProjects()).toEqual([expect.objectContaining(oldProject)]);
|
|
|
|
createComponent({ currentItem: newProject });
|
|
wrapper.destroy();
|
|
|
|
expect(getStoredProjects()).toEqual([expect.objectContaining(newProject)]);
|
|
});
|
|
|
|
it('should not add more than 20 projects in store', () => {
|
|
for (let id = 0; id < FREQUENT_ITEMS.MAX_COUNT + 10; id += 1) {
|
|
const project = {
|
|
...TEST_PROJECT,
|
|
id,
|
|
};
|
|
createComponent({ currentItem: project });
|
|
wrapper.destroy();
|
|
}
|
|
|
|
expect(getStoredProjects().length).toBe(FREQUENT_ITEMS.MAX_COUNT);
|
|
});
|
|
});
|
|
});
|