mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
99c555bf59
Adds proper typescript support. Created reusable commands Added README for cypress test Refactored tests Fixed bugs as I found them. <!-- Thanks for creating a PR! To make it easier for reviewers and everyone else to understand what your changes relate to, please add some relevant content to the headings below. Feel free to ignore or delete sections that you don't think are relevant. Thank you! ❤️ --> ## About the changes <!-- Describe the changes introduced. What are they and why are they being introduced? Feel free to also add screenshots or steps to view the changes if they're visual. --> <!-- Does it close an issue? Multiple? --> Closes # <!-- (For internal contributors): Does it relate to an issue on public roadmap? --> <!-- Relates to [roadmap](https://github.com/orgs/Unleash/projects/10) item: # --> ### Important files <!-- PRs can contain a lot of changes, but not all changes are equally important. Where should a reviewer start looking to get an overview of the changes? Are any files particularly important? --> ## Discussion points <!-- Anything about the PR you'd like to discuss before it gets merged? Got any questions or doubts? --> --------- Signed-off-by: andreas-unleash <andreas@getunleash.ai>
141 lines
4.8 KiB
TypeScript
141 lines
4.8 KiB
TypeScript
///<reference path="../../global.d.ts" />
|
|
import {
|
|
BATCH_ACTIONS_BAR,
|
|
BATCH_SELECT,
|
|
BATCH_SELECTED_COUNT,
|
|
MORE_BATCH_ACTIONS,
|
|
SEARCH_INPUT,
|
|
//@ts-ignore
|
|
} from '../../../src/utils/testIds';
|
|
|
|
const randomId = String(Math.random()).split('.')[1];
|
|
const featureTogglePrefix = 'unleash-e2e-project-overview';
|
|
const featureToggleName = `${featureTogglePrefix}-${randomId}`;
|
|
const baseUrl = Cypress.config().baseUrl;
|
|
const selectAll = '[title="Toggle All Rows Selected"] input[type="checkbox"]';
|
|
|
|
describe('project overview', () => {
|
|
before(() => {
|
|
cy.runBefore();
|
|
});
|
|
|
|
after(() => {
|
|
cy.request({
|
|
method: 'DELETE',
|
|
url: `${baseUrl}/api/admin/features/${featureToggleName}-A`,
|
|
failOnStatusCode: false,
|
|
});
|
|
cy.request({
|
|
method: 'DELETE',
|
|
url: `${baseUrl}/api/admin/features/${featureToggleName}-B`,
|
|
failOnStatusCode: false,
|
|
});
|
|
cy.request({
|
|
method: 'DELETE',
|
|
url: `${baseUrl}/api/admin/archive/${featureToggleName}-A`,
|
|
});
|
|
cy.request({
|
|
method: 'DELETE',
|
|
url: `${baseUrl}/api/admin/archive/${featureToggleName}-B`,
|
|
});
|
|
});
|
|
|
|
it('loads the table', () => {
|
|
cy.login_UI();
|
|
cy.createFeature_API(`${featureToggleName}-A`);
|
|
cy.createFeature_API(`${featureToggleName}-B`);
|
|
cy.visit('/projects/default');
|
|
|
|
// Use search to filter feature toggles and check that the feature toggle is listed in the table.
|
|
cy.get("[data-testid='SEARCH_INPUT']").click().type(featureToggleName);
|
|
cy.get('table').contains('td', `${featureToggleName}-A`);
|
|
cy.get('table tbody tr').should('have.length', 2);
|
|
});
|
|
|
|
it('can select and deselect feature toggles', () => {
|
|
cy.login_UI();
|
|
cy.visit('/projects/default');
|
|
cy.viewport(1920, 1080);
|
|
cy.get("[data-testid='SEARCH_INPUT']").click().type(featureToggleName);
|
|
cy.get('table tbody tr').should('have.length', 2);
|
|
const counter = `[data-testid="${BATCH_SELECTED_COUNT}"]`;
|
|
|
|
cy.get(counter).should('not.exist');
|
|
cy.get(selectAll).click();
|
|
cy.get(counter).contains('2');
|
|
cy.get(selectAll).click();
|
|
cy.get(counter).should('not.exist');
|
|
|
|
cy.get('table td')
|
|
.contains(`${featureToggleName}-A`)
|
|
.closest('tr')
|
|
.find(`[data-testid="${BATCH_SELECT}"] input[type="checkbox"]`)
|
|
.click();
|
|
cy.get(counter).contains('1');
|
|
|
|
cy.get('table td')
|
|
.contains(`${featureToggleName}-A`)
|
|
.closest('tr')
|
|
.find(`[data-testid="${BATCH_SELECT}"] input[type="checkbox"]`)
|
|
.click();
|
|
cy.get(counter).should('not.exist');
|
|
cy.get('table td')
|
|
.contains(`${featureToggleName}-B`)
|
|
.closest('tr')
|
|
.find(`[data-testid="${BATCH_SELECT}"] input[type="checkbox"]`)
|
|
.click();
|
|
cy.get(counter).contains('1');
|
|
|
|
cy.get('table td')
|
|
.contains(`${featureToggleName}-A`)
|
|
.closest('tr')
|
|
.find(`[data-testid="${BATCH_SELECT}"] input[type="checkbox"]`)
|
|
.click();
|
|
cy.get(counter).contains('2');
|
|
cy.get('table td')
|
|
.contains(`${featureToggleName}-B`)
|
|
.closest('tr')
|
|
.find(`[data-testid="${BATCH_SELECT}"] input[type="checkbox"]`)
|
|
.click();
|
|
cy.get(counter).contains('1');
|
|
});
|
|
|
|
it('can mark selected togggles as stale', () => {
|
|
cy.login_UI();
|
|
cy.visit('/projects/default');
|
|
cy.viewport(1920, 1080);
|
|
cy.get(`[data-testid='${SEARCH_INPUT}']`)
|
|
.click()
|
|
.type(featureToggleName);
|
|
cy.get('table tbody tr').should('have.length', 2);
|
|
cy.get(selectAll).click();
|
|
|
|
cy.get(`[data-testid="${MORE_BATCH_ACTIONS}"]`).click();
|
|
|
|
cy.get('[role="menuitem"]').contains('Mark as stale').click();
|
|
|
|
cy.visit(`/projects/default/features/${featureToggleName}-A`);
|
|
cy.get('[title="Feature toggle is deprecated."]').should('exist');
|
|
});
|
|
|
|
it('can archive selected togggles', () => {
|
|
cy.login_UI();
|
|
cy.visit('/projects/default');
|
|
cy.viewport(1920, 1080);
|
|
cy.get(`[data-testid='${SEARCH_INPUT}']`)
|
|
.click()
|
|
.type(featureToggleName);
|
|
cy.get('table tbody tr').should('have.length', 2);
|
|
cy.get(selectAll).click();
|
|
|
|
cy.get(`[data-testid=${BATCH_ACTIONS_BAR}] button`)
|
|
.contains('Archive')
|
|
.click();
|
|
cy.get('p')
|
|
.contains('Are you sure you want to archive 2 feature toggles?')
|
|
.should('exist');
|
|
cy.get('button').contains('Archive toggles').click();
|
|
cy.get('table tbody tr').should('have.length', 0);
|
|
});
|
|
});
|