Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/registry/list/components/app_spec.js')
-rw-r--r--spec/frontend/registry/list/components/app_spec.js149
1 files changed, 0 insertions, 149 deletions
diff --git a/spec/frontend/registry/list/components/app_spec.js b/spec/frontend/registry/list/components/app_spec.js
deleted file mode 100644
index c2c220b2cd2..00000000000
--- a/spec/frontend/registry/list/components/app_spec.js
+++ /dev/null
@@ -1,149 +0,0 @@
-import { mount } from '@vue/test-utils';
-import { TEST_HOST } from 'helpers/test_constants';
-import registry from '~/registry/list/components/app.vue';
-import { reposServerResponse, parsedReposServerResponse } from '../mock_data';
-
-describe('Registry List', () => {
- let wrapper;
-
- const findCollapsibleContainer = () => wrapper.findAll({ name: 'CollapsibeContainerRegisty' });
- const findProjectEmptyState = () => wrapper.find({ name: 'ProjectEmptyState' });
- const findGroupEmptyState = () => wrapper.find({ name: 'GroupEmptyState' });
- const findSpinner = () => wrapper.find('.gl-spinner');
- const findCharacterErrorText = () => wrapper.find('.js-character-error-text');
-
- const propsData = {
- endpoint: `${TEST_HOST}/foo`,
- helpPagePath: 'foo',
- noContainersImage: 'foo',
- containersErrorImage: 'foo',
- repositoryUrl: 'foo',
- registryHostUrlWithPort: 'foo',
- personalAccessTokensHelpLink: 'foo',
- twoFactorAuthHelpLink: 'foo',
- };
-
- const setMainEndpoint = jest.fn();
- const fetchRepos = jest.fn();
- const setIsDeleteDisabled = jest.fn();
-
- const methods = {
- setMainEndpoint,
- fetchRepos,
- setIsDeleteDisabled,
- };
-
- beforeEach(() => {
- wrapper = mount(registry, {
- propsData,
- computed: {
- repos() {
- return parsedReposServerResponse;
- },
- },
- methods,
- });
- });
-
- afterEach(() => {
- wrapper.destroy();
- });
-
- describe('with data', () => {
- it('should render a list of CollapsibeContainerRegisty', () => {
- const containers = findCollapsibleContainer();
- expect(wrapper.vm.repos.length).toEqual(reposServerResponse.length);
- expect(containers.length).toEqual(reposServerResponse.length);
- });
- });
-
- describe('without data', () => {
- beforeEach(() => {
- wrapper = mount(registry, {
- propsData,
- computed: {
- repos() {
- return [];
- },
- },
- methods,
- });
- });
-
- it('should render project empty message', () => {
- const projectEmptyState = findProjectEmptyState();
- expect(projectEmptyState.exists()).toBe(true);
- });
- });
-
- describe('while loading data', () => {
- beforeEach(() => {
- wrapper = mount(registry, {
- propsData,
- computed: {
- repos() {
- return [];
- },
- isLoading() {
- return true;
- },
- },
- methods,
- });
- });
-
- it('should render a loading spinner', () => {
- const spinner = findSpinner();
- expect(spinner.exists()).toBe(true);
- });
- });
-
- describe('invalid characters in path', () => {
- beforeEach(() => {
- wrapper = mount(registry, {
- propsData: {
- ...propsData,
- characterError: true,
- },
- computed: {
- repos() {
- return [];
- },
- },
- methods,
- });
- });
-
- it('should render invalid characters error message', () => {
- const characterErrorText = findCharacterErrorText();
- expect(characterErrorText.text()).toEqual(
- 'We are having trouble connecting to Docker, which could be due to an issue with your project name or path. More Information',
- );
- });
- });
-
- describe('with groupId set', () => {
- const isGroupPage = true;
-
- beforeEach(() => {
- wrapper = mount(registry, {
- propsData: {
- ...propsData,
- endpoint: '',
- isGroupPage,
- },
- methods,
- });
- });
-
- it('call the right vuex setters', () => {
- expect(methods.setMainEndpoint).toHaveBeenLastCalledWith('');
- expect(methods.setIsDeleteDisabled).toHaveBeenLastCalledWith(true);
- });
-
- it('should render groups empty message', () => {
- const groupEmptyState = findGroupEmptyState(wrapper);
- expect(groupEmptyState.exists()).toBe(true);
- });
- });
-});