Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ftr] skip tests that fail on MKI build #197 #168225

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ export default function ({ getService }: FtrProviderContext) {
const esClient = getService('es');
const objectRemover = new ObjectRemover(supertest);

describe('Alert documents', () => {
describe('Alert documents', function () {
// Timeout of 360000ms exceeded
this.tags(['skipOnMKI']);
const RULE_TYPE_ID = '.es-query';
const ALERT_INDEX = '.alerts-stack.alerts-default';
let ruleId: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ export default function ({ getService }: FtrProviderContext) {
const esClient = getService('es');
const esDeleteAllIndices = getService('esDeleteAllIndices');

describe('Alerting rules', () => {
describe('Alerting rules', function () {
// Timeout of 360000ms exceeded
this.tags(['skipOnMKI']);
const RULE_TYPE_ID = '.es-query';
const ALERT_ACTION_INDEX = 'alert-action-es-query';
let actionId: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
const es = getService('es');
const log = getService('log');

describe('API keys', () => {
describe('API keys', function () {
// TimeoutError: Waiting for element to be located By(css selector, [data-test-subj="apiKeysCreatePromptButton"]) Wait timed out after 10028ms
this.tags(['failsOnMKI']);
before(async () => {
await pageObjects.svlCommonPage.login();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ export default ({ getPageObject, getService }: FtrProviderContext) => {
const retry = getService('retry');

describe('Configure Case', function () {
// Error: timed out waiting for assertRadioGroupValue: Expected the radio group value to equal "close-by-pushing"
this.tags(['skipOnMKI']);
before(async () => {
await svlCommonPage.login();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const noIntegrationsTitle = 'No integrations found';
const noUncategorizedTitle = 'No data streams found';

describe('Dataset Selector', () => {
describe('Dataset Selector', function () {
// TimeoutError: Waiting for element to be located By(css selector, [data-test-subj="datasetSelectorPopoverButton"])
this.tags(['skipOnMKI']);
before(async () => {
await PageObjects.svlCommonPage.login();
await PageObjects.observabilityLogExplorer.removeInstalledPackages();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ export default ({ getPageObject, getService }: FtrProviderContext) => {
const svlCommonNavigation = getPageObject('svlCommonNavigation');
const svlCommonPage = getPageObject('svlCommonPage');

describe('Case View', () => {
describe('Case View', function () {
// security_exception: action [indices:data/write/delete/byquery] is unauthorized for user [elastic] with effective roles [superuser] on restricted indices [.kibana_alerting_cases], this action is granted by the index privileges [delete,write,all]
this.tags(['failsOnMKI']);
before(async () => {
await svlCommonPage.login();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const PageObjects = getPageObjects(['svlCommonPage']);
const adJobId = 'fq_single_permission';

describe('Anomaly detection jobs list', () => {
describe('Anomaly detection jobs list', function () {
// Error: Failed to delete all indices with pattern [.ml-*]
this.tags(['failsOnMKI']);
before(async () => {
await PageObjects.svlCommonPage.login();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const PageObjects = getPageObjects(['svlCommonPage']);
const dfaJobId = 'iph_outlier_permission';

describe('Data frame analytics jobs list', () => {
describe('Data frame analytics jobs list', function () {
// Error: Failed to delete all indices with pattern [.ml-*]
this.tags(['failsOnMKI']);
before(async () => {
await PageObjects.svlCommonPage.login();

Expand Down