2023-04-10 15:36:59 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2022-12-06 17:45:36 +00:00
|
|
|
import { module, test } from 'qunit';
|
|
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
|
|
import { render } from '@ember/test-helpers';
|
|
|
|
import { hbs } from 'ember-cli-htmlbars';
|
|
|
|
import { componentA11yAudit } from 'nomad-ui/tests/helpers/a11y-audit';
|
|
|
|
|
|
|
|
module('Integration | Component | policy-editor', function (hooks) {
|
|
|
|
setupRenderingTest(hooks);
|
|
|
|
|
|
|
|
test('it renders', async function (assert) {
|
|
|
|
assert.expect(1);
|
|
|
|
await render(hbs`<PolicyEditor />`);
|
|
|
|
await componentA11yAudit(this.element, assert);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Only has editable name if new', async function (assert) {
|
|
|
|
const newMockPolicy = {
|
|
|
|
isNew: true,
|
|
|
|
name: 'New Policy',
|
|
|
|
};
|
|
|
|
|
|
|
|
const oldMockPolicy = {
|
|
|
|
isNew: false,
|
|
|
|
name: 'Old Policy',
|
|
|
|
};
|
|
|
|
|
|
|
|
this.set('newMockPolicy', newMockPolicy);
|
|
|
|
this.set('oldMockPolicy', oldMockPolicy);
|
|
|
|
|
|
|
|
await render(hbs`<PolicyEditor @policy={{this.newMockPolicy}} />`);
|
|
|
|
assert.dom('[data-test-policy-name-input]').exists();
|
|
|
|
await render(hbs`<PolicyEditor @policy={{this.oldMockPolicy}} />`);
|
|
|
|
assert.dom('[data-test-policy-name-input]').doesNotExist();
|
|
|
|
});
|
|
|
|
});
|