7e4c746c82
Various page objects had breadcrumbs and breadcrumbFor within them, this moves those to the existing Layout page object that contains shared page objects.
192 lines
6.6 KiB
JavaScript
192 lines
6.6 KiB
JavaScript
import { currentURL } from '@ember/test-helpers';
|
|
import { module, test } from 'qunit';
|
|
import { setupApplicationTest } from 'ember-qunit';
|
|
import { selectChoose } from 'ember-power-select/test-support';
|
|
import { setupMirage } from 'ember-cli-mirage/test-support';
|
|
import a11yAudit from 'nomad-ui/tests/helpers/a11y-audit';
|
|
import JobsList from 'nomad-ui/tests/pages/jobs/list';
|
|
import ClientsList from 'nomad-ui/tests/pages/clients/list';
|
|
import Layout from 'nomad-ui/tests/pages/layout';
|
|
import Allocation from 'nomad-ui/tests/pages/allocations/detail';
|
|
|
|
module('Acceptance | regions (only one)', function(hooks) {
|
|
setupApplicationTest(hooks);
|
|
setupMirage(hooks);
|
|
|
|
hooks.beforeEach(function() {
|
|
server.create('agent');
|
|
server.create('node');
|
|
server.createList('job', 2, { createAllocations: false, noDeployments: true });
|
|
});
|
|
|
|
test('it passes an accessibility audit', async function(assert) {
|
|
await JobsList.visit();
|
|
await a11yAudit(assert);
|
|
});
|
|
|
|
test('when there is only one region, the region switcher is not shown in the nav bar and the region is not in the page title', async function(assert) {
|
|
server.create('region', { id: 'global' });
|
|
|
|
await JobsList.visit();
|
|
|
|
assert.notOk(Layout.navbar.regionSwitcher.isPresent, 'No region switcher');
|
|
assert.equal(document.title, 'Jobs - Nomad');
|
|
});
|
|
|
|
test('when the only region is not named "global", the region switcher still is not shown', async function(assert) {
|
|
server.create('region', { id: 'some-region' });
|
|
|
|
await JobsList.visit();
|
|
|
|
assert.notOk(Layout.navbar.regionSwitcher.isPresent, 'No region switcher');
|
|
});
|
|
|
|
test('pages do not include the region query param', async function(assert) {
|
|
server.create('region', { id: 'global' });
|
|
|
|
await JobsList.visit();
|
|
assert.equal(currentURL(), '/jobs', 'No region query param');
|
|
|
|
const jobId = JobsList.jobs.objectAt(0).id;
|
|
await JobsList.jobs.objectAt(0).clickRow();
|
|
assert.equal(currentURL(), `/jobs/${jobId}`, 'No region query param');
|
|
|
|
await ClientsList.visit();
|
|
assert.equal(currentURL(), '/clients', 'No region query param');
|
|
});
|
|
|
|
test('api requests do not include the region query param', async function(assert) {
|
|
server.create('region', { id: 'global' });
|
|
|
|
await JobsList.visit();
|
|
await JobsList.jobs.objectAt(0).clickRow();
|
|
await Layout.gutter.visitClients();
|
|
await Layout.gutter.visitServers();
|
|
server.pretender.handledRequests.forEach(req => {
|
|
assert.notOk(req.url.includes('region='), req.url);
|
|
});
|
|
});
|
|
});
|
|
|
|
module('Acceptance | regions (many)', function(hooks) {
|
|
setupApplicationTest(hooks);
|
|
setupMirage(hooks);
|
|
|
|
hooks.beforeEach(function() {
|
|
server.create('agent');
|
|
server.create('node');
|
|
server.createList('job', 2, { createAllocations: false, noDeployments: true });
|
|
server.create('allocation');
|
|
server.create('region', { id: 'global' });
|
|
server.create('region', { id: 'region-2' });
|
|
});
|
|
|
|
test('the region switcher is rendered in the nav bar and the region is in the page title', async function(assert) {
|
|
await JobsList.visit();
|
|
|
|
assert.ok(Layout.navbar.regionSwitcher.isPresent, 'Region switcher is shown');
|
|
assert.equal(document.title, 'Jobs - global - Nomad');
|
|
});
|
|
|
|
test('when on the default region, pages do not include the region query param', async function(assert) {
|
|
await JobsList.visit();
|
|
|
|
assert.equal(currentURL(), '/jobs', 'No region query param');
|
|
assert.equal(window.localStorage.nomadActiveRegion, 'global', 'Region in localStorage');
|
|
});
|
|
|
|
test('switching regions sets localStorage and the region query param', async function(assert) {
|
|
const newRegion = server.db.regions[1].id;
|
|
|
|
await JobsList.visit();
|
|
|
|
await selectChoose('[data-test-region-switcher]', newRegion);
|
|
|
|
assert.ok(
|
|
currentURL().includes(`region=${newRegion}`),
|
|
'New region is the region query param value'
|
|
);
|
|
assert.equal(window.localStorage.nomadActiveRegion, newRegion, 'New region in localStorage');
|
|
});
|
|
|
|
test('switching regions to the default region, unsets the region query param', async function(assert) {
|
|
const startingRegion = server.db.regions[1].id;
|
|
const defaultRegion = server.db.regions[0].id;
|
|
|
|
await JobsList.visit({ region: startingRegion });
|
|
|
|
await selectChoose('[data-test-region-switcher]', defaultRegion);
|
|
|
|
assert.notOk(currentURL().includes('region='), 'No region query param for the default region');
|
|
assert.equal(
|
|
window.localStorage.nomadActiveRegion,
|
|
defaultRegion,
|
|
'New region in localStorage'
|
|
);
|
|
});
|
|
|
|
test('switching regions on deep pages redirects to the application root', async function(assert) {
|
|
const newRegion = server.db.regions[1].id;
|
|
|
|
await Allocation.visit({ id: server.db.allocations[0].id });
|
|
|
|
await selectChoose('[data-test-region-switcher]', newRegion);
|
|
|
|
assert.ok(currentURL().includes('/jobs?'), 'Back at the jobs page');
|
|
});
|
|
|
|
test('navigating directly to a page with the region query param sets the application to that region', async function(assert) {
|
|
const allocation = server.db.allocations[0];
|
|
const region = server.db.regions[1].id;
|
|
await Allocation.visit({ id: allocation.id, region });
|
|
|
|
assert.equal(
|
|
currentURL(),
|
|
`/allocations/${allocation.id}?region=${region}`,
|
|
'Region param is persisted when navigating straight to a detail page'
|
|
);
|
|
assert.equal(
|
|
window.localStorage.nomadActiveRegion,
|
|
region,
|
|
'Region is also set in localStorage from a detail page'
|
|
);
|
|
});
|
|
|
|
test('when the region is not the default region, all api requests other than the agent/self request include the region query param', async function(assert) {
|
|
window.localStorage.removeItem('nomadTokenSecret');
|
|
const region = server.db.regions[1].id;
|
|
|
|
await JobsList.visit({ region });
|
|
|
|
await JobsList.jobs.objectAt(0).clickRow();
|
|
await Layout.gutter.visitClients();
|
|
await Layout.gutter.visitServers();
|
|
const [
|
|
,
|
|
,
|
|
// License request
|
|
// Token/policies request
|
|
regionsRequest,
|
|
defaultRegionRequest,
|
|
...appRequests
|
|
] = server.pretender.handledRequests;
|
|
|
|
assert.notOk(
|
|
regionsRequest.url.includes('region='),
|
|
'The regions request is made without a region qp'
|
|
);
|
|
assert.notOk(
|
|
defaultRegionRequest.url.includes('region='),
|
|
'The default region request is made without a region qp'
|
|
);
|
|
|
|
appRequests.forEach(req => {
|
|
if (req.url === '/v1/agent/self') {
|
|
assert.notOk(req.url.includes('region='), `(no region) ${req.url}`);
|
|
} else {
|
|
assert.ok(req.url.includes(`region=${region}`), req.url);
|
|
}
|
|
});
|
|
});
|
|
});
|