debian-mirror-gitlab/spec/frontend/code_navigation/components/popover_spec.js

136 lines
3.3 KiB
JavaScript
Raw Normal View History

2020-03-13 15:44:24 +05:30
import { shallowMount } from '@vue/test-utils';
2020-06-23 00:09:42 +05:30
import DocLine from '~/code_navigation/components/doc_line.vue';
2021-03-11 19:13:27 +05:30
import Popover from '~/code_navigation/components/popover.vue';
2020-03-13 15:44:24 +05:30
2020-05-24 23:13:21 +05:30
const DEFINITION_PATH_PREFIX = 'http://gitlab.com';
2020-04-22 19:07:51 +05:30
2020-03-13 15:44:24 +05:30
const MOCK_CODE_DATA = Object.freeze({
hover: [
{
language: 'javascript',
2020-06-23 00:09:42 +05:30
tokens: [
[
{
class: 'k',
value: 'function',
},
{
value: ' main() {',
},
],
[
{
value: '}',
},
],
],
2020-03-13 15:44:24 +05:30
},
],
2020-07-28 23:09:34 +05:30
definition_path: 'test.js',
definitionLineNumber: 20,
2020-03-13 15:44:24 +05:30
});
const MOCK_DOCS_DATA = Object.freeze({
hover: [
{
language: null,
value: 'console.log',
},
],
2020-05-24 23:13:21 +05:30
definition_path: 'test.js#L20',
2020-03-13 15:44:24 +05:30
});
2020-07-28 23:09:34 +05:30
const MOCK_DATA_WITH_REFERENCES = Object.freeze({
hover: [
{
language: null,
value: 'console.log',
},
],
references: [{ path: 'index.js' }, { path: 'app.js' }],
definition_path: 'test.js#L20',
});
2020-03-13 15:44:24 +05:30
let wrapper;
2020-05-24 23:13:21 +05:30
function factory({ position, data, definitionPathPrefix, blobPath = 'index.js' }) {
wrapper = shallowMount(Popover, {
propsData: { position, data, definitionPathPrefix, blobPath },
2020-06-23 00:09:42 +05:30
stubs: { DocLine },
2020-05-24 23:13:21 +05:30
});
2020-03-13 15:44:24 +05:30
}
describe('Code navigation popover component', () => {
afterEach(() => {
wrapper.destroy();
});
it('renders popover', () => {
2020-05-24 23:13:21 +05:30
factory({
position: { x: 0, y: 0, height: 0 },
data: MOCK_CODE_DATA,
definitionPathPrefix: DEFINITION_PATH_PREFIX,
});
2020-03-13 15:44:24 +05:30
expect(wrapper.element).toMatchSnapshot();
});
2020-07-28 23:09:34 +05:30
it('srender references tab with empty text when no references exist', () => {
factory({
position: { x: 0, y: 0, height: 0 },
data: MOCK_CODE_DATA,
definitionPathPrefix: DEFINITION_PATH_PREFIX,
});
expect(wrapper.find('[data-testid="references-tab"]').text()).toContain('No references found');
});
2020-05-24 23:13:21 +05:30
it('renders link with hash to current file', () => {
factory({
position: { x: 0, y: 0, height: 0 },
data: MOCK_CODE_DATA,
definitionPathPrefix: DEFINITION_PATH_PREFIX,
blobPath: 'test.js',
});
expect(wrapper.find('[data-testid="go-to-definition-btn"]').attributes('href')).toBe('#L20');
});
2020-07-28 23:09:34 +05:30
it('renders list of references', () => {
factory({
position: { x: 0, y: 0, height: 0 },
data: MOCK_DATA_WITH_REFERENCES,
definitionPathPrefix: DEFINITION_PATH_PREFIX,
});
expect(wrapper.find('[data-testid="references-tab"]').exists()).toBe(true);
expect(wrapper.findAll('[data-testid="reference-link"]').length).toBe(2);
});
2020-03-13 15:44:24 +05:30
describe('code output', () => {
it('renders code output', () => {
2020-05-24 23:13:21 +05:30
factory({
position: { x: 0, y: 0, height: 0 },
data: MOCK_CODE_DATA,
definitionPathPrefix: DEFINITION_PATH_PREFIX,
});
2020-03-13 15:44:24 +05:30
expect(wrapper.find({ ref: 'code-output' }).exists()).toBe(true);
expect(wrapper.find({ ref: 'doc-output' }).exists()).toBe(false);
});
});
describe('documentation output', () => {
it('renders code output', () => {
2020-05-24 23:13:21 +05:30
factory({
position: { x: 0, y: 0, height: 0 },
data: MOCK_DOCS_DATA,
definitionPathPrefix: DEFINITION_PATH_PREFIX,
});
2020-03-13 15:44:24 +05:30
expect(wrapper.find({ ref: 'code-output' }).exists()).toBe(false);
expect(wrapper.find({ ref: 'doc-output' }).exists()).toBe(true);
});
});
});