757afb4de9
* add no-jquery rule and move event listeners to ember-concurrency tasks * remove unnecessary onchange and handleKeyDown actions * add element.closest polyfill and convert linked-block to use native dom apis * update pretender, fetch, page-object, add optional-features, remove ember/jquery * turn off jquery inclusion * remove jQuery.isPlainObject usage * violatedDirective isn't always formatted the same * use fetch and the ember-fetch adapter mixin * move to fetch and lowercase headers for pretender * display non-ember-data errors * use new async fn test style and lowercase headers in auth service test * setContext is not necessary with the new style tests and ember-cli-page-object - it actually triggers jquery usage * update ember-fetch, ember-cli-pretender * wait for permissions check * lowercase header name in auth test * refactor transit tests to one test per key type * simplify pollCluster helper * stop flakey tests by prefering the native fetch * avoid uncaught TransitionAborted error by navigating directly to unseal * unset model on controller after unloading it because controllers are singletons * update yarn.lock
81 lines
2.5 KiB
JavaScript
81 lines
2.5 KiB
JavaScript
import { resolve } from 'rsvp';
|
|
import EmberObject from '@ember/object';
|
|
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 { create } from 'ember-cli-page-object';
|
|
import configPki from '../../pages/components/config-pki-ca';
|
|
import apiStub from 'vault/tests/helpers/noop-all-api-requests';
|
|
|
|
const component = create(configPki);
|
|
|
|
const storeStub = Service.extend({
|
|
createRecord(type, args) {
|
|
return EmberObject.create(args, {
|
|
save() {
|
|
return resolve(this);
|
|
},
|
|
destroyRecord() {},
|
|
send() {},
|
|
unloadRecord() {},
|
|
});
|
|
},
|
|
});
|
|
|
|
module('Integration | Component | config pki ca', function(hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
hooks.beforeEach(function() {
|
|
this.server = apiStub();
|
|
this.owner.lookup('service:flash-messages').registerTypes(['success']);
|
|
this.owner.register('service:store', storeStub);
|
|
this.storeService = this.owner.lookup('service:store');
|
|
});
|
|
|
|
hooks.afterEach(function() {
|
|
this.server.shutdown();
|
|
});
|
|
|
|
const config = function(pem) {
|
|
return EmberObject.create({
|
|
pem: pem,
|
|
backend: 'pki',
|
|
caChain: 'caChain',
|
|
der: new Blob(['der'], { type: 'text/plain' }),
|
|
});
|
|
};
|
|
|
|
const setupAndRender = async function(context, onRefresh) {
|
|
const refreshFn = onRefresh || function() {};
|
|
context.set('config', config());
|
|
context.set('onRefresh', refreshFn);
|
|
await context.render(hbs`{{config-pki-ca onRefresh=onRefresh config=config}}`);
|
|
};
|
|
|
|
test('it renders, no pem', async function(assert) {
|
|
await setupAndRender(this);
|
|
|
|
assert.notOk(component.hasTitle, 'no title in the default state');
|
|
assert.equal(component.replaceCAText, 'Configure CA');
|
|
assert.equal(component.downloadLinks.length, 0, 'there are no download links');
|
|
|
|
await component.replaceCA();
|
|
assert.equal(component.title, 'Configure CA Certificate');
|
|
await component.back();
|
|
|
|
await component.setSignedIntermediateBtn();
|
|
assert.equal(component.title, 'Set signed intermediate');
|
|
});
|
|
|
|
test('it renders, with pem', async function(assert) {
|
|
const c = config('pem');
|
|
this.set('config', c);
|
|
await render(hbs`{{config-pki-ca config=config}}`);
|
|
assert.notOk(component.hasTitle, 'no title in the default state');
|
|
assert.equal(component.replaceCAText, 'Replace CA');
|
|
assert.equal(component.downloadLinks.length, 3, 'shows download links');
|
|
});
|
|
});
|