mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 14:21:13 +00:00
94 lines
3.8 KiB
JavaScript
94 lines
3.8 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/>.
|
|
|
|
// jscs:disable maximumLineLength, requireArrowFunctions
|
|
'use strict';
|
|
|
|
const assert = require('proclaim');
|
|
|
|
describe.only('GET /', function() {
|
|
|
|
beforeEach(function(done) {
|
|
const request = {
|
|
method: 'GET',
|
|
endpoint: '/'
|
|
};
|
|
this.navigate(request, done);
|
|
});
|
|
|
|
it('should send a 200 status', function() {
|
|
assert.strictEqual(this.last.status, 200);
|
|
});
|
|
|
|
it('should display an "Add new URL" button', function() {
|
|
const elem = this.last.dom('[data-test=add-task]');
|
|
assert.strictEqual(elem.length, 1);
|
|
assert.strictEqual(elem.eq(0).attr('href'), '/new');
|
|
});
|
|
|
|
it('should display all of the expected tasks', function() {
|
|
const tasks = this.last.dom('[data-test=task]');
|
|
assert.strictEqual(tasks.length, 3);
|
|
assert.match(tasks.eq(0).text(), /npg home\s+\(wcag2aa\)/i);
|
|
assert.match(tasks.eq(1).text(), /npg home\s+\(wcag2aaa\)/i);
|
|
assert.match(tasks.eq(2).text(), /nature news\s+\(section508\)/i);
|
|
});
|
|
|
|
it('should have links to each task', function() {
|
|
const tasks = this.last.dom('[data-test=task]');
|
|
assert.strictEqual(tasks.eq(0).find('[href="/abc000000000000000000001"]').length, 1);
|
|
assert.strictEqual(tasks.eq(1).find('[href="/abc000000000000000000002"]').length, 1);
|
|
assert.strictEqual(tasks.eq(2).find('[href="/abc000000000000000000003"]').length, 1);
|
|
});
|
|
|
|
it('should display an "Edit" button for each task', function() {
|
|
const tasks = this.last.dom('[data-test=task]');
|
|
assert.strictEqual(tasks.eq(0).find('[href="/abc000000000000000000001/edit"]').length, 1);
|
|
assert.strictEqual(tasks.eq(1).find('[href="/abc000000000000000000002/edit"]').length, 1);
|
|
assert.strictEqual(tasks.eq(2).find('[href="/abc000000000000000000003/edit"]').length, 1);
|
|
});
|
|
|
|
it('should display a "Delete" button for each task', function() {
|
|
const tasks = this.last.dom('[data-test=task]');
|
|
assert.strictEqual(tasks.eq(0).find('[href="/abc000000000000000000001/delete"]').length, 1);
|
|
assert.strictEqual(tasks.eq(1).find('[href="/abc000000000000000000002/delete"]').length, 1);
|
|
assert.strictEqual(tasks.eq(2).find('[href="/abc000000000000000000003/delete"]').length, 1);
|
|
});
|
|
|
|
it('should display a "Run" button for each task', function() {
|
|
const tasks = this.last.dom('[data-test=task]');
|
|
assert.strictEqual(tasks.eq(0).find('[href="/abc000000000000000000001/run"]').length, 1);
|
|
assert.strictEqual(tasks.eq(1).find('[href="/abc000000000000000000002/run"]').length, 1);
|
|
assert.strictEqual(tasks.eq(2).find('[href="/abc000000000000000000003/run"]').length, 1);
|
|
});
|
|
|
|
it('should display the task result counts if the task has been run', function() {
|
|
const tasks = this.last.dom('[data-test=task]');
|
|
assert.match(tasks.eq(0).text(), /1\s*errors/i);
|
|
assert.match(tasks.eq(0).text(), /2\s*warnings/i);
|
|
assert.match(tasks.eq(0).text(), /3\s*notices/i);
|
|
});
|
|
|
|
it('should display a message indicating that there are no results if the task has not been run', function() {
|
|
const tasks = this.last.dom('[data-test=task]');
|
|
assert.match(tasks.eq(2).text(), /no results/i);
|
|
});
|
|
|
|
it('should not display an alert message', function() {
|
|
assert.strictEqual(this.last.dom('[data-test=alert]').length, 0);
|
|
});
|
|
|
|
});
|