open-vault/ui/tests/integration/components/license-info-test.js

115 lines
4.5 KiB
JavaScript
Raw Normal View History

2018-11-14 00:55:07 +00:00
import { addMinutes } from 'date-fns';
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 license from '../../pages/components/license-info';
import { allFeatures } from 'vault/helpers/all-features';
const FEATURES = allFeatures();
const component = create(license);
module('Integration | Component | license info', function(hooks) {
setupRenderingTest(hooks);
test('it renders feature status properly for features associated with license', async function(assert) {
2018-11-14 00:55:07 +00:00
const now = Date.now();
this.set('licenseId', 'temporary');
2018-11-14 00:55:07 +00:00
this.set('expirationTime', addMinutes(now, 30));
this.set('startTime', now);
this.set('features', ['HSM', 'Namespaces']);
await render(
hbs`<LicenseInfo @licenseId={{this.licenseId}} @expirationTime={{this.expirationTime}} @startTime={{this.startTime}} @features={{this.features}}/>`
);
2021-06-07 17:44:39 +00:00
assert.equal(component.detailRows.length, 3, 'Shows License ID, Valid from, and License State rows');
assert.equal(component.featureRows.length, FEATURES.length, 'it renders all of the features');
let activeFeatures = component.featureRows.filter(f => f.featureStatus === 'Active');
2021-06-07 17:44:39 +00:00
assert.equal(activeFeatures.length, 2, 'Has two features listed as active');
});
2021-06-07 17:44:39 +00:00
test('it renders properly for autoloaded license', async function(assert) {
2018-11-14 00:55:07 +00:00
const now = Date.now();
this.set('licenseId', 'test');
2018-11-14 00:55:07 +00:00
this.set('expirationTime', addMinutes(now, 30));
2021-06-07 17:44:39 +00:00
this.set('autoloaded', true);
2018-11-14 00:55:07 +00:00
this.set('startTime', now);
this.set('features', ['HSM', 'Namespaces']);
await render(
2021-06-07 17:44:39 +00:00
hbs`<LicenseInfo
@licenseId={{this.licenseId}}
@expirationTime={{this.expirationTime}}
@startTime={{this.startTime}}
@features={{this.features}}
@autoloaded={{true}}
/>`
);
2021-06-07 17:44:39 +00:00
let row = component.detailRows.filterBy('rowName', 'License state')[0];
assert.equal(row.rowValue, 'Autoloaded', 'Shows autoloaded status');
});
2021-06-07 17:44:39 +00:00
test('it renders properly for stored license', async function(assert) {
2018-11-14 00:55:07 +00:00
const now = Date.now();
this.set('licenseId', 'test');
2018-11-14 00:55:07 +00:00
this.set('expirationTime', addMinutes(now, 30));
2021-06-07 17:44:39 +00:00
this.set('autoloaded', false);
2018-11-14 00:55:07 +00:00
this.set('startTime', now);
this.set('features', ['HSM', 'Namespaces']);
await render(
2021-06-07 17:44:39 +00:00
hbs`<LicenseInfo
@licenseId={{this.licenseId}}
@expirationTime={{this.expirationTime}}
@startTime={{this.startTime}}
@features={{this.features}}
@autoloaded={{false}}
/>`
);
2021-06-07 17:44:39 +00:00
let row = component.detailRows.filterBy('rowName', 'License state')[0];
assert.ok(
row.rowValue.includes(
'Stored licenses will be deprecated in a future version of Vault. We recommend autoloading your license.'
2021-06-07 17:44:39 +00:00
),
'Stored license includes recommendation to autoload'
);
});
test('it renders Performance Standby as inactive if count is 0', async function(assert) {
const now = Date.now();
this.set('licenseId', 'temporary');
this.set('expirationTime', addMinutes(now, 30));
this.set('startTime', now);
this.set('model', { performanceStandbyCount: 0 });
this.set('features', ['Performance Standby', 'Namespaces']);
await render(
hbs`<LicenseInfo @licenseId={{this.licenseId}} @expirationTime={{this.expirationTime}} @startTime={{this.startTime}} @features={{this.features}} @model={{this.model}}/>`
);
let row = component.featureRows.filterBy('featureName', 'Performance Standby')[0];
assert.equal(row.featureStatus, 'Not Active', 'renders feature as inactive because when count is 0');
});
test('it renders Performance Standby as active and shows count', async function(assert) {
const now = Date.now();
this.set('licenseId', 'temporary');
this.set('expirationTime', addMinutes(now, 30));
this.set('startTime', now);
this.set('model', { performanceStandbyCount: 4 });
this.set('features', ['Performance Standby', 'Namespaces']);
await render(
2021-06-07 17:44:39 +00:00
hbs`<LicenseInfo
@licenseId={{this.licenseId}}
@expirationTime={{this.expirationTime}}
@startTime={{this.startTime}}
@features={{this.features}}
@performanceStandbyCount={{this.model.performanceStandbyCount}}
/>`
);
let row = component.featureRows.filterBy('featureName', 'Performance Standby')[0];
assert.equal(row.featureStatus, 'Active — 4 standby nodes allotted', 'renders active and displays count');
});
});