MagicMirror/tests/e2e/vendor_spec.js

59 lines
1.5 KiB
JavaScript
Raw Normal View History

const helpers = require("./global-setup");
const request = require("request");
const expect = require("chai").expect;
const describe = global.describe;
const it = global.it;
const before = global.before;
const after = global.after;
const mlog = require("mocha-logger");
describe("Vendors", function () {
helpers.setupTimeout(this);
var app = null;
before(function () {
return helpers.startApplication({
args: ["js/electron.js"]
2019-06-05 10:23:58 +02:00
}).then(function (startedApp) { app = startedApp; });
});
after(function () {
return helpers.stopApplication(app);
});
describe("Get list vendors", function () {
before(function () {
process.env.MM_CONFIG_FILE = "tests/configs/env.js";
});
var vendors = require(__dirname + "/../../vendor/vendor.js");
Object.keys(vendors).forEach(vendor => {
it(`should return 200 HTTP code for vendor "${vendor}"`, function () {
urlVendor = "http://localhost:8080/vendor/" + vendors[vendor];
request.get(urlVendor, function (err, res, body) {
2019-12-10 11:29:26 -06:00
if (!err)
{expect(res.statusCode).to.equal(200);}
2019-12-10 11:29:26 -06:00
else
{mlog.pending(`There error vendor 200 test ${err}`);}
});
});
});
2017-04-18 23:44:50 -03:00
Object.keys(vendors).forEach(vendor => {
it(`should return 404 HTTP code for vendor https://localhost/"${vendor}"`, function() {
urlVendor = "http://localhost:8080/" + vendors[vendor];
request.get(urlVendor, function (err, res, body) {
if (!err)
{expect(res.statusCode).to.equal(404);}
else
{mlog.pending(`There error vendor 404 test ${err}`);}
2017-04-18 23:44:50 -03:00
});
});
});
});
});