UI: stabilize flaky ns test (#25488)

* Add test waiter for namespace fetch

* Add waitfor, unskip test

* remove comment
This commit is contained in:
Chelsea Shaw
2024-02-16 12:10:07 -06:00
committed by GitHub
parent 36c24e76f5
commit d9a6fe5fe6
2 changed files with 10 additions and 8 deletions

View File

@@ -7,7 +7,9 @@ import Service, { service } from '@ember/service';
import { task } from 'ember-concurrency';
import { getRelativePath } from 'core/utils/sanitize-path';
import { tracked } from '@glimmer/tracking';
import { buildWaiter } from '@ember/test-waiters';
const waiter = buildWaiter('namespaces');
const ROOT_NAMESPACE = '';
export default class NamespaceService extends Service {
@service store;
@@ -51,6 +53,7 @@ export default class NamespaceService extends Service {
@task({ drop: true })
*findNamespacesForUser() {
const waiterToken = waiter.beginAsync();
// uses the adapter and the raw response here since
// models get wiped when switching namespaces and we
// want to keep track of these separately
@@ -78,6 +81,8 @@ export default class NamespaceService extends Service {
});
} catch (e) {
//do nothing here
} finally {
waiter.endAsync(waiterToken);
}
}

View File

@@ -3,8 +3,8 @@
* SPDX-License-Identifier: BUSL-1.1
*/
import { click, settled, visit, fillIn, currentURL } from '@ember/test-helpers';
import { module, test, skip } from 'qunit';
import { click, settled, visit, fillIn, currentURL, waitFor } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
import { runCmd, createNS } from 'vault/tests/helpers/commands';
import authPage from 'vault/tests/pages/auth';
@@ -28,11 +28,7 @@ module('Acceptance | Enterprise | namespaces', function (hooks) {
assert.dom('[data-test-namespace-link]').doesNotExist('Additional namespace have been cleared');
});
// this test is flaky and is intentionally being skipped for now
// after seeing it fail both in CI and locally, an attempt at stabilizing it was made in https://github.com/hashicorp/vault/pull/23867
// this seemed to make it consistently pass locally while continuing to fail sporadically in CI
// that fix attempt was reverted in favor of skipping until it can be reworked to reliably pass
skip('it shows nested namespaces if you log in with a namespace starting with a /', async function (assert) {
test('it shows nested namespaces if you log in with a namespace starting with a /', async function (assert) {
assert.expect(5);
await click('[data-test-namespace-toggle]');
@@ -46,6 +42,7 @@ module('Acceptance | Enterprise | namespaces', function (hooks) {
const url = `/vault/secrets?namespace=${targetNamespace}`;
// this is usually triggered when creating a ns in the form -- trigger a reload of the namespaces manually
await click('[data-test-refresh-namespaces]');
await waitFor(`[data-test-namespace-link="${targetNamespace}"]`);
// check that the single namespace "beep" or "boop" not "beep/boop" shows in the toggle display
assert
.dom(`[data-test-namespace-link="${targetNamespace}"]`)
@@ -61,7 +58,7 @@ module('Acceptance | Enterprise | namespaces', function (hooks) {
await authPage.tokenInput('root').submit();
await settled();
await click('[data-test-namespace-toggle]');
await waitFor('[data-test-current-namespace]');
assert.dom('[data-test-current-namespace]').hasText('/beep/boop/', 'current namespace begins with a /');
assert
.dom('[data-test-namespace-link="beep/boop/bop"]')