2020-01-24 12:26:28 +00:00
|
|
|
import pages from 'consul-ui/tests/pages';
|
|
|
|
import Inflector from 'ember-inflector';
|
|
|
|
import utils from '@ember/test-helpers';
|
|
|
|
|
|
|
|
import api from 'consul-ui/tests/helpers/api';
|
|
|
|
|
2019-02-21 13:05:05 +00:00
|
|
|
import models from './steps/doubles/model';
|
|
|
|
import http from './steps/doubles/http';
|
|
|
|
import visit from './steps/interactions/visit';
|
|
|
|
import click from './steps/interactions/click';
|
|
|
|
import form from './steps/interactions/form';
|
|
|
|
import debug from './steps/debug/index';
|
|
|
|
import assertHttp from './steps/assertions/http';
|
|
|
|
import assertModel from './steps/assertions/model';
|
|
|
|
import assertPage from './steps/assertions/page';
|
|
|
|
import assertDom from './steps/assertions/dom';
|
2019-06-04 14:57:35 +00:00
|
|
|
import assertForm from './steps/assertions/form';
|
2018-07-05 12:43:03 +00:00
|
|
|
|
2019-02-21 13:05:05 +00:00
|
|
|
// const dont = `( don't| shouldn't| can't)?`;
|
2018-05-11 12:47:21 +00:00
|
|
|
|
2020-01-24 12:26:28 +00:00
|
|
|
const pluralize = function(str) {
|
|
|
|
return Inflector.inflector.pluralize(str);
|
|
|
|
};
|
2020-06-10 15:07:06 +00:00
|
|
|
const getLastNthRequest = function(getRequests) {
|
2020-01-24 12:26:28 +00:00
|
|
|
return function(n, method) {
|
2020-06-10 15:07:06 +00:00
|
|
|
let requests = getRequests()
|
|
|
|
.slice(0)
|
|
|
|
.reverse();
|
2020-01-24 12:26:28 +00:00
|
|
|
if (method) {
|
|
|
|
requests = requests.filter(function(item) {
|
|
|
|
return item.method === method;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (n == null) {
|
|
|
|
return requests;
|
|
|
|
}
|
|
|
|
return requests[n];
|
2019-02-21 13:05:05 +00:00
|
|
|
};
|
2020-01-24 12:26:28 +00:00
|
|
|
};
|
|
|
|
const mb = function(path) {
|
|
|
|
return function(obj) {
|
|
|
|
return (
|
|
|
|
path.map(function(prop) {
|
|
|
|
obj = obj || {};
|
|
|
|
if (isNaN(parseInt(prop))) {
|
|
|
|
return (obj = obj[prop]);
|
|
|
|
} else {
|
|
|
|
return (obj = obj.objectAt(parseInt(prop)));
|
|
|
|
}
|
|
|
|
}) && obj
|
|
|
|
);
|
2019-02-21 13:05:05 +00:00
|
|
|
};
|
2020-01-24 12:26:28 +00:00
|
|
|
};
|
|
|
|
export default function(assert, library) {
|
2020-03-19 10:28:21 +00:00
|
|
|
const pauseUntil = function(run, message = 'assertion timed out') {
|
2020-04-08 17:03:18 +00:00
|
|
|
return new Promise(function(r) {
|
2019-03-22 17:24:40 +00:00
|
|
|
let count = 0;
|
2020-03-19 10:28:21 +00:00
|
|
|
let resolved = false;
|
|
|
|
const retry = function() {
|
|
|
|
return Promise.resolve();
|
|
|
|
};
|
2020-04-08 17:03:18 +00:00
|
|
|
const reject = function() {
|
|
|
|
return Promise.reject();
|
|
|
|
};
|
2020-03-19 10:28:21 +00:00
|
|
|
const resolve = function(str = message) {
|
|
|
|
resolved = true;
|
|
|
|
assert.ok(resolved, str);
|
|
|
|
r();
|
|
|
|
return Promise.resolve();
|
|
|
|
};
|
|
|
|
(function tick() {
|
|
|
|
run(resolve, reject, retry).then(function() {
|
|
|
|
if (!resolved) {
|
|
|
|
setTimeout(function() {
|
|
|
|
if (++count >= 50) {
|
|
|
|
assert.ok(false, message);
|
|
|
|
reject();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
tick();
|
|
|
|
}, 100);
|
|
|
|
}
|
2019-03-22 17:24:40 +00:00
|
|
|
});
|
2020-03-19 10:28:21 +00:00
|
|
|
})();
|
2019-03-22 17:24:40 +00:00
|
|
|
});
|
|
|
|
};
|
2020-06-10 15:07:06 +00:00
|
|
|
const lastNthRequest = getLastNthRequest(() => api.server.history);
|
2020-01-24 12:26:28 +00:00
|
|
|
const create = function(number, name, value) {
|
|
|
|
// don't return a promise here as
|
|
|
|
// I don't need it to wait
|
|
|
|
api.server.createList(name, number, value);
|
2019-05-01 18:09:29 +00:00
|
|
|
};
|
2020-01-24 12:26:28 +00:00
|
|
|
const respondWith = function(url, data) {
|
|
|
|
api.server.respondWith(url.split('?')[0], data);
|
|
|
|
};
|
|
|
|
const setCookie = function(key, value) {
|
|
|
|
api.server.setCookie(key, value);
|
|
|
|
};
|
|
|
|
let currentPage;
|
|
|
|
const getCurrentPage = function() {
|
|
|
|
return currentPage;
|
|
|
|
};
|
|
|
|
const setCurrentPage = function(page) {
|
2020-06-10 15:07:06 +00:00
|
|
|
api.server.clearHistory();
|
2020-01-24 12:26:28 +00:00
|
|
|
currentPage = page;
|
|
|
|
return page;
|
|
|
|
};
|
|
|
|
|
2019-05-01 18:09:29 +00:00
|
|
|
const find = function(path) {
|
|
|
|
const page = getCurrentPage();
|
|
|
|
const parts = path.split('.');
|
|
|
|
const last = parts.pop();
|
|
|
|
let obj;
|
|
|
|
let parent = mb(parts)(page) || page;
|
|
|
|
if (typeof parent.objectAt === 'function') {
|
|
|
|
parent = parent.objectAt(0);
|
|
|
|
}
|
|
|
|
obj = parent[last];
|
|
|
|
if (typeof obj === 'undefined') {
|
2020-05-12 15:37:22 +00:00
|
|
|
throw new Error(`PageObject not found: The '${path}' object doesn't exist`);
|
2019-05-01 18:09:29 +00:00
|
|
|
}
|
|
|
|
if (typeof obj === 'function') {
|
|
|
|
obj = obj.bind(parent);
|
|
|
|
}
|
|
|
|
return obj;
|
|
|
|
};
|
2019-06-21 10:42:40 +00:00
|
|
|
const clipboard = function() {
|
|
|
|
return window.localStorage.getItem('clipboard');
|
|
|
|
};
|
2020-01-24 12:26:28 +00:00
|
|
|
models(library, create);
|
|
|
|
http(library, respondWith, setCookie);
|
2019-02-21 13:05:05 +00:00
|
|
|
visit(library, pages, setCurrentPage);
|
2019-05-01 18:09:29 +00:00
|
|
|
click(library, find, utils.click);
|
|
|
|
form(library, find, utils.fillIn, utils.triggerKeyEvent, getCurrentPage);
|
2019-02-21 13:05:05 +00:00
|
|
|
debug(library, assert, utils.currentURL);
|
2020-01-24 12:26:28 +00:00
|
|
|
assertHttp(library, assert, lastNthRequest);
|
|
|
|
assertModel(library, assert, find, getCurrentPage, pauseUntil, pluralize);
|
2019-05-01 18:09:29 +00:00
|
|
|
assertPage(library, assert, find, getCurrentPage);
|
2019-06-21 10:42:40 +00:00
|
|
|
assertDom(library, assert, pauseUntil, utils.find, utils.currentURL, clipboard);
|
2019-06-04 14:57:35 +00:00
|
|
|
assertForm(library, assert, find, getCurrentPage);
|
2018-06-19 09:51:31 +00:00
|
|
|
|
2019-02-21 13:05:05 +00:00
|
|
|
return library.given(["I'm using a legacy token"], function(number, model, data) {
|
2020-01-24 12:26:28 +00:00
|
|
|
window.localStorage['consul:token'] = JSON.stringify({
|
|
|
|
Namespace: 'default',
|
|
|
|
AccessorID: null,
|
|
|
|
SecretID: 'id',
|
|
|
|
});
|
2019-02-21 13:05:05 +00:00
|
|
|
});
|
2018-05-11 12:47:21 +00:00
|
|
|
}
|