mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
moved tests to fetch, run prettier
This commit is contained in:
parent
92a35692f2
commit
f09c54184a
@ -7,7 +7,7 @@
|
||||
const Log = require("logger");
|
||||
const ical = require("node-ical");
|
||||
const fetch = require("digest-fetch");
|
||||
const https = require('https');
|
||||
const https = require("https");
|
||||
|
||||
/**
|
||||
* Moment date
|
||||
@ -55,14 +55,14 @@ const CalendarFetcher = function (url, reloadInterval, excludedEvents, maximumEn
|
||||
|
||||
if (selfSignedCert) {
|
||||
httpsAgent = new https.Agent({
|
||||
rejectUnauthorized: false,
|
||||
rejectUnauthorized: false
|
||||
});
|
||||
}
|
||||
|
||||
// todo: auth,
|
||||
// https://github.com/devfans/digest-fetch
|
||||
// https://github.com/pablopunk/auth-fetch/blob/master/index.js
|
||||
// https://hackersandslackers.com/making-api-requests-with-nodejs/
|
||||
// todo: auth,
|
||||
// https://github.com/devfans/digest-fetch
|
||||
// https://github.com/pablopunk/auth-fetch/blob/master/index.js
|
||||
// https://hackersandslackers.com/making-api-requests-with-nodejs/
|
||||
if (auth) {
|
||||
if (auth.method === "bearer") {
|
||||
// opts.auth = {
|
||||
@ -74,21 +74,21 @@ const CalendarFetcher = function (url, reloadInterval, excludedEvents, maximumEn
|
||||
}
|
||||
}
|
||||
|
||||
const client = new fetch(user, password) ;
|
||||
client.fetch(url, { headers: headers, httpsAgent: httpsAgent })
|
||||
.catch(error => {
|
||||
const client = new fetch(user, password);
|
||||
client
|
||||
.fetch(url, { headers: headers, httpsAgent: httpsAgent })
|
||||
.catch((error) => {
|
||||
fetchFailedCallback(self, error);
|
||||
scheduleTimer();
|
||||
})
|
||||
.then(response => {
|
||||
.then((response) => {
|
||||
if (response.status !== 200) {
|
||||
throw new Error(response.status + ": " + response.statusText);
|
||||
}
|
||||
return response;
|
||||
})
|
||||
.then(response => response.text())
|
||||
.then(responseData => {
|
||||
|
||||
.then((response) => response.text())
|
||||
.then((responseData) => {
|
||||
let data = [];
|
||||
|
||||
try {
|
||||
|
@ -86,14 +86,13 @@ const NewsfeedFetcher = function (url, reloadInterval, encoding, logFeedWarnings
|
||||
};
|
||||
|
||||
fetch(url, { headers: headers })
|
||||
.catch(error => {
|
||||
.catch((error) => {
|
||||
fetchFailedCallback(self, error);
|
||||
scheduleTimer();
|
||||
})
|
||||
.then(res => {
|
||||
.then((res) => {
|
||||
res.body.pipe(iconv.decodeStream(encoding)).pipe(parser);
|
||||
});
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -1,5 +1,5 @@
|
||||
const helpers = require("./global-setup");
|
||||
const request = require("request");
|
||||
const fetch = require("node-fetch");
|
||||
const expect = require("chai").expect;
|
||||
|
||||
const describe = global.describe;
|
||||
@ -46,15 +46,15 @@ describe("Electron app environment", function () {
|
||||
});
|
||||
|
||||
it("get request from http://localhost:8080 should return 200", function (done) {
|
||||
request.get("http://localhost:8080", function (err, res, body) {
|
||||
expect(res.statusCode).to.equal(200);
|
||||
fetch("http://localhost:8080").then((res) => {
|
||||
expect(res.status).to.equal(200);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it("get request from http://localhost:8080/nothing should return 404", function (done) {
|
||||
request.get("http://localhost:8080/nothing", function (err, res, body) {
|
||||
expect(res.statusCode).to.equal(404);
|
||||
fetch("http://localhost:8080/nothing").then((res) => {
|
||||
expect(res.status).to.equal(404);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
@ -1,5 +1,5 @@
|
||||
const helpers = require("./global-setup");
|
||||
const request = require("request");
|
||||
const fetch = require("node-fetch");
|
||||
const expect = require("chai").expect;
|
||||
const forEach = require("mocha-each");
|
||||
|
||||
@ -40,8 +40,8 @@ describe("All font files from roboto.css should be downloadable", function () {
|
||||
|
||||
forEach(fontFiles).it("should return 200 HTTP code for file '%s'", (fontFile, done) => {
|
||||
var fontUrl = "http://localhost:8080/fonts/" + fontFile;
|
||||
request.get(fontUrl, function (err, res, body) {
|
||||
expect(res.statusCode).to.equal(200);
|
||||
fetch(fontUrl).then((res) => {
|
||||
expect(res.status).to.equal(200);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
@ -1,5 +1,5 @@
|
||||
const helpers = require("./global-setup");
|
||||
const request = require("request");
|
||||
const fetch = require("node-fetch");
|
||||
const expect = require("chai").expect;
|
||||
|
||||
const describe = global.describe;
|
||||
@ -32,8 +32,8 @@ describe("ipWhitelist directive configuration", function () {
|
||||
process.env.MM_CONFIG_FILE = "tests/configs/noIpWhiteList.js";
|
||||
});
|
||||
it("should return 403", function (done) {
|
||||
request.get("http://localhost:8080", function (err, res, body) {
|
||||
expect(res.statusCode).to.equal(403);
|
||||
fetch("http://localhost:8080").then((res) => {
|
||||
expect(res.status).to.equal(403);
|
||||
done();
|
||||
});
|
||||
});
|
||||
@ -45,8 +45,8 @@ describe("ipWhitelist directive configuration", function () {
|
||||
process.env.MM_CONFIG_FILE = "tests/configs/empty_ipWhiteList.js";
|
||||
});
|
||||
it("should return 200", function (done) {
|
||||
request.get("http://localhost:8080", function (err, res, body) {
|
||||
expect(res.statusCode).to.equal(200);
|
||||
fetch("http://localhost:8080").then((res) => {
|
||||
expect(res.status).to.equal(200);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
@ -1,5 +1,5 @@
|
||||
const helpers = require("./global-setup");
|
||||
const request = require("request");
|
||||
const fetch = require("node-fetch");
|
||||
const expect = require("chai").expect;
|
||||
|
||||
const describe = global.describe;
|
||||
@ -33,8 +33,8 @@ describe("port directive configuration", function () {
|
||||
});
|
||||
|
||||
it("should return 200", function (done) {
|
||||
request.get("http://localhost:8090", function (err, res, body) {
|
||||
expect(res.statusCode).to.equal(200);
|
||||
fetch("http://localhost:8090").then((res) => {
|
||||
expect(res.status).to.equal(200);
|
||||
done();
|
||||
});
|
||||
});
|
||||
@ -52,8 +52,8 @@ describe("port directive configuration", function () {
|
||||
});
|
||||
|
||||
it("should return 200", function (done) {
|
||||
request.get("http://localhost:8100", function (err, res, body) {
|
||||
expect(res.statusCode).to.equal(200);
|
||||
fetch("http://localhost:8100").then((res) => {
|
||||
expect(res.status).to.equal(200);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
@ -1,5 +1,5 @@
|
||||
const helpers = require("./global-setup");
|
||||
const request = require("request");
|
||||
const fetch = require("node-fetch");
|
||||
const expect = require("chai").expect;
|
||||
|
||||
const describe = global.describe;
|
||||
@ -32,8 +32,8 @@ describe("Vendors", function () {
|
||||
Object.keys(vendors).forEach((vendor) => {
|
||||
it(`should return 200 HTTP code for vendor "${vendor}"`, function () {
|
||||
var urlVendor = "http://localhost:8080/vendor/" + vendors[vendor];
|
||||
request.get(urlVendor, function (err, res, body) {
|
||||
expect(res.statusCode).to.equal(200);
|
||||
fetch(urlVendor).then((res) => {
|
||||
expect(res.status).to.equal(200);
|
||||
});
|
||||
});
|
||||
});
|
||||
@ -41,8 +41,8 @@ describe("Vendors", function () {
|
||||
Object.keys(vendors).forEach((vendor) => {
|
||||
it(`should return 404 HTTP code for vendor https://localhost/"${vendor}"`, function () {
|
||||
var urlVendor = "http://localhost:8080/" + vendors[vendor];
|
||||
request.get(urlVendor, function (err, res, body) {
|
||||
expect(res.statusCode).to.equal(404);
|
||||
fetch(urlVendor).then((res) => {
|
||||
expect(res.status).to.equal(404);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user