vault/ui/tests/integration/components/replication-header-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

75 lines
2.3 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 { GENERAL } from 'vault/tests/helpers/general-selectors';
const DATA = {
anyReplicationEnabled: true,
dr: {
mode: 'secondary',
rm: {
mode: 'dr',
},
},
unsealed: 'good',
};
const TITLE = 'Disaster Recovery';
const SECONDARY_ID = '123abc';
module('Integration | Component | replication-header', function (hooks) {
setupRenderingTest(hooks);
hooks.beforeEach(function () {
this.set('data', DATA);
this.set('title', TITLE);
this.set('isSecondary', true);
this.set('secondaryId', SECONDARY_ID);
});
test('it renders', async function (assert) {
await render(hbs`
<ReplicationHeader @data={{this.data}} @isSecondary={{this.isSecondary}} @title={{this.title}}/>
`);
assert.dom(GENERAL.hdsPageHeaderTitle).exists();
});
test('it renders with mode and secondaryId when set', async function (assert) {
await render(hbs`
<ReplicationHeader @data={{this.data}} @isSecondary={{this.isSecondary}} @title={{this.title}} @secondaryId={{this.secondaryId}}/>
`);
assert.dom(GENERAL.badge(SECONDARY_ID)).includesText(SECONDARY_ID, `shows the correct secondaryId value`);
assert.dom(GENERAL.badge('secondary')).includesText('secondary', `shows the correct mode value`);
});
test('it does not render mode or secondaryId when replication is not enabled', async function (assert) {
const notEnabled = { anyReplicationEnabled: false };
const noId = null;
this.set('data', notEnabled);
this.set('secondaryId', noId);
await render(hbs`
<ReplicationHeader @data={{this.data}} @isSecondary={{this.isSecondary}} @title={{this.title}} @secondaryId={{this.secondaryId}}/>
`);
assert.dom('[data-test-secondaryId]').doesNotExist();
assert.dom(GENERAL.badge('secondary')).doesNotExist();
});
test('it does not show tabs when showTabs is not set', async function (assert) {
await render(hbs`
<ReplicationHeader @data={{this.data}} @isSecondary={{this.isSecondary}} @title={{this.title}}/>
`);
assert.dom('[data-test-tabs]').doesNotExist();
});
});