mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 14:21:13 +00:00

* Add `.nvmrc` → 14 * Fix package.json's URLs * Update to Pa11y CI's version (`https` etc) * Add Node 16 to matrix, and make linter run each time * Standardise `.editorconfig` * Upgrade to `actions/checkout@4` and `actions/setup-node@3` * Replace `npm install` with `npm ci` * Replace `wait-action` with `sleep 10s` * Rewrite to detach config, use promises, and replace `request` with `fetch` (adding `node-fetch` until Node 18) * Delete small single-use helper * Bump to `pa11y-webservice@4.1` and use caret from here (we control the dep) * Return to `this.last`, fix syntax errors * Update copyright to 2023 and remove unused ref * Fix troubleshooting link * Remove symbols, since they could become outdated * Remove missing link * Replace emoji note with GitHub Markdown note * Fix setup link * Replace br with double space * Replace `sh` with `console` for terminal output * Rename Mongo DB used in integration tests to avoid clash locally * Remove JSCS and references to other unused tools * Remove tooling tasks update * Compress definitions and layout where it makes sense or brings clarity * Rename db used in tests to `pa11y-dashboard-integration-test`, to avoid clash with `pa11y-webservice`'s own test DB * Use briefer syntax * Fix integration test setup & config * Reverse function order to return early * Update to `pa11y-lint-config@3`, update `ecmaVersion` to 2020, remove some rule overrides * Fix linting errors, remove cruft * Move linting and broken integration test command into npm scripts (it remains broken) * Revert `node-fetch` to `^2.7.0` (can't do ESM right now) * Upgrade to `pa11y-webservice@^4.2` from `^4.1` * Upgrade to `mocha@^9.2` from `^8.4` (can't do `10` yet because it drops Node 12) * Use backticks for property names * Fix anchor link for 'installing MongoDB' * Reorganise test workflow and add Node `18` and `20` to test matrix * Fix `lockfile-version` to `2` * Apply support policy * Replace Travis badge with one for Actions * Define some more links, separate code blocks * Reflect greater confidence in support for recent versions of MongoDB * Test against MongoDB versions 3-7 * Remove Make tasks `all`, `ci`, `clean`, `install`, `node_modules`, `lint` * Fix integration test command in workflow * Restore shallow Mocha command for now * Move linting into own step `lint` to avoid duplicated warnings * Give the `test` workflow a better name now that it uses a bigger matrix * Drop back to ES2019 from ES2020 for Node 12, remove use of `?.` * Reduce `--slow` to `4000` * Remove a `describe.only` 👀 * Fix broken test for add new item → standard * Rename availability check function * Fix task count check when testing task creation * Return fully to the original `new` logic * Use `127.0.0.1` consistently to fix (possible) IPV6 issue * Fix Cheerio call in failing test * Add MongoDB 2, and tweak other final versions * Lower case and shorten test name, to sit well alongside lint job * Replace `underscore(.groupBy)` with `lodash/groupby` * Capitalise Puppeteer * Say we test against MongoDB 2 as well * Document two replacements of Make with npm scripts * Revise requirements, permitting Node 16+ and describing Ubuntu issue * Support Node 16, 18, 20 * Install `lodash.keys` and fix Lodash mistakes * Fix rebase autoresolution error affecting `index.js` 👀 * This is Pa11y Dashboard not Webservice * Fix MongoDB link * Remove unused link def for Puppeteer * Shush markdown linter * Actually use `pa11y-webservice@4.3` * Improve support table * Don't `fail-fast` * Remove dependency `underscore` * Fix dashboard's port definition for integration test * Set `NODE_ENV=test` for integration tests * Use `mocha@10` * Extend the sleep to rule out the service not starting in time * Wait on port `4000` instead of sleeping * Fix `wait-on-action` to `v1.1.0` * Fix includes of `lodash.groupby` and `lodash.keys` * Label the port waiting action * Fix to `pa11y-webservice@4.2.0` until dep issue resolved * Set waiter action to start after 1s, time out after 30s, and log * Upgrade to `pa11y-webservice@^4.3.1` from `~4.2.0` * Remove comment about recent versions of MongoDB, since we test with them now
186 lines
5.3 KiB
JavaScript
186 lines
5.3 KiB
JavaScript
// This file is part of Pa11y Dashboard.
|
|
//
|
|
// Pa11y Dashboard is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Pa11y Dashboard is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Pa11y Dashboard. If not, see <http://www.gnu.org/licenses/>.
|
|
'use strict';
|
|
|
|
const assert = require('proclaim');
|
|
|
|
describe('GET /new', function() {
|
|
beforeEach(function(done) {
|
|
this.navigate({
|
|
method: 'GET',
|
|
endpoint: '/new'
|
|
}, done);
|
|
});
|
|
|
|
it('should send a 200 status', function() {
|
|
assert.strictEqual(this.last.status, 200);
|
|
});
|
|
|
|
it('should not display an error message', function() {
|
|
assert.strictEqual(this.last.dom('[data-test=error]').length, 0);
|
|
});
|
|
|
|
it('should have an "Add new URL" form', function() {
|
|
const form = this.last.dom('[data-test=new-url-form]').eq(0);
|
|
assert.isDefined(form);
|
|
assert.strictEqual(form.attr('action'), '/new');
|
|
assert.strictEqual(form.attr('method'), 'post');
|
|
});
|
|
|
|
describe('"Add New URL" form', function() {
|
|
beforeEach(function() {
|
|
this.form = this.last.dom('[data-test=new-url-form]').eq(0);
|
|
});
|
|
|
|
it('should have a "name" field', function() {
|
|
const field = this.form.find('input[name=name]').eq(0);
|
|
assert.isDefined(field);
|
|
assert.strictEqual(field.attr('type'), 'text');
|
|
assert.strictEqual(field.attr('value'), '');
|
|
});
|
|
|
|
it('should have a "url" field', function() {
|
|
const field = this.form.find('input[name=url]').eq(0);
|
|
assert.isDefined(field);
|
|
assert.strictEqual(field.attr('type'), 'url');
|
|
assert.strictEqual(field.attr('value'), '');
|
|
});
|
|
|
|
it('should have a "wait" field', function() {
|
|
const field = this.form.find('input[name=wait]').eq(0);
|
|
assert.isDefined(field);
|
|
assert.strictEqual(field.attr('type'), 'text');
|
|
assert.strictEqual(field.attr('value'), '');
|
|
});
|
|
|
|
it('should have an "actions" field', function() {
|
|
const field = this.form.find('textarea[name=actions]').eq(0);
|
|
assert.isDefined(field);
|
|
});
|
|
|
|
it('should have a "username" field', function() {
|
|
const field = this.form.find('input[name=username]').eq(0);
|
|
assert.isDefined(field);
|
|
assert.strictEqual(field.attr('type'), 'text');
|
|
assert.strictEqual(field.attr('value'), '');
|
|
});
|
|
|
|
it('should have a "password" field', function() {
|
|
const field = this.form.find('input[name=password]').eq(0);
|
|
assert.isDefined(field);
|
|
assert.strictEqual(field.attr('type'), 'text');
|
|
assert.strictEqual(field.attr('value'), '');
|
|
});
|
|
|
|
it('should have a "standard" field', function() {
|
|
const field = this.form.find('select[name=standard]').eq(0);
|
|
assert.isDefined(field);
|
|
assert.greaterThanOrEqual(field.find('option').length, 1);
|
|
});
|
|
|
|
it('should have "ignore" fields', function() {
|
|
const fields = this.form.find('input[name="ignore[]"]');
|
|
assert.isDefined(fields);
|
|
assert.notStrictEqual(fields.length, 0);
|
|
});
|
|
|
|
it('should have a "hideElements" field', function() {
|
|
const field = this.form.find('input[name=hideElements]').eq(0);
|
|
assert.isDefined(field);
|
|
assert.strictEqual(field.attr('type'), 'text');
|
|
assert.strictEqual(field.attr('value'), '');
|
|
});
|
|
|
|
it('should have a "headers" field', function() {
|
|
const field = this.form.find('textarea[name=headers]').eq(0);
|
|
assert.isDefined(field);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('POST /new', function() {
|
|
describe('with invalid query', function() {
|
|
beforeEach(function(done) {
|
|
const request = {
|
|
method: 'POST',
|
|
endpoint: '/new',
|
|
form: {
|
|
name: '',
|
|
url: ''
|
|
}
|
|
};
|
|
this.navigate(request, done);
|
|
});
|
|
|
|
it('should send a 200 status', function() {
|
|
assert.strictEqual(this.last.status, 200);
|
|
});
|
|
|
|
it('should display an error message', function() {
|
|
assert.strictEqual(this.last.dom('[data-test=error]').length, 1);
|
|
});
|
|
});
|
|
|
|
describe('with valid query', function() {
|
|
const requestOptions = {
|
|
method: 'POST',
|
|
endpoint: '/new',
|
|
form: {
|
|
name: 'Example',
|
|
url: 'http://example.com/',
|
|
standard: 'WCAG2AA'
|
|
}
|
|
};
|
|
|
|
beforeEach(function(done) {
|
|
this.navigate(requestOptions, done);
|
|
});
|
|
|
|
it('should send a 200 status', function() {
|
|
assert.strictEqual(this.last.status, 200);
|
|
});
|
|
|
|
it('should create the task', function(done) {
|
|
const getTaskCount = then =>
|
|
this.webservice.tasks.get({}, (error, tasks) => {
|
|
then(tasks.length);
|
|
});
|
|
|
|
getTaskCount(firstTaskCount => {
|
|
this.navigate(requestOptions, () => {
|
|
getTaskCount(secondTaskCount => {
|
|
assert.strictEqual(secondTaskCount, firstTaskCount + 1);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
it('should redirect me to the new URL page', function() {
|
|
assert.match(this.last.request.uri.pathname, /^\/[a-z0-9]{24}$/i);
|
|
});
|
|
|
|
it('should not display an error message', function() {
|
|
assert.strictEqual(this.last.dom('[data-test=error]').length, 0);
|
|
});
|
|
|
|
it('should display a success message', function() {
|
|
const alert = this.last.dom('[data-test=alert]').eq(0);
|
|
assert.isDefined(alert);
|
|
assert.match(alert.text(), /url has been added/i);
|
|
});
|
|
});
|
|
});
|