UI: Added cypress test for Data quality and profiler (#7463)

* added initial cypress test for profiler

* added profiler ingestion workflow

* added data-testid for no profiler placeholder

* added create test suite and test case cypress

* added edit and delete flow for table test case

* added test-suite delete test

* added cypress for add column test case

* added delete and edit cypress test for column test

* fixed delete service cypress issue

* removed only keyword
This commit is contained in:
Shailesh Parmar 2022-09-19 18:43:39 +05:30 committed by GitHub
parent e6de43b081
commit f52f6eccd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 501 additions and 51 deletions

View File

@ -30,7 +30,13 @@ export const verifyResponseStatusCode = (alias, responseCode) => {
cy.wait(alias).its('response.statusCode').should('eq', responseCode);
};
export const handleIngestionRetry = (type, testIngestionButton, count = 0) => {
export const handleIngestionRetry = (
type,
testIngestionButton,
count = 0,
ingestionType = 'metadata'
) => {
const rowIndex = ingestionType === 'metadata' ? 1 : 2;
// ingestions page
const retryTimes = 25;
let retryCount = count;
@ -38,7 +44,7 @@ export const handleIngestionRetry = (type, testIngestionButton, count = 0) => {
cy.get('[data-testid="Ingestions"]').should('be.visible');
cy.get('[data-testid="Ingestions"] >> [data-testid="filter-count"]').should(
'have.text',
1
rowIndex
);
// click on the tab only for the first time
if (retryCount === 0) {
@ -52,25 +58,45 @@ export const handleIngestionRetry = (type, testIngestionButton, count = 0) => {
testIngestionsTab();
retryCount++;
// the latest run should be success
cy.get('.tableBody-row > :nth-child(4)').then(($ingestionStatus) => {
if (
($ingestionStatus.text() === 'Running' ||
$ingestionStatus.text() === 'Queued') &&
retryCount <= retryTimes
) {
// retry after waiting for 20 seconds
cy.wait(20000);
cy.reload();
checkSuccessState();
} else {
cy.get('.tableBody-row > :nth-child(4)').should('have.text', 'Success');
cy.get(`.tableBody > :nth-child(${rowIndex}) > :nth-child(4)`).then(
($ingestionStatus) => {
if (
($ingestionStatus.text() === 'Running' ||
$ingestionStatus.text() === 'Queued') &&
retryCount <= retryTimes
) {
// retry after waiting for 20 seconds
cy.wait(20000);
cy.reload();
checkSuccessState();
} else {
cy.get(`.tableBody > :nth-child(${rowIndex}) > :nth-child(4)`).should(
'have.text',
'Success'
);
}
}
});
);
};
checkSuccessState();
};
export const scheduleIngestion = () => {
// Schedule & Deploy
cy.contains('Schedule for Ingestion').should('be.visible');
cy.get('[data-testid="ingestion-type"]').should('be.visible').select('hour');
cy.get('[data-testid="deploy-button"]').should('be.visible').click();
// check success
cy.get('[data-testid="success-line"]', { timeout: 15000 }).should(
'be.visible'
);
cy.contains('has been created and deployed successfully').should(
'be.visible'
);
};
//Storing the created service name and the type of service for later use
export const testServiceCreationAndIngestion = (
@ -142,19 +168,9 @@ export const testServiceCreationAndIngestion = (
cy.get('[data-testid="submit-btn"]').should('be.visible').click();
}
// Schedule & Deploy
cy.contains('Schedule for Ingestion').should('be.visible');
cy.get('[data-testid="ingestion-type"]').should('be.visible').select('hour');
cy.get('[data-testid="deploy-button"]').should('be.visible').click();
scheduleIngestion();
// check success
cy.get('[data-testid="success-line"]', { timeout: 15000 }).should(
'be.visible'
);
cy.contains(`${serviceName}_metadata`).should('be.visible');
cy.contains('has been created and deployed successfully').should(
'be.visible'
);
// On the Right panel
cy.contains('Metadata Ingestion Added & Deployed Successfully').should(
'be.visible'
@ -216,17 +232,22 @@ export const deleteCreatedService = (typeOfService, service_Name) => {
cy.get('[data-testid="confirmation-text-input"]')
.should('be.visible')
.type('DELETE');
interceptURL('GET', '/api/v1/*', 'homePage');
interceptURL(
'DELETE',
'/api/v1/services/*/*?hardDelete=true&recursive=true',
'deleteService'
);
interceptURL(
'GET',
'/api/v1/services/*/name/*?fields=owner',
'serviceDetails'
);
cy.get('[data-testid="confirm-button"]').should('be.visible').click();
cy.get('.Toastify__toast-body')
.should('exist')
.should('be.visible')
.should('have.text', `${typeOfService} Service deleted successfully!`);
cy.url().should('eq', 'http://localhost:8585/my-data');
verifyResponseStatusCode('@homePage', 200);
verifyResponseStatusCode('@deleteService', 200);
cy.reload();
verifyResponseStatusCode('@serviceDetails', 404);
cy.contains(`instance for ${service_Name} not found`);
//Checking if the service got deleted successfully
//Click on settings page
cy.get('[data-testid="appbar-item-settings"]').should('be.visible').click();
@ -362,10 +383,12 @@ export const visitEntityTab = (id) => {
* Search for entities through the search bar
* @param {string} term Entity name
*/
export const searchEntity = (term) => {
export const searchEntity = (term, suggestionOverly = true) => {
cy.get('[data-testid="searchBox"]').scrollIntoView().should('be.visible');
cy.get('[data-testid="searchBox"]').type(`${term}{enter}`);
cy.get('[data-testid="suggestion-overlay"]').click(1, 1);
if (suggestionOverly) {
cy.get('[data-testid="suggestion-overlay"]').click(1, 1);
}
};
// add new tag to entity and its table

View File

@ -13,6 +13,8 @@
import { uuid } from '../common/common';
const id = uuid();
export const MYDATA_SUMMARY_OPTIONS = {
tables: 'tables',
topics: 'topics',
@ -81,6 +83,7 @@ export const RECENT_SEARCH_TITLE = 'Recent Search Terms';
export const RECENT_VIEW_TITLE = 'Recent Views';
export const MY_DATA_TITLE = 'My Data';
export const FOLLOWING_TITLE = 'Following';
export const TEAM_ENTITY = 'team_entity';
export const NO_SEARCHED_TERMS = 'No searched terms';
export const DELETE_TERM = 'DELETE';
@ -92,6 +95,25 @@ export const TEAMS = {
Data_Platform: { name: 'Data_Platform', users: 16 },
};
export const NEW_TEST_SUITE = {
name: `mysql_matrix`,
description: 'mysql critical matrix',
};
export const NEW_TABLE_TEST_CASE = {
type: 'TableColumnNameToExist',
field: 'id',
description: 'New table test case for TableColumnNameToExist',
};
export const NEW_COLUMN_TEST_CASE = {
column: 'id',
type: 'columnValueLengthsToBeBetween',
min: 3,
max: 6,
description: 'New table test case for columnValueLengthsToBeBetween',
};
export const NEW_TEAM = {
team_1: {
name: 'account',
@ -104,7 +126,7 @@ export const NEW_TEAM = {
description: 'Service department',
},
};
const id = uuid();
export const NEW_USER = {
email: `test_${id}@gmail.com`,
display_name: `Test user ${id}`,

View File

@ -0,0 +1,388 @@
/*
* Copyright 2022 Collate
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/// <reference types="cypress" />
import { descriptionBox, goToAddNewServicePage, handleIngestionRetry, interceptURL, scheduleIngestion, searchEntity, testServiceCreationAndIngestion, uuid, verifyResponseStatusCode } from '../../common/common';
import { DELETE_TERM, NEW_COLUMN_TEST_CASE, NEW_TABLE_TEST_CASE, NEW_TEST_SUITE, SERVICE_TYPE, TEAM_ENTITY } from '../../constants/constants';
const serviceType = 'Mysql';
const serviceName = `${serviceType}-ct-test-${uuid()}`;
const columnTestName = `${NEW_COLUMN_TEST_CASE.column}_${NEW_COLUMN_TEST_CASE.type}`;
const goToProfilerTab = () => {
// click on the 1st result and go to entity details page and follow the entity
interceptURL('GET', '/api/v1/feed*', 'getEntityDetails');
cy.get('[data-testid="table-link"]')
.first()
.contains(TEAM_ENTITY, { matchCase: false })
.click();
verifyResponseStatusCode('@getEntityDetails', 200);
cy.get('[data-testid="Profiler & Data Quality"]')
.should('be.visible')
.click();
};
describe('Data Quality and Profiler should work properly', () => {
it('Add and ingest mysql data', () => {
goToAddNewServicePage(SERVICE_TYPE.Database);
const connectionInput = () => {
cy.get('#root_username').type('openmetadata_user');
cy.get('#root_password').type('openmetadata_password');
cy.get('#root_hostPort').type('mysql:3306');
cy.get('#root_databaseSchema').type('openmetadata_db');
};
const addIngestionInput = () => {
cy.get('[data-testid="schema-filter-pattern-checkbox"]').check();
cy.get('[data-testid="filter-pattern-includes-schema"]')
.should('be.visible')
.type('openmetadata_db');
};
testServiceCreationAndIngestion(
serviceType,
connectionInput,
addIngestionInput,
serviceName
);
});
it('Add Profiler ingestion', () => {
cy.goToHomePage();
searchEntity(TEAM_ENTITY);
goToProfilerTab();
cy.get('[data-testid="no-profiler-placeholder"]').should('be.visible');
cy.clickOnLogo();
cy.get('[data-testid="service-summary"] [data-testid="service"]')
.should('be.visible')
.click();
cy.intercept('/api/v1/services/ingestionPipelines?*').as('ingestionData');
cy.get(`[data-testid="service-name-${serviceName}"]`)
.should('exist')
.click();
cy.get('[data-testid="tabs"]').should('exist');
cy.wait('@ingestionData');
cy.get('[data-testid="Ingestions"]')
.scrollIntoView()
.should('be.visible')
.click();
cy.get('[data-testid="ingestion-details-container"]').should('exist');
cy.get('[data-testid="add-new-ingestion-button"]')
.should('be.visible')
.click();
cy.get('#menu-item-1')
.scrollIntoView()
.contains('Profiler Ingestion')
.click();
cy.get('[data-testid="next-button"]')
.scrollIntoView()
.should('be.visible')
.click();
scheduleIngestion();
// wait for ingestion to run
cy.clock();
cy.wait(10000);
cy.get('[data-testid="view-service-button"]')
.scrollIntoView()
.should('be.visible')
.click();
handleIngestionRetry('database', true, 0, 'profiler');
// check if profiler is ingested properly
searchEntity(TEAM_ENTITY, false);
goToProfilerTab();
cy.get('[data-testid="no-profiler-placeholder"]').should('not.exist');
});
it('Add table test case with new test suite', () => {
cy.goToHomePage();
searchEntity(TEAM_ENTITY);
goToProfilerTab();
cy.get('[data-testid="profiler-add-table-test-btn"]')
.scrollIntoView()
.should('be.visible')
.click();
cy.get('[data-testid="create-new-test-suite"]')
.should('be.visible')
.click();
// creating new test suite
cy.get('[data-testid="new-test-title"]')
.should('be.visible')
.contains('New Test Suite');
cy.get('[data-testid="test-suite-name"]')
.scrollIntoView()
.type(NEW_TEST_SUITE.name);
cy.get(descriptionBox).scrollIntoView().type(NEW_TEST_SUITE.description);
cy.get('[data-testid="next-button"]').scrollIntoView().click();
// creating new test case
cy.get('#tableTestForm_testTypeId').scrollIntoView().click();
cy.contains(NEW_TABLE_TEST_CASE.type).should('be.visible').click();
cy.get('#tableTestForm_params_columnName')
.should('be.visible')
.type(NEW_TABLE_TEST_CASE.field);
cy.get(descriptionBox)
.scrollIntoView()
.type(NEW_TABLE_TEST_CASE.description);
cy.get('[data-testid="submit-test"]')
.scrollIntoView()
.should('be.visible')
.click();
cy.get('[data-testid="success-line"]').should('be.visible');
cy.get('[data-testid="add-ingestion-button"]').should('be.visible').click();
scheduleIngestion();
cy.get('[data-testid="success-line"]').should('be.visible');
// wait for ingestion to run
cy.clock();
cy.wait(10000);
cy.get('[data-testid="view-service-button"]')
.should('be.visible')
.click({ force: true });
cy.contains(`${TEAM_ENTITY}_${NEW_TABLE_TEST_CASE.type}`).should(
'be.visible'
);
});
it('Edit Test Case should work properly', () => {
const testName = `${TEAM_ENTITY}_${NEW_TABLE_TEST_CASE.type}`;
cy.goToHomePage();
searchEntity(TEAM_ENTITY);
goToProfilerTab();
cy.get('[data-testid="profiler-switch"] > :nth-child(2)')
.contains('Data Quality')
.should('be.visible')
.click();
cy.get(`[data-testid="${testName}"]`).should('be.visible');
cy.get(`[data-testid="edit-${testName}"]`).should('be.visible').click();
cy.get('#tableTestForm_params_columnName')
.scrollIntoView()
.clear()
.wait(200)
.type('test');
interceptURL('PATCH', '/api/v1/testCase/*', 'updateTest');
cy.get('.ant-modal-footer').contains('Submit').click();
verifyResponseStatusCode('@updateTest', 200);
cy.get('.Toastify__toast-body')
.contains('Test case updated successfully!')
.should('be.visible')
.wait(200);
cy.get(`[data-testid="${testName}"]`).should('be.visible').click();
cy.contains('columnName: test').scrollIntoView().should('exist');
});
it('Delete Test Case should work properly', () => {
const testName = `${TEAM_ENTITY}_${NEW_TABLE_TEST_CASE.type}`;
cy.goToHomePage();
searchEntity(TEAM_ENTITY);
goToProfilerTab();
cy.get('[data-testid="profiler-switch"] > :nth-child(2)')
.contains('Data Quality')
.should('be.visible')
.click();
cy.get(`[data-testid="${testName}"]`).should('be.visible');
cy.get(`[data-testid="delete-${testName}"]`).should('be.visible').click();
cy.get('[data-testid="hard-delete-option"]').should('be.visible').click();
cy.get('[data-testid="confirmation-text-input"]')
.should('be.visible')
.type(DELETE_TERM);
interceptURL(
'DELETE',
'/api/v1/testCase/*?hardDelete=true&recursive=false',
'deleteTest'
);
interceptURL('GET', '/api/v1/testCase?*', 'getTestCase');
cy.get('[data-testid="confirm-button"]')
.should('be.visible')
.should('not.be.disabled')
.click();
verifyResponseStatusCode('@deleteTest', 200);
verifyResponseStatusCode('@getTestCase', 200);
cy.get('.Toastify__toast-body')
.contains('Test Case deleted successfully!')
.should('be.visible')
.wait(200);
cy.get('table').contains('No Data').should('be.visible');
});
it('Add Column test case should work properly', () => {
cy.goToHomePage();
searchEntity(TEAM_ENTITY);
goToProfilerTab();
cy.get('[data-testid="add-test-id"]')
.scrollIntoView()
.should('be.visible')
.click();
// selecting existing test suite
cy.get('#selectTestSuite_testSuiteId').should('exist').click();
cy.contains(NEW_TEST_SUITE.name).should('be.visible').click();
cy.get('[data-testid="next-button"]')
.scrollIntoView()
.should('be.visible')
.click();
// creating new test case
cy.get('#tableTestForm_testTypeId').scrollIntoView().click();
cy.get(`[title="${NEW_COLUMN_TEST_CASE.type}"]`)
.scrollIntoView()
.should('be.visible')
.click();
cy.get('#tableTestForm_params_minLength')
.scrollIntoView()
.should('be.visible')
.type(NEW_COLUMN_TEST_CASE.min);
cy.get('#tableTestForm_params_maxLength')
.scrollIntoView()
.should('be.visible')
.type(NEW_COLUMN_TEST_CASE.max);
cy.get(descriptionBox)
.scrollIntoView()
.type(NEW_COLUMN_TEST_CASE.description);
cy.get('[data-testid="submit-test"]')
.scrollIntoView()
.should('be.visible')
.click();
cy.get('[data-testid="success-line"]')
.contains(
'has been created successfully. This will be picked up in the next run.'
)
.should('be.visible');
cy.get('[data-testid="view-service-button"]').scrollIntoView().click();
cy.get('[data-row-key="id_columnValueLengthsToBeBetween"]').should(
'be.visible'
);
});
it('Edit column test case should work properly', () => {
cy.goToHomePage();
searchEntity(TEAM_ENTITY);
interceptURL('GET', '/api/v1/testCase?*', 'testCase');
goToProfilerTab();
verifyResponseStatusCode('@testCase', 200);
cy.get('[data-testid="id-test-count"]').should('be.visible').click();
cy.get(`[data-testid="${columnTestName}"]`).should('be.visible');
cy.get(`[data-testid="edit-${columnTestName}"]`)
.should('be.visible')
.click();
cy.get('#tableTestForm_params_minLength')
.scrollIntoView()
.should('be.visible')
.clear()
.type(4);
interceptURL('PATCH', '/api/v1/testCase/*', 'updateTest');
cy.get('.ant-modal-footer').contains('Submit').click();
verifyResponseStatusCode('@updateTest', 200);
cy.get('.Toastify__toast-body')
.contains('Test case updated successfully!')
.should('be.visible')
.wait(200);
cy.get(`[data-testid="${columnTestName}"]`).should('be.visible').click();
cy.contains('minLength: 4').scrollIntoView().should('exist');
});
it('Delete Column Test Case should work properly', () => {
cy.goToHomePage();
searchEntity(TEAM_ENTITY);
interceptURL('GET', '/api/v1/testCase?*', 'testCase');
goToProfilerTab();
verifyResponseStatusCode('@testCase', 200);
cy.get('[data-testid="id-test-count"]').should('be.visible').click();
cy.get(`[data-testid="${columnTestName}"]`).should('be.visible');
cy.get(`[data-testid="delete-${columnTestName}"]`)
.should('be.visible')
.click();
cy.get('[data-testid="hard-delete-option"]').should('be.visible').click();
cy.get('[data-testid="confirmation-text-input"]')
.should('be.visible')
.type(DELETE_TERM);
interceptURL(
'DELETE',
'/api/v1/testCase/*?hardDelete=true&recursive=false',
'deleteTest'
);
interceptURL('GET', '/api/v1/testCase?*', 'getTestCase');
cy.get('[data-testid="confirm-button"]')
.should('be.visible')
.should('not.be.disabled')
.click();
verifyResponseStatusCode('@deleteTest', 200);
verifyResponseStatusCode('@getTestCase', 200);
cy.get('.Toastify__toast-body')
.contains('Test Case deleted successfully!')
.should('be.visible')
.wait(200);
cy.get('table').contains('No Data').should('be.visible');
});
it('Delete Test suite should work properly', () => {
cy.goToHomePage();
cy.get('[data-testid="appbar-item-settings"]').should('be.visible').click();
cy.get('[data-testid="global-setting-left-panel"]')
.contains('Test Suite')
.scrollIntoView()
.should('be.visible')
.click();
cy.get(`[data-row-key="${NEW_TEST_SUITE.name}"] > :nth-child(1) > a`)
.contains(NEW_TEST_SUITE.name)
.should('be.visible')
.click();
cy.get('[data-testid="test-suite-delete"]').should('be.visible').click();
cy.get('[data-testid="hard-delete-option"]').should('be.visible').click();
cy.get('[data-testid="confirmation-text-input"]')
.should('be.visible')
.type(DELETE_TERM);
interceptURL(
'DELETE',
'/api/v1/testSuite/*?hardDelete=true&recursive=true',
'deleteTestSuite'
);
cy.get('[data-testid="confirm-button"]')
.should('be.visible')
.should('not.be.disabled')
.click();
verifyResponseStatusCode('@deleteTestSuite', 200);
cy.get('.Toastify__toast-body')
.contains('Test Suite deleted successfully!')
.should('be.visible')
.wait(200);
});
});

View File

@ -73,11 +73,10 @@ Cypress.Commands.add('clickOnLogo', () => {
cy.get('#openmetadata_logo > [data-testid="image"]').click();
});
const resizeObserverLoopErrRe = /^[^(ResizeObserver loop limit exceeded)]/
const resizeObserverLoopErrRe = /^[^(ResizeObserver loop limit exceeded)]/;
Cypress.on('uncaught:exception', (err) => {
/* returning false here prevents Cypress from failing the test */
if (resizeObserverLoopErrRe.test(err.message)) {
return false
}
})
/* returning false here prevents Cypress from failing the test */
if (resizeObserverLoopErrRe.test(err.message)) {
return false;
}
});

View File

@ -202,6 +202,7 @@ const EditTestCaseModal: React.FC<EditTestCaseModalProps> = ({
form.resetFields();
onCancel();
}}
okText="Submit"
title={`Edit ${testCase?.name}`}
visible={visible}
onCancel={onCancel}

View File

@ -181,7 +181,7 @@ const TestSuiteIngestion: React.FC<TestSuiteIngestionProps> = ({
<Typography.Paragraph
className="tw-heading tw-text-base"
data-testid="header">
Schedule Ingestion
Schedule for Ingestion
</Typography.Paragraph>
</Col>

View File

@ -118,7 +118,9 @@ const SelectTestSuite: React.FC<SelectTestSuiteProps> = ({
{isNewTestSuite ? (
<>
<Typography.Paragraph className="tw-text-base tw-mt-5">
<Typography.Paragraph
className="tw-text-base tw-mt-5"
data-testid="new-test-title">
New Test Suite
</Typography.Paragraph>
<Form.Item
@ -139,7 +141,10 @@ const SelectTestSuite: React.FC<SelectTestSuiteProps> = ({
},
},
]}>
<Input placeholder="Enter test suite name" />
<Input
data-testid="test-suite-name"
placeholder="Enter test suite name"
/>
</Form.Item>
<Form.Item
label="Description:"
@ -168,6 +173,7 @@ const SelectTestSuite: React.FC<SelectTestSuiteProps> = ({
) : (
<Row className="tw-mb-10" justify="center">
<Button
data-testid="create-new-test-suite"
icon={
<SVGIcons
alt="plus"
@ -184,7 +190,7 @@ const SelectTestSuite: React.FC<SelectTestSuiteProps> = ({
<Form.Item noStyle>
<Space className="tw-w-full tw-justify-end" size={16}>
<Button onClick={handleCancelClick}>Cancel</Button>
<Button htmlType="submit" type="primary">
<Button data-testid="next-button" htmlType="submit" type="primary">
Next
</Button>
</Space>

View File

@ -275,7 +275,7 @@ const TestCaseForm: React.FC<TestCaseFormProps> = ({
<Form.Item noStyle>
<Space className="tw-w-full tw-justify-end" size={16}>
<Button onClick={onBack}>Back</Button>
<Button htmlType="submit" type="primary">
<Button data-testid="submit-test" htmlType="submit" type="primary">
Submit
</Button>
</Space>

View File

@ -43,6 +43,7 @@ const TestSuiteScheduler: React.FC<TestSuiteSchedulerProps> = ({
<Space className="tw-w-full tw-justify-end" size={16}>
<Button onClick={onCancel}>Back</Button>
<Button
data-testid="deploy-button"
type="primary"
onClick={() => onSubmit(repeatFrequency || '')}>
Submit

View File

@ -70,6 +70,7 @@ const GlobalSettingLeftPanel = () => {
<LeftPanelCard id="settings">
<Menu
className="global-setting-left-panel"
data-testid="global-setting-left-panel"
items={menuItems}
mode="inline"
selectedKeys={[`${settingCategory}.${tab}`]}

View File

@ -440,6 +440,7 @@ const ProfilerDashboard: React.FC<ProfilerDashboardProps> = ({
<Radio.Group
buttonStyle="solid"
className="profiler-switch"
data-testid="profiler-switch"
optionType="button"
options={tabOptions}
value={activeTab}

View File

@ -74,6 +74,7 @@ const DataQualityTab: React.FC<DataQualityTabProps> = ({
title: 'Name',
dataIndex: 'name',
key: 'name',
render: (name: string) => <span data-testid={name}>{name}</span>,
},
{
title: 'Description',
@ -144,6 +145,7 @@ const DataQualityTab: React.FC<DataQualityTabProps> = ({
title={hasAccess ? 'Delete' : NO_PERMISSION_FOR_ACTION}>
<Button
className="flex-center"
data-testid={`delete-${record.name}`}
disabled={!hasAccess}
icon={
<SVGIcons
@ -165,6 +167,7 @@ const DataQualityTab: React.FC<DataQualityTabProps> = ({
title={hasAccess ? 'Edit' : NO_PERMISSION_FOR_ACTION}>
<Button
className="flex-center"
data-testid={`edit-${record.name}`}
disabled={!hasAccess}
icon={
<SVGIcons

View File

@ -134,6 +134,7 @@ const ColumnProfileTable: FC<ColumnProfileTableProps> = ({
key: 'Tests',
render: (_, record) => (
<Link
data-testid={`${record.name}-test-count`}
to={getProfilerDashboardWithFqnPath(
ProfilerDashboardType.COLUMN,
record.fullyQualifiedName || '',
@ -181,6 +182,7 @@ const ColumnProfileTable: FC<ColumnProfileTableProps> = ({
)}>
<Button
className="flex-center"
data-testid={`add-test-${record.name}`}
disabled={!hasEditAccess}
icon={
<SVGIcons

View File

@ -237,6 +237,7 @@ const TableProfilerV1: FC<TableProfilerProps> = ({ table, permissions }) => {
<Radio.Group
buttonStyle="solid"
className="profiler-switch"
data-testid="profiler-switch"
optionType="button"
options={tabOptions}
value={activeTab}
@ -307,7 +308,9 @@ const TableProfilerV1: FC<TableProfilerProps> = ({ table, permissions }) => {
</Row>
{isUndefined(profile) && (
<div className="tw-border tw-flex tw-items-center tw-border-warning tw-rounded tw-p-2 tw-mb-4">
<div
className="tw-border tw-flex tw-items-center tw-border-warning tw-rounded tw-p-2 tw-mb-4"
data-testid="no-profiler-placeholder">
<NoDataIcon />
<p className="tw-mb-0 tw-ml-2">
Data Profiler is an optional configuration in Ingestion. Please