vault/ui/tests/integration/components/replication-page-test.js
Vault Automation b057aac746
[VAULT-43339] 1/2 Chore update TS (#13050) (#13105)
* Initial ts updgrade

* Migrate linked-block to ts to squash ts errors

* [VAULT-43339] 2/2 Update vault-reporting and add ember-intl (#13062)

* Update vault-reporting and add ember-intl

* Add setupIntl for rendering tests

Co-authored-by: Jim Wright <jim.wright@hashicorp.com>
2026-03-17 15:52:40 -07:00

74 lines
2.4 KiB
JavaScript

/**
* Copyright IBM Corp. 2016, 2025
* SPDX-License-Identifier: BUSL-1.1
*/
import { module, test } from 'qunit';
import { setupRenderingTest } from 'vault/tests/helpers';
import { render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
import { setupMirage } from 'ember-cli-mirage/test-support';
import { GENERAL } from 'vault/tests/helpers/general-selectors';
module('Integration | Component | replication-page', function (hooks) {
setupRenderingTest(hooks);
setupMirage(hooks);
hooks.beforeEach(function () {
this.model = {
replicationMode: 'dr',
dr: { mode: 'primary' },
performance: { mode: 'primary' },
replicationAttrs: {
mode: 'secondary',
clusterId: '12ab',
replicationDisabled: false,
},
};
});
test('it renders', async function (assert) {
await render(hbs`<ReplicationPage @model={{this.model}} />`);
assert.dom('[data-test-replication-page]').exists();
assert.dom('[data-test-layout-loading]').doesNotExist();
});
test('it renders loader when either clusterId is unknown or mode is bootstrapping', async function (assert) {
this.model.replicationAttrs.clusterId = '';
await render(hbs`<ReplicationPage @model={{this.model}} />`);
assert.dom('[data-test-layout-loading]').exists();
this.model.replicationAttrs.clusterId = '123456';
this.model.replicationAttrs.mode = 'bootstrapping';
await render(hbs`<ReplicationPage @model={{this.model}} />`);
assert.dom('[data-test-layout-loading]').exists();
});
test('it re-fetches data when replication mode changes', async function (assert) {
assert.expect(4);
this.server.get('sys/replication/:mode/status', (schema, req) => {
assert.strictEqual(
req.params.mode,
this.model.replicationMode,
`fetchStatus called with correct mode: ${this.model.replicationMode}`
);
return {
data: {
mode: 'primary',
},
};
});
await render(
hbs`<ReplicationPage @model={{this.model}} as |Page|><Page.header @showTabs={{false}} /></ReplicationPage>`
);
assert.dom(GENERAL.hdsPageHeaderTitle).hasText('Disaster recovery');
this.model.replicationMode = 'performance';
await render(
hbs`<ReplicationPage @model={{this.model}} as |Page|><Page.header @showTabs={{false}} /></ReplicationPage>`
);
assert.dom(GENERAL.hdsPageHeaderTitle).hasText('Performance');
});
});