mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 17:05:43 +03:00
* Add factory hooks for jobs to have previously stable versions and stopped status * Since #24973 node-read isn't presupposed and so should regex match only on the common url parts * Job detail tests for title buttons are now bimodal and default to having previously-stable version in history * prettier plz * Breaking a thing on purpose to see if my other broken thing is broken * continue-on-error set to false to get things red when appropriate * OK what if continue-on-error=true but we do a separate failure reporting after the fact * fail-fast are you the magic incantation that I need? * Re-fix my test now that fast-fail is off * Fix to server-leader by adding a region first, and always()-append to uploading partition results * Express failure step lists failing tests so you don't have to click back into ember-exam step * temporary snapshot and logging for flakey test in service job detail * Bunch of region and tasklogs test fixups * using allocStatusDistribution to ensure service job always has a non-queued alloc
255 lines
8.3 KiB
JavaScript
255 lines
8.3 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* eslint-disable qunit/require-expect */
|
|
/* eslint-disable qunit/no-conditional-assertions */
|
|
import { currentURL, settled } 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';
|
|
import Tokens from 'nomad-ui/tests/pages/settings/tokens';
|
|
|
|
module('Acceptance | regions (only one)', function (hooks) {
|
|
setupApplicationTest(hooks);
|
|
setupMirage(hooks);
|
|
|
|
hooks.beforeEach(function () {
|
|
server.create('agent');
|
|
server.create('node-pool');
|
|
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, and it is the default one, 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.notOk(Layout.navbar.singleRegion.isPresent, 'No single region');
|
|
assert.ok(document.title.includes('Jobs'));
|
|
});
|
|
|
|
test('when the only region is not named "global", the region switcher still is not shown, but the single region name is', async function (assert) {
|
|
server.create('region', { id: 'some-region' });
|
|
|
|
await JobsList.visit();
|
|
|
|
assert.notOk(Layout.navbar.regionSwitcher.isPresent, 'No region switcher');
|
|
assert.ok(Layout.navbar.singleRegion.isPresent, 'Single region');
|
|
});
|
|
|
|
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}@default`,
|
|
'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
|
|
.filter((req) => !req.url.includes('/v1/status/leader'))
|
|
.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-pool');
|
|
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.ok(document.title.includes('Jobs - global'));
|
|
});
|
|
|
|
test('when on the default region, pages do not include the region query param', async function (assert) {
|
|
let managementToken = server.create('token');
|
|
window.localStorage.nomadTokenSecret = managementToken.secretId;
|
|
await JobsList.visit();
|
|
await settled();
|
|
|
|
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-parent]', 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) {
|
|
let managementToken = server.create('token');
|
|
window.localStorage.nomadTokenSecret = managementToken.secretId;
|
|
const startingRegion = server.db.regions[1].id;
|
|
const defaultRegion = server.db.regions[0].id;
|
|
|
|
await JobsList.visit({ region: startingRegion });
|
|
await settled();
|
|
await selectChoose('[data-test-region-switcher-parent]', 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('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 regionsRequest = server.pretender.handledRequests.find((req) =>
|
|
req.responseURL.includes('/v1/regions')
|
|
);
|
|
const licenseRequest = server.pretender.handledRequests.find((req) =>
|
|
req.responseURL.includes('/v1/operator/license')
|
|
);
|
|
const appRequests = server.pretender.handledRequests.filter(
|
|
(req) =>
|
|
!req.responseURL.includes('/v1/regions') &&
|
|
!req.responseURL.includes('/v1/operator/license') &&
|
|
!req.responseURL.includes('/v1/status/leader')
|
|
);
|
|
|
|
assert.notOk(
|
|
regionsRequest.url.includes('region='),
|
|
'The regions request is made without a region qp'
|
|
);
|
|
assert.notOk(
|
|
licenseRequest.url.includes('region='),
|
|
'The default region request is made without a region qp'
|
|
);
|
|
|
|
appRequests.forEach((req) => {
|
|
if (
|
|
req.url === '/v1/agent/self' ||
|
|
req.url === '/v1/acl/token/self' ||
|
|
req.url === '/v1/agent/members'
|
|
) {
|
|
assert.notOk(req.url.includes('region='), `(no region) ${req.url}`);
|
|
} else {
|
|
assert.ok(req.url.includes(`region=${region}`), req.url);
|
|
}
|
|
});
|
|
});
|
|
|
|
test('Signing in sets the active region', async function (assert) {
|
|
window.localStorage.clear();
|
|
let managementToken = server.create('token');
|
|
await Tokens.visit();
|
|
assert.equal(
|
|
Layout.navbar.regionSwitcher.text,
|
|
'Select a Region',
|
|
'Region picker says "Select a Region" before signing in'
|
|
);
|
|
await Tokens.secret(managementToken.secretId).submit();
|
|
assert.equal(
|
|
window.localStorage.nomadActiveRegion,
|
|
'global',
|
|
'Region is set in localStorage after signing in'
|
|
);
|
|
assert.equal(
|
|
Layout.navbar.regionSwitcher.text,
|
|
'Region: global',
|
|
'Region picker says "Region: global" after signing in'
|
|
);
|
|
});
|
|
});
|