debian-mirror-gitlab/spec/frontend/repository/components/table/row_spec.js
2023-06-20 00:43:36 +05:30

297 lines
7.1 KiB
JavaScript

import Vue from 'vue';
import VueApollo from 'vue-apollo';
import { GlBadge, GlLink, GlIcon, GlIntersectionObserver } from '@gitlab/ui';
import { shallowMount, RouterLinkStub } from '@vue/test-utils';
import refQuery from '~/repository/queries/ref.query.graphql';
import { createMockDirective, getBinding } from 'helpers/vue_mock_directive';
import createMockApollo from 'helpers/mock_apollo_helper';
import TableRow from '~/repository/components/table/row.vue';
import FileIcon from '~/vue_shared/components/file_icon.vue';
import { FILE_SYMLINK_MODE } from '~/vue_shared/constants';
import { ROW_APPEAR_DELAY } from '~/repository/constants';
const COMMIT_MOCK = { lockLabel: 'Locked by Root', committedDate: '2019-01-01' };
let wrapper;
let $router;
const createMockApolloProvider = (mockData) => {
Vue.use(VueApollo);
const apolloProver = createMockApollo([]);
apolloProver.clients.defaultClient.cache.writeQuery({ query: refQuery, data: { ...mockData } });
return apolloProver;
};
function factory({ mockData = { ref: 'main', escapedRef: 'main' }, propsData = {} } = {}) {
$router = {
push: jest.fn(),
};
wrapper = shallowMount(TableRow, {
apolloProvider: createMockApolloProvider(mockData),
propsData: {
id: '1',
sha: '0as4k',
commitInfo: COMMIT_MOCK,
name: 'name',
currentPath: 'gitlab-org/gitlab-ce',
projectPath: 'gitlab-org/gitlab-ce',
url: `https://test.com`,
totalEntries: 10,
rowNumber: 123,
path: 'gitlab-org/gitlab-ce',
type: 'tree',
...propsData,
},
directives: {
GlHoverLoad: createMockDirective('gl-hover-load'),
},
mocks: {
$router,
},
stubs: {
RouterLink: RouterLinkStub,
},
});
}
describe('Repository table row component', () => {
const findIcon = () => wrapper.findComponent(GlIcon);
const findFileIcon = () => wrapper.findComponent(FileIcon);
const findBadge = () => wrapper.findComponent(GlBadge);
const findRouterLink = () => wrapper.findComponent(RouterLinkStub);
const findIntersectionObserver = () => wrapper.findComponent(GlIntersectionObserver);
it('renders table row', () => {
factory({
propsData: {
id: '1',
sha: '123',
path: 'test',
type: 'file',
currentPath: '/',
},
});
expect(wrapper.element).toMatchSnapshot();
});
it('renders a symlink table row', () => {
factory({
propsData: {
id: '1',
sha: '123',
path: 'test',
type: 'blob',
currentPath: '/',
mode: FILE_SYMLINK_MODE,
},
});
expect(wrapper.element).toMatchSnapshot();
});
it('renders table row for path with special character', () => {
factory({
propsData: {
id: '1',
sha: '123',
path: 'test$/test',
type: 'file',
currentPath: 'test$',
},
});
expect(wrapper.element).toMatchSnapshot();
});
it('renders a gl-hover-load directive', () => {
factory({
propsData: {
id: '1',
sha: '123',
path: 'test',
type: 'blob',
currentPath: '/',
},
});
const hoverLoadDirective = getBinding(findRouterLink().element, 'gl-hover-load');
expect(hoverLoadDirective).not.toBeUndefined();
expect(hoverLoadDirective.value).toBeInstanceOf(Function);
});
it.each`
type | component | componentName
${'tree'} | ${RouterLinkStub} | ${'RouterLink'}
${'blob'} | ${RouterLinkStub} | ${'RouterLink'}
${'commit'} | ${'a'} | ${'hyperlink'}
`('renders a $componentName for type $type', ({ type, component }) => {
factory({
propsData: {
id: '1',
sha: '123',
path: 'test',
type,
currentPath: '/',
},
});
expect(wrapper.findComponent(component).exists()).toBe(true);
});
it.each`
path
${'test#'}
${'Änderungen'}
`('renders link for $path', ({ path }) => {
factory({
propsData: {
id: '1',
sha: '123',
path,
type: 'tree',
currentPath: '/',
},
});
expect(wrapper.findComponent({ ref: 'link' }).props('to')).toEqual({
path: `/-/tree/main/${encodeURIComponent(path)}`,
});
});
it('renders link for directory with hash', () => {
factory({
propsData: {
id: '1',
sha: '123',
path: 'test#',
type: 'tree',
currentPath: '/',
},
});
expect(wrapper.find('.tree-item-link').props('to')).toEqual({ path: '/-/tree/main/test%23' });
});
it('renders commit ID for submodule', () => {
factory({
propsData: {
id: '1',
sha: '123',
path: 'test',
type: 'commit',
currentPath: '/',
},
});
expect(wrapper.find('.commit-sha').text()).toContain('1');
});
it('renders link with href', () => {
factory({
propsData: {
id: '1',
sha: '123',
path: 'test',
type: 'blob',
url: 'https://test.com',
currentPath: '/',
},
});
expect(wrapper.find('a').attributes('href')).toEqual('https://test.com');
});
it('renders LFS badge', () => {
factory({
propsData: {
id: '1',
sha: '123',
path: 'test',
type: 'commit',
currentPath: '/',
lfsOid: '1',
},
});
expect(findBadge().exists()).toBe(true);
});
it('renders commit and web links with href for submodule', () => {
factory({
propsData: {
id: '1',
sha: '123',
path: 'test',
type: 'commit',
url: 'https://test.com',
submoduleTreeUrl: 'https://test.com/commit',
currentPath: '/',
},
});
expect(wrapper.find('a').attributes('href')).toEqual('https://test.com');
expect(wrapper.findComponent(GlLink).attributes('href')).toEqual('https://test.com/commit');
});
it('renders lock icon', () => {
factory({
propsData: {
id: '1',
sha: '123',
path: 'test',
type: 'tree',
currentPath: '/',
},
});
expect(findIcon().exists()).toBe(true);
expect(findIcon().props('name')).toBe('lock');
});
it('renders loading icon when path is loading', () => {
factory({
propsData: {
id: '1',
sha: '1',
path: 'test',
type: 'tree',
currentPath: '/',
loadingPath: 'test',
},
});
expect(findFileIcon().props('loading')).toBe(true);
});
describe('row visibility', () => {
beforeEach(() => {
factory({
propsData: {
id: '1',
sha: '1',
path: 'test',
type: 'tree',
currentPath: '/',
commitInfo: null,
},
});
});
afterAll(() => jest.useRealTimers());
it('emits a `row-appear` event', () => {
const setTimeoutSpy = jest.spyOn(global, 'setTimeout');
findIntersectionObserver().vm.$emit('appear');
jest.runAllTimers();
expect(setTimeoutSpy).toHaveBeenCalledTimes(1);
expect(setTimeoutSpy).toHaveBeenLastCalledWith(expect.any(Function), ROW_APPEAR_DELAY);
expect(wrapper.emitted('row-appear')).toEqual([[123]]);
});
});
});