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/ml/model_registry/routes/models/index/components/ml_models_index_spec.js')
-rw-r--r--spec/frontend/ml/model_registry/routes/models/index/components/ml_models_index_spec.js68
1 files changed, 46 insertions, 22 deletions
diff --git a/spec/frontend/ml/model_registry/routes/models/index/components/ml_models_index_spec.js b/spec/frontend/ml/model_registry/routes/models/index/components/ml_models_index_spec.js
index d1715ccd8f1..c1b9aef9634 100644
--- a/spec/frontend/ml/model_registry/routes/models/index/components/ml_models_index_spec.js
+++ b/spec/frontend/ml/model_registry/routes/models/index/components/ml_models_index_spec.js
@@ -1,39 +1,63 @@
-import { GlLink } from '@gitlab/ui';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import MlModelsIndexApp from '~/ml/model_registry/routes/models/index';
-import { TITLE_LABEL } from '~/ml/model_registry/routes/models/index/translations';
-import { mockModels } from './mock_data';
+import ModelRow from '~/ml/model_registry/routes/models/index/components/model_row.vue';
+import { TITLE_LABEL, NO_MODELS_LABEL } from '~/ml/model_registry/routes/models/index/translations';
+import Pagination from '~/vue_shared/components/incubation/pagination.vue';
+import { mockModels, startCursor, defaultPageInfo } from './mock_data';
let wrapper;
-const createWrapper = (models = mockModels) => {
- wrapper = shallowMountExtended(MlModelsIndexApp, {
- propsData: { models },
- });
+const createWrapper = (propsData = { models: mockModels, pageInfo: defaultPageInfo }) => {
+ wrapper = shallowMountExtended(MlModelsIndexApp, { propsData });
};
-const findModelLink = (index) => wrapper.findAllComponents(GlLink).at(index);
-const modelLinkText = (index) => findModelLink(index).text();
-const modelLinkHref = (index) => findModelLink(index).attributes('href');
+const findModelRow = (index) => wrapper.findAllComponents(ModelRow).at(index);
+const findPagination = () => wrapper.findComponent(Pagination);
const findTitle = () => wrapper.findByText(TITLE_LABEL);
+const findEmptyLabel = () => wrapper.findByText(NO_MODELS_LABEL);
describe('MlModelsIndex', () => {
- beforeEach(() => {
- createWrapper();
- });
+ describe('empty state', () => {
+ beforeEach(() => createWrapper({ models: [], pageInfo: defaultPageInfo }));
+
+ it('displays empty state when no experiment', () => {
+ expect(findEmptyLabel().exists()).toBe(true);
+ });
- describe('header', () => {
- it('displays the title', () => {
- expect(findTitle().exists()).toBe(true);
+ it('does not show pagination', () => {
+ expect(findPagination().exists()).toBe(false);
});
});
- describe('model list', () => {
- it('displays the models', () => {
- expect(modelLinkHref(0)).toBe(mockModels[0].path);
- expect(modelLinkText(0)).toBe(`${mockModels[0].name} / ${mockModels[0].version}`);
+ describe('with data', () => {
+ beforeEach(() => {
+ createWrapper();
+ });
+
+ it('does not show empty state', () => {
+ expect(findEmptyLabel().exists()).toBe(false);
+ });
+
+ describe('header', () => {
+ it('displays the title', () => {
+ expect(findTitle().exists()).toBe(true);
+ });
+ });
+
+ describe('model list', () => {
+ it('displays the models', () => {
+ expect(findModelRow(0).props('model')).toMatchObject(mockModels[0]);
+ expect(findModelRow(1).props('model')).toMatchObject(mockModels[1]);
+ });
+ });
+
+ describe('pagination', () => {
+ it('should show', () => {
+ expect(findPagination().exists()).toBe(true);
+ });
- expect(modelLinkHref(1)).toBe(mockModels[1].path);
- expect(modelLinkText(1)).toBe(`${mockModels[1].name} / ${mockModels[1].version}`);
+ it('passes pagination to pagination component', () => {
+ expect(findPagination().props('startCursor')).toBe(startCursor);
+ });
});
});
});