/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import Service from '@ember/service'; import { module, test } from 'qunit'; import { setupRenderingTest } from 'ember-qunit'; import { render } from '@ember/test-helpers'; import hbs from 'htmlbars-inline-precompile'; import sinon from 'sinon'; import { create } from 'ember-cli-page-object'; import controlGroup from '../../pages/components/control-group'; const component = create(controlGroup); const controlGroupService = Service.extend({ init() { this._super(...arguments); this.set('wrapInfo', null); }, wrapInfoForAccessor() { return this.wrapInfo; }, }); const authService = Service.extend(); module('Integration | Component | control group', function (hooks) { setupRenderingTest(hooks); hooks.beforeEach(function () { this.owner.register('service:auth', authService); this.owner.register('service:control-group', controlGroupService); this.controlGroup = this.owner.lookup('service:controlGroup'); this.auth = this.owner.lookup('service:auth'); }); const setup = (modelData = {}, authData = {}) => { const modelDefaults = { approved: false, requestPath: 'foo/bar', id: 'accessor', requestEntity: { id: 'requestor', name: 'entity8509' }, reload: sinon.stub(), }; const authDataDefaults = { entity_id: 'requestor' }; return { model: { ...modelDefaults, ...modelData, }, authData: { ...authDataDefaults, ...authData, }, }; }; test('requestor rendering', async function (assert) { const { model, authData } = setup(); this.set('model', model); this.set('auth.authData', authData); await render(hbs`{{control-group model=this.model}}`); assert.ok(component.showsAccessorCallout, 'shows accessor callout'); assert.strictEqual(component.bannerPrefix, 'Locked'); assert.strictEqual(component.bannerText, 'The path you requested is locked by a Control Group'); assert.strictEqual(component.requestorText, `You are requesting access to ${model.requestPath}`); assert.false(component.showsTokenText, 'does not show token message when there is no token'); assert.ok(component.showsRefresh, 'shows refresh button'); assert.ok(component.authorizationText, 'Awaiting authorization.'); }); test('requestor rendering: with token', async function (assert) { const { model, authData } = setup(); this.set('model', model); this.set('auth.authData', authData); this.set('controlGroup.wrapInfo', { token: 'token' }); await render(hbs`{{control-group model=this.model}}`); assert.true(component.showsTokenText, 'shows token message'); assert.strictEqual(component.token, 'token', 'shows token value'); }); test('requestor rendering: some approvals', async function (assert) { const { model, authData } = setup({ authorizations: [{ name: 'manager 1' }, { name: 'manager 2' }] }); this.set('model', model); this.set('auth.authData', authData); await render(hbs`{{control-group model=this.model}}`); assert.ok(component.authorizationText, 'Already approved by manager 1, manager 2'); }); test('requestor rendering: approved with no token', async function (assert) { const { model, authData } = setup({ approved: true }); this.set('model', model); this.set('auth.authData', authData); await render(hbs`{{control-group model=this.model}}`); assert.strictEqual(component.bannerPrefix, 'Success!'); assert.strictEqual(component.bannerText, 'You have been given authorization'); assert.false(component.showsTokenText, 'does not show token message when there is no token'); assert.notOk(component.showsRefresh, 'does not shows refresh button'); assert.ok(component.showsSuccessComponent, 'renders control group success'); }); test('requestor rendering: approved with token', async function (assert) { const { model, authData } = setup({ approved: true }); this.set('model', model); this.set('auth.authData', authData); this.set('controlGroup.wrapInfo', { token: 'token' }); await render(hbs`{{control-group model=this.model}}`); assert.true(component.showsTokenText, 'shows token'); assert.notOk(component.showsRefresh, 'does not shows refresh button'); assert.ok(component.showsSuccessComponent, 'renders control group success'); }); test('authorizer rendering', async function (assert) { const { model, authData } = setup({ canAuthorize: true }, { entity_id: 'manager' }); this.set('model', model); this.set('auth.authData', authData); await render(hbs`{{control-group model=this.model}}`); assert.strictEqual(component.bannerPrefix, 'Locked'); assert.strictEqual( component.bannerText, 'Someone is requesting access to a path locked by a Control Group' ); assert.strictEqual( component.requestorText, `${model.requestEntity.name} is requesting access to ${model.requestPath}` ); assert.false(component.showsTokenText, 'does not show token message when there is no token'); assert.ok(component.showsAuthorize, 'shows authorize button'); }); test('authorizer rendering:authorized', async function (assert) { const { model, authData } = setup( { canAuthorize: true, authorizations: [{ id: 'manager', name: 'manager' }] }, { entity_id: 'manager' } ); this.set('model', model); this.set('auth.authData', authData); await render(hbs`{{control-group model=this.model}}`); assert.strictEqual(component.bannerPrefix, 'Thanks!'); assert.strictEqual(component.bannerText, 'You have given authorization'); assert.ok(component.showsBackLink, 'back link is visible'); }); test('authorizer rendering: authorized and success', async function (assert) { const { model, authData } = setup( { approved: true, canAuthorize: true, authorizations: [{ id: 'manager', name: 'manager' }] }, { entity_id: 'manager' } ); this.set('model', model); this.set('auth.authData', authData); await render(hbs`{{control-group model=this.model}}`); assert.strictEqual(component.bannerPrefix, 'Thanks!'); assert.strictEqual(component.bannerText, 'You have given authorization'); assert.ok(component.showsBackLink, 'back link is visible'); assert.strictEqual( component.requestorText, `${model.requestEntity.name} is authorized to access ${model.requestPath}` ); assert.notOk(component.showsSuccessComponent, 'does not render control group success'); }); test('third-party: success', async function (assert) { const { model, authData } = setup( { approved: true, canAuthorize: true, authorizations: [{ id: 'foo', name: 'foo' }] }, { entity_id: 'manager' } ); this.set('model', model); this.set('auth.authData', authData); await render(hbs`{{control-group model=this.model}}`); assert.strictEqual(component.bannerPrefix, 'Success!'); assert.strictEqual(component.bannerText, 'This Control Group has been authorized'); assert.ok(component.showsBackLink, 'back link is visible'); assert.notOk(component.showsSuccessComponent, 'does not render control group success'); }); });