2018-11-14 00:55:07 +00:00
|
|
|
import { addMinutes } from 'date-fns';
|
2018-10-12 19:03:01 +00:00
|
|
|
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';
|
2018-11-05 16:56:59 +00:00
|
|
|
import { allFeatures } from 'vault/helpers/all-features';
|
|
|
|
|
|
|
|
const FEATURES = allFeatures();
|
2018-10-12 19:03:01 +00:00
|
|
|
|
|
|
|
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();
|
2018-10-12 19:03:01 +00:00
|
|
|
this.set('licenseId', 'temporary');
|
2018-11-14 00:55:07 +00:00
|
|
|
this.set('expirationTime', addMinutes(now, 30));
|
|
|
|
this.set('startTime', now);
|
2018-10-12 19:03:01 +00:00
|
|
|
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');
|
2018-11-05 16:56:59 +00:00
|
|
|
assert.equal(component.featureRows.length, FEATURES.length, 'it renders all of the features');
|
2018-10-12 19:03:01 +00:00
|
|
|
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');
|
2018-10-12 19:03:01 +00:00
|
|
|
});
|
|
|
|
|
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();
|
2018-10-12 19:03:01 +00:00
|
|
|
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);
|
2018-10-12 19:03:01 +00:00
|
|
|
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}}
|
|
|
|
/>`
|
2018-10-12 19:03:01 +00:00
|
|
|
);
|
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');
|
2018-10-12 19:03:01 +00:00
|
|
|
});
|
|
|
|
|
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();
|
2018-10-12 19:03:01 +00:00
|
|
|
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);
|
2018-10-12 19:03:01 +00:00
|
|
|
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}}
|
|
|
|
/>`
|
2018-10-12 19:03:01 +00:00
|
|
|
);
|
2021-06-07 17:44:39 +00:00
|
|
|
let row = component.detailRows.filterBy('rowName', 'License state')[0];
|
|
|
|
assert.ok(
|
|
|
|
row.rowValue.includes(
|
2021-06-21 19:44:28 +00:00
|
|
|
'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'
|
2018-10-12 19:03:01 +00:00
|
|
|
);
|
|
|
|
});
|
2018-12-18 17:01:12 +00:00
|
|
|
|
|
|
|
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}}
|
|
|
|
/>`
|
2018-12-18 17:01:12 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
let row = component.featureRows.filterBy('featureName', 'Performance Standby')[0];
|
|
|
|
assert.equal(row.featureStatus, 'Active — 4 standby nodes allotted', 'renders active and displays count');
|
|
|
|
});
|
2018-10-12 19:03:01 +00:00
|
|
|
});
|