Skip to content

Commit

Permalink
[ML] Memory usage accessibility tests (elastic#198306)
Browse files Browse the repository at this point in the history
## Summary

Adds accessibility tests for the ML memory usage page.
  • Loading branch information
rbrtj authored and nreese committed Nov 1, 2024
1 parent 737dc74 commit 5b3411a
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 2 deletions.
55 changes: 55 additions & 0 deletions x-pack/test/accessibility/apps/group2/ml_memory_usage.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/

import { FtrProviderContext } from '../../ftr_provider_context';

export default function ({ getService }: FtrProviderContext) {
const a11y = getService('a11y');
const ml = getService('ml');

const jobId = 'sample_job';

describe('machine learning memory usage page Accessibility', function () {
before(async () => {
await ml.securityCommon.createMlRoles();
await ml.securityCommon.createMlUsers();
await ml.securityUI.loginAsMlPowerUser();

const jobConfig = ml.commonConfig.getADFqSingleMetricJobConfig(jobId);
await ml.api.createAnomalyDetectionJob(jobConfig);
await ml.api.openAnomalyDetectionJob(jobId);

await ml.navigation.navigateToMl();
await ml.navigation.navigateToMemoryUsage();
});

after(async () => {
await ml.securityCommon.cleanMlUsers();
await ml.securityCommon.cleanMlRoles();

await ml.api.closeAnomalyDetectionJob(jobId);
await ml.api.cleanMlIndices();
});

it('memory usage - nodes tab - page', async () => {
await a11y.testAppSnapshot();
});

it('memory usage - nodes tab - node details and node memory usage', async () => {
await ml.memoryUsage.expandRow();
await a11y.testAppSnapshot();

await ml.memoryUsage.selectNodeExpandedRowTab('mlNodesOverviewPanelMemoryTab');
await a11y.testAppSnapshot();
});

it('memory usage - memory usage tab - page', async () => {
await ml.memoryUsage.selectTab('memory-usage');
await a11y.testAppSnapshot();
});
});
}
7 changes: 5 additions & 2 deletions x-pack/test/functional/services/ml/memory_usage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
import expect from '@kbn/expect';
import { FtrProviderContext } from '../../ftr_provider_context';

type NodeExpandedRowTab = 'mlNodesOverviewPanelMemoryTab' | 'mlNodesOverviewPanelDetailsTab';
type PageTab = 'memory-usage' | 'nodes';

export function MachineLearningMemoryUsageProvider({ getService }: FtrProviderContext) {
const testSubjects = getService('testSubjects');
const comboBox = getService('comboBox');
Expand All @@ -22,7 +25,7 @@ export function MachineLearningMemoryUsageProvider({ getService }: FtrProviderCo
await testSubjects.existOrFail(`mlNodesOverviewPanel ${tabName}Tab`);
},

async selectTab(tabName: string) {
async selectTab(tabName: PageTab) {
await testSubjects.click(`mlMemoryUsageTab-${tabName}`);
},

Expand Down Expand Up @@ -79,7 +82,7 @@ export function MachineLearningMemoryUsageProvider({ getService }: FtrProviderCo
await testSubjects.setValue('mlNodesTableSearchInput', nodeId);
},

async selectNodeExpandedRowTab(tabName: string) {
async selectNodeExpandedRowTab(tabName: NodeExpandedRowTab) {
await testSubjects.click(tabName);
},

Expand Down

0 comments on commit 5b3411a

Please sign in to comment.