319 lines
9.7 KiB
JavaScript
319 lines
9.7 KiB
JavaScript
import { GlAlert, GlEmptyState, GlLoadingIcon } from '@gitlab/ui';
|
|
import { mount } from '@vue/test-utils';
|
|
import Vue, { nextTick } from 'vue';
|
|
import MockAdapter from 'axios-mock-adapter';
|
|
import Vuex from 'vuex';
|
|
import waitForPromises from 'helpers/wait_for_promises';
|
|
import { TEST_HOST } from 'spec/test_constants';
|
|
import ConfigureFeatureFlagsModal from '~/feature_flags/components/configure_feature_flags_modal.vue';
|
|
import EmptyState from '~/feature_flags/components/empty_state.vue';
|
|
import FeatureFlagsComponent from '~/feature_flags/components/feature_flags.vue';
|
|
import FeatureFlagsTable from '~/feature_flags/components/feature_flags_table.vue';
|
|
import createStore from '~/feature_flags/store/index';
|
|
import axios from '~/lib/utils/axios_utils';
|
|
import TablePagination from '~/vue_shared/components/pagination/table_pagination.vue';
|
|
import { getRequestData } from '../mock_data';
|
|
|
|
Vue.use(Vuex);
|
|
|
|
describe('Feature flags', () => {
|
|
const mockData = {
|
|
canUserConfigure: true,
|
|
csrfToken: 'testToken',
|
|
featureFlagsClientExampleHelpPagePath: '/help/feature-flags#client-example',
|
|
featureFlagsClientLibrariesHelpPagePath: '/help/feature-flags#unleash-clients',
|
|
featureFlagsHelpPagePath: '/help/feature-flags',
|
|
featureFlagsLimit: '200',
|
|
featureFlagsLimitExceeded: false,
|
|
newFeatureFlagPath: 'feature-flags/new',
|
|
userListPath: '/user-list',
|
|
unleashApiUrl: `${TEST_HOST}/api/unleash`,
|
|
projectName: 'fakeProjectName',
|
|
errorStateSvgPath: '/assets/illustrations/feature_flag.svg',
|
|
};
|
|
|
|
const mockState = {
|
|
endpoint: `${TEST_HOST}/endpoint.json`,
|
|
projectId: '8',
|
|
unleashApiInstanceId: 'oP6sCNRqtRHmpy1gw2-F',
|
|
};
|
|
|
|
let wrapper;
|
|
let mock;
|
|
let store;
|
|
|
|
const factory = (provide = mockData, fn = mount) => {
|
|
store = createStore(mockState);
|
|
wrapper = fn(FeatureFlagsComponent, {
|
|
store,
|
|
provide,
|
|
stubs: {
|
|
EmptyState,
|
|
},
|
|
});
|
|
};
|
|
|
|
const configureButton = () => wrapper.find('[data-testid="ff-configure-button"]');
|
|
const newButton = () => wrapper.find('[data-testid="ff-new-button"]');
|
|
const userListButton = () => wrapper.find('[data-testid="ff-user-list-button"]');
|
|
const limitAlert = () => wrapper.findComponent(GlAlert);
|
|
|
|
beforeEach(() => {
|
|
mock = new MockAdapter(axios);
|
|
});
|
|
|
|
afterEach(() => {
|
|
mock.restore();
|
|
wrapper.destroy();
|
|
wrapper = null;
|
|
});
|
|
|
|
describe('when limit exceeded', () => {
|
|
const provideData = { ...mockData, featureFlagsLimitExceeded: true };
|
|
|
|
beforeEach(() => {
|
|
mock
|
|
.onGet(`${TEST_HOST}/endpoint.json`, { params: { page: '1' } })
|
|
.reply(200, getRequestData, {});
|
|
factory(provideData);
|
|
return waitForPromises();
|
|
});
|
|
|
|
it('makes the new feature flag button do nothing if clicked', () => {
|
|
expect(newButton().exists()).toBe(true);
|
|
expect(newButton().props('disabled')).toBe(false);
|
|
expect(newButton().props('href')).toBe(undefined);
|
|
});
|
|
|
|
it('shows a feature flags limit reached alert', () => {
|
|
expect(limitAlert().exists()).toBe(true);
|
|
expect(limitAlert().text()).toContain('Feature flags limit reached');
|
|
});
|
|
|
|
describe('when the alert is dismissed', () => {
|
|
beforeEach(async () => {
|
|
await limitAlert().vm.$emit('dismiss');
|
|
});
|
|
|
|
it('hides the alert', async () => {
|
|
expect(limitAlert().exists()).toBe(false);
|
|
});
|
|
|
|
it('re-shows the alert if the new feature flag button is clicked', async () => {
|
|
await newButton().vm.$emit('click');
|
|
|
|
expect(limitAlert().exists()).toBe(true);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('without permissions', () => {
|
|
const provideData = {
|
|
...mockData,
|
|
canUserConfigure: false,
|
|
canUserRotateToken: false,
|
|
newFeatureFlagPath: null,
|
|
userListPath: null,
|
|
};
|
|
|
|
beforeEach(() => {
|
|
mock
|
|
.onGet(`${TEST_HOST}/endpoint.json`, { params: { page: '1' } })
|
|
.reply(200, getRequestData, {});
|
|
factory(provideData);
|
|
return waitForPromises();
|
|
});
|
|
|
|
it('does not render configure button', () => {
|
|
expect(configureButton().exists()).toBe(false);
|
|
});
|
|
|
|
it('does not render new feature flag button', () => {
|
|
expect(newButton().exists()).toBe(false);
|
|
});
|
|
|
|
it('does not render view user list button', () => {
|
|
expect(userListButton().exists()).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe('loading state', () => {
|
|
it('renders a loading icon', () => {
|
|
mock
|
|
.onGet(`${TEST_HOST}/endpoint.json`, { params: { page: '1' } })
|
|
.replyOnce(200, getRequestData, {});
|
|
|
|
factory();
|
|
|
|
const loadingElement = wrapper.findComponent(GlLoadingIcon);
|
|
|
|
expect(loadingElement.exists()).toBe(true);
|
|
expect(loadingElement.props('label')).toEqual('Loading feature flags');
|
|
});
|
|
});
|
|
|
|
describe('successful request', () => {
|
|
describe('without feature flags', () => {
|
|
let emptyState;
|
|
|
|
beforeEach(async () => {
|
|
mock.onGet(mockState.endpoint, { params: { page: '1' } }).reply(
|
|
200,
|
|
{
|
|
feature_flags: [],
|
|
count: {
|
|
all: 0,
|
|
enabled: 0,
|
|
disabled: 0,
|
|
},
|
|
},
|
|
{},
|
|
);
|
|
|
|
factory();
|
|
await waitForPromises();
|
|
await nextTick();
|
|
|
|
emptyState = wrapper.findComponent(GlEmptyState);
|
|
});
|
|
|
|
it('should render the empty state', async () => {
|
|
expect(emptyState.exists()).toBe(true);
|
|
});
|
|
|
|
it('renders configure button', () => {
|
|
expect(configureButton().exists()).toBe(true);
|
|
});
|
|
|
|
it('renders new feature flag button', () => {
|
|
expect(newButton().exists()).toBe(true);
|
|
});
|
|
|
|
it('renders view user list button', () => {
|
|
expect(userListButton().exists()).toBe(true);
|
|
expect(userListButton().attributes('href')).toBe(mockData.userListPath);
|
|
});
|
|
|
|
describe('in feature flags tab', () => {
|
|
it('renders generic title', () => {
|
|
expect(emptyState.props('title')).toEqual('Get started with feature flags');
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('with paginated feature flags', () => {
|
|
beforeEach(() => {
|
|
mock.onGet(mockState.endpoint, { params: { page: '1' } }).replyOnce(200, getRequestData, {
|
|
'x-next-page': '2',
|
|
'x-page': '1',
|
|
'X-Per-Page': '2',
|
|
'X-Prev-Page': '',
|
|
'X-TOTAL': '37',
|
|
'X-Total-Pages': '5',
|
|
});
|
|
|
|
factory();
|
|
jest.spyOn(store, 'dispatch');
|
|
return waitForPromises();
|
|
});
|
|
|
|
it('should render a table with feature flags', () => {
|
|
const table = wrapper.findComponent(FeatureFlagsTable);
|
|
expect(table.exists()).toBe(true);
|
|
expect(table.props('featureFlags')).toEqual(
|
|
expect.arrayContaining([
|
|
expect.objectContaining({
|
|
name: getRequestData.feature_flags[0].name,
|
|
description: getRequestData.feature_flags[0].description,
|
|
}),
|
|
]),
|
|
);
|
|
});
|
|
|
|
it('should toggle a flag when receiving the toggle-flag event', () => {
|
|
const table = wrapper.findComponent(FeatureFlagsTable);
|
|
|
|
const [flag] = table.props('featureFlags');
|
|
table.vm.$emit('toggle-flag', flag);
|
|
|
|
expect(store.dispatch).toHaveBeenCalledWith('toggleFeatureFlag', flag);
|
|
});
|
|
|
|
it('renders configure button', () => {
|
|
expect(configureButton().exists()).toBe(true);
|
|
});
|
|
|
|
it('renders new feature flag button', () => {
|
|
expect(newButton().exists()).toBe(true);
|
|
});
|
|
|
|
it('renders view user list button', () => {
|
|
expect(userListButton().exists()).toBe(true);
|
|
expect(userListButton().attributes('href')).toBe(mockData.userListPath);
|
|
});
|
|
|
|
describe('pagination', () => {
|
|
it('should render pagination', () => {
|
|
expect(wrapper.findComponent(TablePagination).exists()).toBe(true);
|
|
});
|
|
|
|
it('should make an API request when page is clicked', () => {
|
|
jest.spyOn(wrapper.vm, 'updateFeatureFlagOptions');
|
|
wrapper.findComponent(TablePagination).vm.change(4);
|
|
|
|
expect(wrapper.vm.updateFeatureFlagOptions).toHaveBeenCalledWith({
|
|
page: '4',
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('unsuccessful request', () => {
|
|
beforeEach(() => {
|
|
mock.onGet(mockState.endpoint, { params: { page: '1' } }).replyOnce(500, {});
|
|
|
|
factory();
|
|
return waitForPromises();
|
|
});
|
|
|
|
it('should render error state', () => {
|
|
const emptyState = wrapper.findComponent(GlEmptyState);
|
|
expect(emptyState.props('title')).toEqual('There was an error fetching the feature flags.');
|
|
expect(emptyState.props('description')).toEqual(
|
|
'Try again in a few moments or contact your support team.',
|
|
);
|
|
});
|
|
|
|
it('renders configure button', () => {
|
|
expect(configureButton().exists()).toBe(true);
|
|
});
|
|
|
|
it('renders new feature flag button', () => {
|
|
expect(newButton().exists()).toBe(true);
|
|
});
|
|
|
|
it('renders view user list button', () => {
|
|
expect(userListButton().exists()).toBe(true);
|
|
expect(userListButton().attributes('href')).toBe(mockData.userListPath);
|
|
});
|
|
});
|
|
|
|
describe('rotate instance id', () => {
|
|
beforeEach(() => {
|
|
mock
|
|
.onGet(`${TEST_HOST}/endpoint.json`, { params: { page: '1' } })
|
|
.reply(200, getRequestData, {});
|
|
factory();
|
|
return waitForPromises();
|
|
});
|
|
|
|
it('should fire the rotate action when a `token` event is received', () => {
|
|
const actionSpy = jest.spyOn(wrapper.vm, 'rotateInstanceId');
|
|
const modal = wrapper.findComponent(ConfigureFeatureFlagsModal);
|
|
modal.vm.$emit('token');
|
|
|
|
expect(actionSpy).toHaveBeenCalled();
|
|
});
|
|
});
|
|
});
|