MagicMirror/tests/e2e/vendor_spec.js
Karsten Hassel 9969fede35 refactor e2e
2021-09-16 23:02:17 +02:00

37 lines
1017 B
JavaScript

const fetch = require("node-fetch");
const helpers = require("./global-setup");
let app = null;
describe("Vendors", function () {
beforeAll(function () {
app = helpers.startApplication("tests/configs/env.js");
});
afterAll(function () {
helpers.stopApplication(app);
});
describe("Get list vendors", function () {
const vendors = require(__dirname + "/../../vendor/vendor.js");
Object.keys(vendors).forEach((vendor) => {
it(`should return 200 HTTP code for vendor "${vendor}"`, function (done) {
const urlVendor = "http://localhost:8080/vendor/" + vendors[vendor];
fetch(urlVendor).then((res) => {
expect(res.status).toBe(200);
done();
});
});
});
Object.keys(vendors).forEach((vendor) => {
it(`should return 404 HTTP code for vendor https://localhost/"${vendor}"`, function (done) {
const urlVendor = "http://localhost:8080/" + vendors[vendor];
fetch(urlVendor).then((res) => {
expect(res.status).toBe(404);
done();
});
});
});
});
});