From 7918448be267f62f3ef8358a05eb88ac216bf822 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Sat, 18 Mar 2017 12:40:07 -0300
Subject: [PATCH 01/83] Add test for vendor
This test get all vendor defined. Create a get request http each vendor
and expect the 200 HTTP code.
---
tests/e2e/vendor_spec.js | 36 ++++++++++++++++++++++++++++++++++++
vendor/vendor.js | 2 ++
2 files changed, 38 insertions(+)
create mode 100644 tests/e2e/vendor_spec.js
diff --git a/tests/e2e/vendor_spec.js b/tests/e2e/vendor_spec.js
new file mode 100644
index 00000000..39abf906
--- /dev/null
+++ b/tests/e2e/vendor_spec.js
@@ -0,0 +1,36 @@
+const globalSetup = require("./global-setup");
+const app = globalSetup.app;
+const request = require("request");
+const chai = require("chai");
+const expect = chai.expect;
+
+
+describe("Vendors", function () {
+
+ this.timeout(20000);
+
+ beforeEach(function (done) {
+ app.start().then(function() { done(); } );
+ });
+
+ afterEach(function (done) {
+ app.stop().then(function() { done(); });
+ });
+
+ 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) {
+ expect(res.statusCode).to.equal(200);
+ });
+ });
+ });
+ });
+});
diff --git a/vendor/vendor.js b/vendor/vendor.js
index 7076cc45..82535b7a 100644
--- a/vendor/vendor.js
+++ b/vendor/vendor.js
@@ -14,3 +14,5 @@ var vendor = {
"weather-icons-wind.css": "node_modules/weathericons/css/weather-icons-wind.css",
"font-awesome.css": "node_modules/font-awesome/css/font-awesome.min.css"
};
+
+if (typeof module !== "undefined"){module.exports = vendor;}
From 5d7cfc1c1087ee8faebbc171a8f775ce731dfe74 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Sat, 25 Mar 2017 19:00:36 -0300
Subject: [PATCH 02/83] test for modules set in
modules/default/defaultmodules.js
---
.../unit/global_vars/defaults_modules_spec.js | 60 +++++++++++++++++++
1 file changed, 60 insertions(+)
create mode 100644 tests/unit/global_vars/defaults_modules_spec.js
diff --git a/tests/unit/global_vars/defaults_modules_spec.js b/tests/unit/global_vars/defaults_modules_spec.js
new file mode 100644
index 00000000..f3ef7fcb
--- /dev/null
+++ b/tests/unit/global_vars/defaults_modules_spec.js
@@ -0,0 +1,60 @@
+var fs = require("fs");
+var path = require("path");
+var chai = require("chai");
+var expect = chai.expect;
+var vm = require("vm");
+
+before(function() {
+ var basedir = path.join(__dirname, "../../..");
+
+ var fileName = "js/app.js";
+ var filePath = path.join(basedir, fileName);
+ var code = fs.readFileSync(filePath);
+
+ this.sandbox = {
+ module: {},
+ __dirname: path.dirname(filePath),
+ global: {},
+ console: {
+ log: function() { /*console.log("console.log(", arguments, ")");*/ }
+ },
+ process: {
+ on: function() { /*console.log("process.on called with: ", arguments);*/ },
+ env: {}
+ }
+ };
+
+ this.sandbox.require = function(filename) {
+ // This modifies the global slightly,
+ // but supplies vm with essential code
+ return require(filename);
+ };
+
+ vm.runInNewContext(code, this.sandbox, fileName);
+});
+
+after(function() {
+ //console.log(global);
+});
+
+describe("Default modules set in modules/default/defaultmodules.js", function() {
+
+ var expectedDefaultModules = [
+ "alert",
+ "calendar",
+ "clock",
+ "compliments",
+ "currentweather",
+ "helloworld",
+ "newsfeed",
+ "weatherforecast",
+ "updatenotification"
+ ];
+
+ expectedDefaultModules.forEach(defaultModule => {
+ it(`contains default module "${defaultModule}"`, function() {
+ expect(this.sandbox.defaultModules).to.include(defaultModule);
+ });
+ });
+
+});
From 0c884c26699327adeedb169e0f93c6f922a0c1ed Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Sat, 25 Mar 2017 23:52:18 -0300
Subject: [PATCH 03/83] Test for default module directories
---
tests/unit/global_vars/defaults_modules_spec.js | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tests/unit/global_vars/defaults_modules_spec.js b/tests/unit/global_vars/defaults_modules_spec.js
index f3ef7fcb..8df0d073 100644
--- a/tests/unit/global_vars/defaults_modules_spec.js
+++ b/tests/unit/global_vars/defaults_modules_spec.js
@@ -57,4 +57,10 @@ describe("Default modules set in modules/default/defaultmodules.js", function()
});
});
+ expectedDefaultModules.forEach(defaultModule => {
+ it(`contains a folder for modules/default/${defaultModule}"`, function() {
+ expect(fs.existsSync(path.join(this.sandbox.global.root_path, "modules/default", defaultModule))).to.equal(true);
+ });
+ });
+
});
From de4d0989e939380ca5eb3d9e8bce398a7c1fe954 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Sun, 26 Mar 2017 00:49:00 -0300
Subject: [PATCH 04/83] Add unit test function capFist calendar module
---
tests/unit/functions/calendar_spec.js | 36 +++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
create mode 100644 tests/unit/functions/calendar_spec.js
diff --git a/tests/unit/functions/calendar_spec.js b/tests/unit/functions/calendar_spec.js
new file mode 100644
index 00000000..435e2e4d
--- /dev/null
+++ b/tests/unit/functions/calendar_spec.js
@@ -0,0 +1,36 @@
+var fs = require("fs");
+var path = require("path");
+var chai = require("chai");
+var expect = chai.expect;
+var vm = require("vm");
+
+
+describe("Functions into modules/default/calendar/calendar.js", function() {
+
+ // Fake for use by calendar.js
+ Module = {}
+ Module.definitions = {};
+ Module.register = function (name, moduleDefinition) {
+ Module.definitions[name] = moduleDefinition;
+ };
+
+ // load calendar.js
+ require("../../../modules/default/calendar/calendar.js");
+
+ describe("capFirst", function() {
+ words = {
+ 'rodrigo': 'Rodrigo',
+ '123m': '123m',
+ 'magic mirror': 'Magic mirror',
+ ',a': ',a',
+ "ñandú": "Ñandú"
+ };
+
+ Object.keys(words).forEach(word => {
+ it(`for ${word} should return ${words[word]}`, function() {
+ expect(Module.definitions.calendar.capFirst(word)).to.equal(words[word]);
+ });
+ });
+ });
+});
+
From f4408aa72c93509404d0beb024fa78b2316efce6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Sun, 26 Mar 2017 16:31:57 -0300
Subject: [PATCH 05/83] Add link for information about Beaufort Wind Scale for
ms2Beaufort function in currentweather and weatherforecast module
---
modules/default/currentweather/currentweather.js | 4 ++++
modules/default/weatherforecast/weatherforecast.js | 4 ++++
2 files changed, 8 insertions(+)
diff --git a/modules/default/currentweather/currentweather.js b/modules/default/currentweather/currentweather.js
index 1b55e255..5496010b 100644
--- a/modules/default/currentweather/currentweather.js
+++ b/modules/default/currentweather/currentweather.js
@@ -386,6 +386,10 @@ Module.register("currentweather",{
/* ms2Beaufort(ms)
* Converts m2 to beaufort (windspeed).
*
+ * see:
+ * http://www.spc.noaa.gov/faq/tornado/beaufort.html
+ * https://en.wikipedia.org/wiki/Beaufort_scale#Modern_scale
+ *
* argument ms number - Windspeed in m/s.
*
* return number - Windspeed in beaufort.
diff --git a/modules/default/weatherforecast/weatherforecast.js b/modules/default/weatherforecast/weatherforecast.js
index b269a44a..698c5651 100644
--- a/modules/default/weatherforecast/weatherforecast.js
+++ b/modules/default/weatherforecast/weatherforecast.js
@@ -335,6 +335,10 @@ Module.register("weatherforecast",{
/* ms2Beaufort(ms)
* Converts m2 to beaufort (windspeed).
*
+ * see:
+ * http://www.spc.noaa.gov/faq/tornado/beaufort.html
+ * https://en.wikipedia.org/wiki/Beaufort_scale#Modern_scale
+ *
* argument ms number - Windspeed in m/s.
*
* return number - Windspeed in beaufort.
From f2c3fc20deb72aa4a3baef7c55fada3cd897acf5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Mon, 3 Apr 2017 15:50:25 -0300
Subject: [PATCH 06/83] ignore git file for vim and patch
---
.gitignore | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/.gitignore b/.gitignore
index e130a22e..ecb483e8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -65,3 +65,13 @@ Temporary Items
# Ignore changes to the custom css files.
/css/custom.css
+
+# Vim
+## swap
+[._]*.s[a-w][a-z]
+[._]s[a-w][a-z]
+
+## diff patch
+*.orig
+*.rej
+*.bak
From 31609a8abac6175bdbcaa1f2dc5bf9228993271c Mon Sep 17 00:00:00 2001
From: Michael Teeuw
Date: Thu, 6 Apr 2017 16:34:16 +0200
Subject: [PATCH 07/83] Add missing dependency.
---
package.json | 1 +
1 file changed, 1 insertion(+)
diff --git a/package.json b/package.json
index a190f12d..0d3d9509 100644
--- a/package.json
+++ b/package.json
@@ -46,6 +46,7 @@
"time-grunt": "latest"
},
"dependencies": {
+ "body-parser": "^1.17.1",
"colors": "^1.1.2",
"electron": "^1.4.7",
"express": "^4.14.0",
From d68d4c2c76bad5e44f8d0dafa9ee456b582966d2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Fri, 7 Apr 2017 10:08:42 -0300
Subject: [PATCH 08/83] Add Changelog vendor_spec
---
CHANGELOG.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 22aa51ad..3ece1e37 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add in option to wrap long calendar events to multiple lines using `wrapEvents` configuration option.
- Add test e2e `show title newsfeed` for newsfeed module.
- Add task to check configuration file.
+- Add test check URLs of vendors.
### Updated
- Added missing keys to Polish translation.
From d5e902679b45e64c88b18cd23f227c83e141410c Mon Sep 17 00:00:00 2001
From: Sebastian Limbach
Date: Wed, 12 Apr 2017 20:19:24 +0200
Subject: [PATCH 09/83] Change linux distribution
I changed the linux distribution from node, which used Debian, to an arm based linux distribution so the application can be used on an arm based system (e.g. Raspberry)
---
Dockerfile | 31 ++++++++++++++++++-------------
README.md | 2 +-
docker-entrypoint.sh | 2 +-
3 files changed, 20 insertions(+), 15 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index 32939f95..4ee863fb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,22 +1,27 @@
-FROM node:latest
+FROM izone/arm:node
+# Set env variables
ENV NODE_ENV production
ENV MM_PORT 8080
+
WORKDIR /opt/magic_mirror
-COPY . .
-COPY /modules unmount_modules
-COPY /config unmount_config
+# Cache node_modules
+COPY package.json /opt/magic_mirror
+RUN npm install
-RUN apt-get update \
- && apt-get -qy install tofrodos dos2unix \
- && chmod -R 777 vendor \
- && npm install \
- && cd vendor \
- && npm install \
- && cd .. \
- && dos2unix docker-entrypoint.sh \
- && chmod +x docker-entrypoint.sh
+# Copy all needed files
+COPY . /opt/magic_mirror
+
+# Save/Cache config and modules folder for docker-entrypoint
+COPY /modules /opt/magic_mirror/unmount_modules
+COPY /config /opt/magic_mirror/unmount_config
+
+# Convert docker-entrypoint.sh to unix format and grant execution privileges
+RUN apk update \
+ && apk add dos2unix --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted \
+ && dos2unix docker-entrypoint.sh \
+ && chmod +x docker-entrypoint.sh
EXPOSE $MM_PORT
ENTRYPOINT ["/opt/magic_mirror/docker-entrypoint.sh"]
diff --git a/README.md b/README.md
index 4fd480bf..29e5b65f 100644
--- a/README.md
+++ b/README.md
@@ -59,7 +59,7 @@ docker run -d \
--volume ~/magic_mirror/config:/opt/magic_mirror/config \
--volume ~/magic_mirror/modules:/opt/magic_mirror/modules \
--name magic_mirror \
- MichMich/MagicMirror
+ michmich/magicmirror
```
| **Volumes** | **Description** |
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
index 5d37b4a6..91d7ebc7 100644
--- a/docker-entrypoint.sh
+++ b/docker-entrypoint.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
if [ ! -f /opt/magic_mirror/modules ]; then
cp -R /opt/magic_mirror/unmount_modules/. /opt/magic_mirror/modules
From b688dcd4ba75d2d93d757b82a4c787fd2c8801de Mon Sep 17 00:00:00 2001
From: Sebastian Limbach
Date: Wed, 12 Apr 2017 20:20:30 +0200
Subject: [PATCH 10/83] Add changes to changelog
---
CHANGELOG.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3ece1e37..675db645 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [2.1.2] - Unreleased
### Changed
+- Change Docker base image (Debian + Node) to an arm based distro (AlpineARM + Node) ([#846](https://github.com/MichMich/MagicMirror/pull/846))
- Fix the dockerfile to have it running from the first time.
### Added
From 4f844abc0c795d9ebf280010743b7d0c39a17a91 Mon Sep 17 00:00:00 2001
From: Sebastian Limbach
Date: Wed, 12 Apr 2017 20:21:51 +0200
Subject: [PATCH 11/83] Change copy flag to not replace existing modules
---
docker-entrypoint.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
index 91d7ebc7..3ab97502 100644
--- a/docker-entrypoint.sh
+++ b/docker-entrypoint.sh
@@ -1,7 +1,7 @@
#!/bin/sh
if [ ! -f /opt/magic_mirror/modules ]; then
- cp -R /opt/magic_mirror/unmount_modules/. /opt/magic_mirror/modules
+ cp -Rn /opt/magic_mirror/unmount_modules/. /opt/magic_mirror/modules
fi
if [ ! -f /opt/magic_mirror/config ]; then
From 467b1ad4f16131a67e878c6782b40773c5d0f9a5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Wed, 12 Apr 2017 22:29:20 -0300
Subject: [PATCH 12/83] Add test match week number with clock module with
configuration showWeek
---
CHANGELOG.md | 1 +
package.json | 1 +
tests/e2e/modules/clock_spec.js | 8 ++++++++
3 files changed, 10 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 675db645..3060c6c7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add test e2e `show title newsfeed` for newsfeed module.
- Add task to check configuration file.
- Add test check URLs of vendors.
+- Add test of match current week number on clock module with showWeek configuration.
### Updated
- Added missing keys to Polish translation.
diff --git a/package.json b/package.json
index c3bdae63..1af96f22 100644
--- a/package.json
+++ b/package.json
@@ -34,6 +34,7 @@
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
+ "current-week-number": "^1.0.7",
"grunt": "latest",
"grunt-eslint": "latest",
"grunt-jsonlint": "latest",
diff --git a/tests/e2e/modules/clock_spec.js b/tests/e2e/modules/clock_spec.js
index a24b38d6..948b1c31 100644
--- a/tests/e2e/modules/clock_spec.js
+++ b/tests/e2e/modules/clock_spec.js
@@ -119,6 +119,14 @@ describe("Clock module", function () {
return app.client.waitUntilWindowLoaded()
.getText(".clock .week").should.eventually.match(weekRegex);
});
+
+ it("shows week with correct number of week of year", function() {
+ const currentWeekNumber = require('current-week-number')();
+ const weekToShow = "Week " + currentWeekNumber;
+ return app.client.waitUntilWindowLoaded()
+ .getText(".clock .week").should.eventually.equal(weekToShow);
+ });
+
});
});
From 7e9c4848fb7100a26e52c36276c2b862db16301e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Thu, 13 Apr 2017 08:40:37 -0300
Subject: [PATCH 13/83] Sort dependencies in the file package.json
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index c3bdae63..8157fed8 100644
--- a/package.json
+++ b/package.json
@@ -40,8 +40,8 @@
"grunt-markdownlint": "^1.0.13",
"grunt-stylelint": "latest",
"grunt-yamllint": "latest",
- "jshint": "^2.9.4",
"http-auth": "^3.1.3",
+ "jshint": "^2.9.4",
"mocha": "^3.2.0",
"spectron": "^3.4.1",
"stylelint-config-standard": "latest",
From 93965fd98b91eb753f7da9baf101506a8b3254b0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Thu, 13 Apr 2017 23:44:37 -0300
Subject: [PATCH 14/83] Add changelog test modules/default/defaultmodules.js
---
CHANGELOG.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3ece1e37..f6685ea3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add test e2e `show title newsfeed` for newsfeed module.
- Add task to check configuration file.
- Add test check URLs of vendors.
+- Add test default modules present modules/default/defaultmodules.js.
### Updated
- Added missing keys to Polish translation.
From 9ebee8c03e79eadfca183bfee9e4fe1c4e5b7ab5 Mon Sep 17 00:00:00 2001
From: Sebastian Limbach
Date: Sun, 16 Apr 2017 21:17:07 +0200
Subject: [PATCH 15/83] Delete all Docker related files
The Docker images are outsourced to https://github.com/bastilimbach/docker-MagicMirror
---
.dockerignore | 72 --------------------------------------------
Dockerfile | 27 -----------------
docker-entrypoint.sh | 11 -------
3 files changed, 110 deletions(-)
delete mode 100644 .dockerignore
delete mode 100644 Dockerfile
delete mode 100644 docker-entrypoint.sh
diff --git a/.dockerignore b/.dockerignore
deleted file mode 100644
index 3b406630..00000000
--- a/.dockerignore
+++ /dev/null
@@ -1,72 +0,0 @@
-# Various Node ignoramuses.
-
-logs
-*.log
-npm-debug.log*
-pids
-*.pid
-*.seed
-lib-cov
-coverage
-.grunt
-.lock-wscript
-build/Release
-node_modules
-jspm_modules
-.npm
-.node_repl_history
-
-# Various Windows ignoramuses.
-Thumbs.db
-ehthumbs.db
-Desktop.ini
-$RECYCLE.BIN/
-*.cab
-*.msi
-*.msm
-*.msp
-*.lnk
-
-# Various OSX ignoramuses.
-.DS_Store
-.AppleDouble
-.LSOverride
-Icon
-._*
-.DocumentRevisions-V100
-.fseventsd
-.Spotlight-V100
-.TemporaryItems
-.Trashes
-.VolumeIcon.icns
-.AppleDB
-.AppleDesktop
-Network Trash Folder
-Temporary Items
-.apdisk
-
-# Various Linux ignoramuses.
-
-.fuse_hidden*
-.directory
-.Trash-*
-
-# Various Magic Mirror ignoramuses and anti-ignoramuses.
-
-# Don't ignore the node_helper core module.
-!/modules/node_helper
-!/modules/node_helper/**
-
-# Ignore all modules except the default modules.
-/modules/**
-!/modules/default/**
-
-# Ignore changes to the custom css files.
-/css/custom.css
-
-# Ignore unnecessary files for docker
-CHANGELOG.md
-LICENSE.md
-README.md
-Gruntfile.js
-.*
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 4ee863fb..00000000
--- a/Dockerfile
+++ /dev/null
@@ -1,27 +0,0 @@
-FROM izone/arm:node
-
-# Set env variables
-ENV NODE_ENV production
-ENV MM_PORT 8080
-
-WORKDIR /opt/magic_mirror
-
-# Cache node_modules
-COPY package.json /opt/magic_mirror
-RUN npm install
-
-# Copy all needed files
-COPY . /opt/magic_mirror
-
-# Save/Cache config and modules folder for docker-entrypoint
-COPY /modules /opt/magic_mirror/unmount_modules
-COPY /config /opt/magic_mirror/unmount_config
-
-# Convert docker-entrypoint.sh to unix format and grant execution privileges
-RUN apk update \
- && apk add dos2unix --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted \
- && dos2unix docker-entrypoint.sh \
- && chmod +x docker-entrypoint.sh
-
-EXPOSE $MM_PORT
-ENTRYPOINT ["/opt/magic_mirror/docker-entrypoint.sh"]
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
deleted file mode 100644
index 3ab97502..00000000
--- a/docker-entrypoint.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-if [ ! -f /opt/magic_mirror/modules ]; then
- cp -Rn /opt/magic_mirror/unmount_modules/. /opt/magic_mirror/modules
-fi
-
-if [ ! -f /opt/magic_mirror/config ]; then
- cp -Rn /opt/magic_mirror/unmount_config/. /opt/magic_mirror/config
-fi
-
-node serveronly
From ac53d64ffc2c7767087193719df397b576131e5c Mon Sep 17 00:00:00 2001
From: Sebastian Limbach
Date: Sun, 16 Apr 2017 21:17:52 +0200
Subject: [PATCH 16/83] Change docker hub url
---
README.md | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 29e5b65f..c19ee20f 100644
--- a/README.md
+++ b/README.md
@@ -59,7 +59,7 @@ docker run -d \
--volume ~/magic_mirror/config:/opt/magic_mirror/config \
--volume ~/magic_mirror/modules:/opt/magic_mirror/modules \
--name magic_mirror \
- michmich/magicmirror
+ bastilimbach/docker-magicmirror
```
| **Volumes** | **Description** |
@@ -75,6 +75,8 @@ var config = {
};
```
+If you want to run the server on a raspberry pi, use the `raspberry` tag. (bastilimbach/docker-magicmirror:raspberry)
+
#### Manual
1. Download and install the latest Node.js version.
From 058b4bbe6cc3c037b02ced87b74996875b0dc312 Mon Sep 17 00:00:00 2001
From: Sebastian Limbach
Date: Sun, 16 Apr 2017 22:48:05 +0200
Subject: [PATCH 17/83] Add changes to changelog
---
CHANGELOG.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 675db645..29dd6b50 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [2.1.2] - Unreleased
### Changed
+- Revert Docker related changes in favor of [docker-MagicMirror](https://github.com/bastilimbach/docker-MagicMirror). All Docker images are outsourced. ([#856](https://github.com/MichMich/MagicMirror/pull/856))
- Change Docker base image (Debian + Node) to an arm based distro (AlpineARM + Node) ([#846](https://github.com/MichMich/MagicMirror/pull/846))
- Fix the dockerfile to have it running from the first time.
From c1830aa37c20717a2923b0f581e048f29f3e38d6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Tue, 18 Apr 2017 22:21:55 -0300
Subject: [PATCH 18/83] Fix message port starting server
---
js/server.js | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/js/server.js b/js/server.js
index 36ebf740..2fc8dc6f 100644
--- a/js/server.js
+++ b/js/server.js
@@ -15,14 +15,13 @@ var fs = require("fs");
var helmet = require("helmet");
var Server = function(config, callback) {
- console.log("Starting server on port " + config.port + " ... ");
var port = config.port;
if (process.env.MM_PORT) {
port = process.env.MM_PORT;
}
- console.log("Starting server op port " + port + " ... ");
+ console.log("Starting server on port " + port + " ... ");
server.listen(port, config.address ? config.address : null);
From 2b2136867d17eaef4a8c702de67e588d817a8525 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Tue, 18 Apr 2017 22:31:16 -0300
Subject: [PATCH 19/83] Add change double message port in starting server
---
CHANGELOG.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 675db645..a3ba0bcf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- Fix instruction in README for using automatically installer script.
+- Fix double message about port when server is starting
## [2.1.1] - 2017-04-01
From 298e32aadae970a56b8d5679417bc0a7b92c0053 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Tue, 18 Apr 2017 22:38:29 -0300
Subject: [PATCH 20/83] Fix Grunt error 124:38 error Strings must use
doublequote quotes
---
tests/e2e/modules/clock_spec.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/e2e/modules/clock_spec.js b/tests/e2e/modules/clock_spec.js
index 948b1c31..6f776f12 100644
--- a/tests/e2e/modules/clock_spec.js
+++ b/tests/e2e/modules/clock_spec.js
@@ -121,7 +121,7 @@ describe("Clock module", function () {
});
it("shows week with correct number of week of year", function() {
- const currentWeekNumber = require('current-week-number')();
+ const currentWeekNumber = require("current-week-number")();
const weekToShow = "Week " + currentWeekNumber;
return app.client.waitUntilWindowLoaded()
.getText(".clock .week").should.eventually.equal(weekToShow);
From fd2919fd1ca90b08557d88d49cf6effa1ebe05ff Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Tue, 18 Apr 2017 23:14:07 -0300
Subject: [PATCH 21/83] Remove commented log not used in js/socketclient.js
---
js/socketclient.js | 1 -
1 file changed, 1 deletion(-)
diff --git a/js/socketclient.js b/js/socketclient.js
index 8ea468a8..baead68e 100644
--- a/js/socketclient.js
+++ b/js/socketclient.js
@@ -22,7 +22,6 @@ var MMSocket = function(moduleName) {
// register catch all.
self.socket.on("*", function(notification, payload) {
if (notification !== "*") {
- //console.log('Received notification: ' + notification +', payload: ' + payload);
notificationCallback(notification, payload);
}
});
From b41bda569d96a516cf1374509e51ff2ea03070ae Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Tue, 18 Apr 2017 23:34:14 -0300
Subject: [PATCH 22/83] Change method for check if pass dev parameter
---
js/electron.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/js/electron.js b/js/electron.js
index 1f16092b..fbbdba94 100644
--- a/js/electron.js
+++ b/js/electron.js
@@ -51,7 +51,7 @@ function createWindow() {
mainWindow.loadURL("http://localhost:" + config.port);
// Open the DevTools if run with "npm start dev"
- if(process.argv[2] == "dev") {
+ if (process.argv.includes("dev")) {
mainWindow.webContents.openDevTools();
}
From 320ce372f5ca85b3e0c97b5f4eeeaf488c097337 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Wed, 19 Apr 2017 00:39:18 -0300
Subject: [PATCH 23/83] Add changelog unit test capFirst function on calendar
module
---
CHANGELOG.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a0816b3e..2dfa5b2c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -16,6 +16,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add test check URLs of vendors.
- Add test of match current week number on clock module with showWeek configuration.
- Add test default modules present modules/default/defaultmodules.js.
+- Add unit test calendar_modules function capFirst.
### Updated
- Added missing keys to Polish translation.
From 4904bd53efaa67c839592f8f1c687691155bc886 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Wed, 19 Apr 2017 00:45:55 -0300
Subject: [PATCH 24/83] Fix grunt double quotes unit calendar_spec
---
tests/unit/functions/calendar_spec.js | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/unit/functions/calendar_spec.js b/tests/unit/functions/calendar_spec.js
index 435e2e4d..2c7f62f8 100644
--- a/tests/unit/functions/calendar_spec.js
+++ b/tests/unit/functions/calendar_spec.js
@@ -19,10 +19,10 @@ describe("Functions into modules/default/calendar/calendar.js", function() {
describe("capFirst", function() {
words = {
- 'rodrigo': 'Rodrigo',
- '123m': '123m',
- 'magic mirror': 'Magic mirror',
- ',a': ',a',
+ "rodrigo": "Rodrigo",
+ "123m": "123m",
+ "magic mirror": "Magic mirror",
+ ",a": ",a",
"ñandú": "Ñandú"
};
From 31e63b576b193c618420dfba6339862284523fca Mon Sep 17 00:00:00 2001
From: Johan Eliasson
Date: Fri, 21 Apr 2017 23:02:33 +0200
Subject: [PATCH 25/83] Indent and double-quoute
---
modules/default/compliments/README.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/default/compliments/README.md b/modules/default/compliments/README.md
index 171c86c0..ca75b475 100644
--- a/modules/default/compliments/README.md
+++ b/modules/default/compliments/README.md
@@ -88,7 +88,7 @@ config: {
],
afternoon: [
"Hello, beauty!",
- 'You look sexy!',
+ "You look sexy!",
"Looking good today!"
],
evening: [
@@ -110,9 +110,9 @@ around them ("morning", "afternoon", "evening", "snow", "rain", etc.).
#### Example compliments.json file:
````json
{
- "anytime" : [
- "Hey there sexy!"
- ],
+ "anytime" : [
+ "Hey there sexy!"
+ ],
"morning" : [
"Good morning, sunshine!",
"Who needs coffee when you have your smile?",
From 581af762f9e022f635daa0186c564691a27ad9fd Mon Sep 17 00:00:00 2001
From: fewieden
Date: Sat, 22 Apr 2017 11:35:42 +0200
Subject: [PATCH 26/83] bugfix for duplicated compliments
---
CHANGELOG.md | 1 +
modules/default/compliments/compliments.js | 7 +++----
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a0816b3e..53257e4a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -23,6 +23,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- Fix instruction in README for using automatically installer script.
+- Bug of duplicated compliments as described in [here](https://forum.magicmirror.builders/topic/2381/compliments-module-stops-cycling-compliments).
## [2.1.1] - 2017-04-01
diff --git a/modules/default/compliments/compliments.js b/modules/default/compliments/compliments.js
index b9f2011e..6cca95fc 100644
--- a/modules/default/compliments/compliments.js
+++ b/modules/default/compliments/compliments.js
@@ -99,11 +99,11 @@ Module.register("compliments", {
var compliments = null;
if (hour >= 3 && hour < 12) {
- compliments = this.config.compliments.morning;
+ compliments = this.config.compliments.morning.slice(0);
} else if (hour >= 12 && hour < 17) {
- compliments = this.config.compliments.afternoon;
+ compliments = this.config.compliments.afternoon.slice(0);
} else {
- compliments = this.config.compliments.evening;
+ compliments = this.config.compliments.evening.slice(0);
}
if (typeof compliments === "undefined") {
@@ -117,7 +117,6 @@ Module.register("compliments", {
compliments.push.apply(compliments, this.config.compliments.anytime);
return compliments;
-
},
/* complimentFile(callback)
From 778107aae9dd022116c2ee575ebda6efa2b778f2 Mon Sep 17 00:00:00 2001
From: fewieden
Date: Sat, 22 Apr 2017 12:09:52 +0200
Subject: [PATCH 27/83] add edge case anytime only
---
modules/default/compliments/compliments.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/default/compliments/compliments.js b/modules/default/compliments/compliments.js
index 6cca95fc..cd87bb78 100644
--- a/modules/default/compliments/compliments.js
+++ b/modules/default/compliments/compliments.js
@@ -98,11 +98,11 @@ Module.register("compliments", {
var hour = moment().hour();
var compliments = null;
- if (hour >= 3 && hour < 12) {
+ if (hour >= 3 && hour < 12 && this.config.compliments.hasOwnProperty("morning")) {
compliments = this.config.compliments.morning.slice(0);
- } else if (hour >= 12 && hour < 17) {
+ } else if (hour >= 12 && hour < 17 && this.config.compliments.hasOwnProperty("afternoon")) {
compliments = this.config.compliments.afternoon.slice(0);
- } else {
+ } else if(this.config.compliments.hasOwnProperty("evening")) {
compliments = this.config.compliments.evening.slice(0);
}
From c4282a3593b1519d7ded4587cf3f1e056ca19c54 Mon Sep 17 00:00:00 2001
From: fewieden
Date: Sat, 22 Apr 2017 12:25:51 +0200
Subject: [PATCH 28/83] null isn't typeof undefined
---
modules/default/compliments/compliments.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/default/compliments/compliments.js b/modules/default/compliments/compliments.js
index cd87bb78..a0af458d 100644
--- a/modules/default/compliments/compliments.js
+++ b/modules/default/compliments/compliments.js
@@ -96,7 +96,7 @@ Module.register("compliments", {
*/
complimentArray: function() {
var hour = moment().hour();
- var compliments = null;
+ var compliments;
if (hour >= 3 && hour < 12 && this.config.compliments.hasOwnProperty("morning")) {
compliments = this.config.compliments.morning.slice(0);
From f730d2fc274d7727c1a6b0fcede9ff10e906efec Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Sat, 22 Apr 2017 21:23:48 -0300
Subject: [PATCH 29/83] Add changelog test directories for default modules
---
CHANGELOG.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index de0802f4..e44d591c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,6 +17,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add test of match current week number on clock module with showWeek configuration.
- Add test default modules present modules/default/defaultmodules.js.
- Add unit test calendar_modules function capFirst.
+- Add test for check if exits the directories present in defaults modules.
### Updated
- Added missing keys to Polish translation.
From 0e486b45e18ec49c195d2219721266173f55ffcb Mon Sep 17 00:00:00 2001
From: Mikko Tapionlinna
Date: Mon, 24 Apr 2017 23:54:32 +0300
Subject: [PATCH 30/83] Support showing wind direction with an arrow
As described in https://github.com/MichMich/MagicMirror/issues/871 this feature lets user use arrow instead of an abbreviation for wind directions. This can be especially helpful on languages like Finnish that do not have all the compass directions English has.
---
modules/default/currentweather/currentweather.js | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/modules/default/currentweather/currentweather.js b/modules/default/currentweather/currentweather.js
index 6e23cdcf..f0cb82b5 100644
--- a/modules/default/currentweather/currentweather.js
+++ b/modules/default/currentweather/currentweather.js
@@ -94,6 +94,7 @@ Module.register("currentweather",{
this.windSpeed = null;
this.windDirection = null;
+ this.windDeg = null;
this.sunriseSunsetTime = null;
this.sunriseSunsetIcon = null;
this.temperature = null;
@@ -122,7 +123,13 @@ Module.register("currentweather",{
if (this.config.showWindDirection) {
var windDirection = document.createElement("sup");
- windDirection.innerHTML = " " + this.translate(this.windDirection);
+ if (this.config.showWindDirectionAsArrow) {
+ if(this.windDeg !== null) {
+ windDirection.innerHTML = " ";
+ }
+ } else {
+ windDirection.innerHTML = " " + this.translate(this.windDirection);
+ }
small.appendChild(windDirection);
}
var spacer = document.createElement("span");
@@ -329,6 +336,7 @@ Module.register("currentweather",{
this.windDirection = this.deg2Cardinal(data.wind.deg);
+ this.windDeg = data.wind.deg;
this.weatherType = this.config.iconTable[data.weather[0].icon];
var now = new Date();
From b26f9e316d0fa1f006fb7510146f4a103d432f77 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Mon, 24 Apr 2017 22:49:15 -0300
Subject: [PATCH 31/83] ADD fixme wanted where the day if sunday for test
number of week
---
tests/e2e/modules/clock_spec.js | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/tests/e2e/modules/clock_spec.js b/tests/e2e/modules/clock_spec.js
index 6f776f12..89d7e9e9 100644
--- a/tests/e2e/modules/clock_spec.js
+++ b/tests/e2e/modules/clock_spec.js
@@ -121,10 +121,12 @@ describe("Clock module", function () {
});
it("shows week with correct number of week of year", function() {
- const currentWeekNumber = require("current-week-number")();
- const weekToShow = "Week " + currentWeekNumber;
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .week").should.eventually.equal(weekToShow);
+
+ it("FIXME: if the day is a sunday this not match");
+ // const currentWeekNumber = require("current-week-number")();
+ // const weekToShow = "Week " + currentWeekNumber;
+ // return app.client.waitUntilWindowLoaded()
+ // .getText(".clock .week").should.eventually.equal(weekToShow);
});
});
From ee88897b1824f3bfc585b639f60fd25ca6c38ac9 Mon Sep 17 00:00:00 2001
From: Mikko Tapionlinna
Date: Tue, 25 Apr 2017 23:15:34 +0300
Subject: [PATCH 32/83] Add better support for translations with backwards
compatibility
---
js/module.js | 16 ++++++++++------
js/translator.js | 27 +++++++++++++++++++++------
modules/default/calendar/calendar.js | 7 ++++++-
translations/fi.json | 2 +-
4 files changed, 38 insertions(+), 14 deletions(-)
diff --git a/js/module.js b/js/module.js
index 457b9772..0d51e559 100644
--- a/js/module.js
+++ b/js/module.js
@@ -272,14 +272,18 @@ var Module = Class.extend({
}
},
- /* translate(key, defaultValue)
- * Request the translation for a given key.
+ /* translate(key, defaultValueOrVariables, defaultValue)
+ * Request the translation for a given key with optional variables and default value.
*
- * argument key string - The key of the string to translage
- * argument defaultValue string - The default value if no translation was found. (Optional)
+ * argument key string - The key of the string to translate
+ * argument defaultValueOrVariables string/object - The default value or variables for translating. (Optional)
+ * argument defaultValue string - The default value with variables. (Optional)
*/
- translate: function (key, defaultValue) {
- return Translator.translate(this, key) || defaultValue || "";
+ translate: function (key, defaultValueOrVariables, defaultValue) {
+ if(typeof defaultValueOrVariables === "object") {
+ return Translator.translate(this, key, defaultValueOrVariables) || defaultValue || "";
+ }
+ return Translator.translate(this, key) || defaultValueOrVariables || "";
},
/* updateDom(speed)
diff --git a/js/translator.js b/js/translator.js
index d715b383..b82a739e 100644
--- a/js/translator.js
+++ b/js/translator.js
@@ -111,32 +111,47 @@ var Translator = (function() {
translations: {},
translationsFallback: {},
- /* translate(module, key)
+ /* translate(module, key, variables)
* Load a translation for a given key for a given module.
*
* argument module Module - The module to load the translation for.
* argument key string - The key of the text to translate.
+ * argument variables - The variables to use within the translation template (optional)
*/
- translate: function(module, key) {
+ translate: function(module, key, variables) {
+ variables = variables || {}; //Empty object by default
+
+ // Combines template and variables like:
+ // template: "Please wait for {timeToWait} before continuing with {work}."
+ // variables: {timeToWait: "2 hours", work: "painting"}
+ // to: "Please wait for 2 hours before continuing with painting."
+ function createStringFromTemplate(template, variables) {
+ if(variables.fallback && !template.match(new RegExp("\{.+\}"))) {
+ template = variables.fallback;
+ }
+ return template.replace(new RegExp("\{([^\}]+)\}", "g"), function(_unused, varName){
+ return variables[varName] || "{"+varName+"}";
+ });
+ }
if(this.translations[module.name] && key in this.translations[module.name]) {
// Log.log("Got translation for " + key + " from module translation: ");
- return this.translations[module.name][key];
+ return createStringFromTemplate(this.translations[module.name][key], variables);
}
if (key in this.coreTranslations) {
// Log.log("Got translation for " + key + " from core translation.");
- return this.coreTranslations[key];
+ return createStringFromTemplate(this.coreTranslations[key], variables);
}
if (this.translationsFallback[module.name] && key in this.translationsFallback[module.name]) {
// Log.log("Got translation for " + key + " from module translation fallback.");
- return this.translationsFallback[module.name][key];
+ return createStringFromTemplate(this.translationsFallback[module.name][key], variables);
}
if (key in this.coreTranslationsFallback) {
// Log.log("Got translation for " + key + " from core translation fallback.");
- return this.coreTranslationsFallback[key];
+ return createStringFromTemplate(this.coreTranslationsFallback[key], variables);
}
return key;
diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js
index fa77c94a..9657ece4 100644
--- a/modules/default/calendar/calendar.js
+++ b/modules/default/calendar/calendar.js
@@ -265,7 +265,12 @@ Module.register("calendar", {
}
}
} else {
- timeWrapper.innerHTML = this.capFirst(this.translate("RUNNING")) + " " + moment(event.endDate, "x").fromNow(true);
+ timeWrapper.innerHTML = this.capFirst(
+ this.translate("RUNNING", {
+ fallback: this.translate("RUNNING") + " {timeUntilEnd}",
+ timeUntilEnd: moment(event.endDate, "x").fromNow(true)
+ })
+ );
}
}
//timeWrapper.innerHTML += ' - '+ moment(event.startDate,'x').format('lll');
diff --git a/translations/fi.json b/translations/fi.json
index 08bc4060..c013e310 100644
--- a/translations/fi.json
+++ b/translations/fi.json
@@ -4,7 +4,7 @@
"TODAY": "Tänään",
"TOMORROW": "Huomenna",
"DAYAFTERTOMORROW": "Ylihuomenna",
- "RUNNING": "Meneillään",
+ "RUNNING": "Päättyy {timeUntilEnd} päästä",
"EMPTY": "Ei tulevia tapahtumia.",
"N": "P",
From f58787bb50fd9b34e0279b62eb3d474c750591f3 Mon Sep 17 00:00:00 2001
From: Mikko Tapionlinna
Date: Fri, 28 Apr 2017 13:58:52 +0300
Subject: [PATCH 33/83] Add documentation for showWindDirectionAsArrow
---
modules/default/currentweather/README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/default/currentweather/README.md b/modules/default/currentweather/README.md
index d70ec297..bc3d2f3d 100644
--- a/modules/default/currentweather/README.md
+++ b/modules/default/currentweather/README.md
@@ -40,6 +40,7 @@ The following properties can be configured:
| `showPeriod` | Show the period (am/pm) with 12 hour format
**Possible values:** `true` or `false`
**Default value:** `true`
| `showPeriodUpper` | Show the period (AM/PM) with 12 hour format as uppercase
**Possible values:** `true` or `false`
**Default value:** `false`
| `showWindDirection` | Show the wind direction next to the wind speed.
**Possible values:** `true` or `false`
**Default value:** `true`
+| `showWindDirectionAsArrow` | Show the wind direction as an arrow instead of abbreviation
**Possible values:** `true` or `false`
**Default value:** `false`
| `showHumidity` | Show the current humidity
**Possible values:** `true` or `false`
**Default value:** `false`
| `onlyTemp` | Show only current Temperature and weather icon.
**Possible values:** `true` or `false`
**Default value:** `false`
| `useBeaufort` | Pick between using the Beaufort scale for wind speed or using the default units.
**Possible values:** `true` or `false`
**Default value:** `true`
From 2bc5253725226a76db2e73856d81b2685769f7f5 Mon Sep 17 00:00:00 2001
From: Mikko Tapionlinna
Date: Fri, 28 Apr 2017 13:59:07 +0300
Subject: [PATCH 34/83] Set default value for showWindDirectionAsArrow
---
modules/default/currentweather/currentweather.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/default/currentweather/currentweather.js b/modules/default/currentweather/currentweather.js
index f0cb82b5..0e149982 100644
--- a/modules/default/currentweather/currentweather.js
+++ b/modules/default/currentweather/currentweather.js
@@ -21,6 +21,7 @@ Module.register("currentweather",{
showPeriod: true,
showPeriodUpper: false,
showWindDirection: true,
+ showWindDirectionAsArrow: false,
useBeaufort: true,
lang: config.language,
showHumidity: false,
From 7e5186c3c73f3867005e1265d3ee32eb780e3732 Mon Sep 17 00:00:00 2001
From: Mikko Tapionlinna
Date: Fri, 28 Apr 2017 15:24:41 +0300
Subject: [PATCH 35/83] Add documentation for new translate features
---
modules/README.md | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/modules/README.md b/modules/README.md
index 03664b15..66b4ba66 100644
--- a/modules/README.md
+++ b/modules/README.md
@@ -429,6 +429,51 @@ this.translate("INFO") //Will return a translated string for the identifier INFO
**Note:** although comments are officially not supported in JSON files, MagicMirror allows it by stripping the comments before parsing the JSON file. Comments in translation files could help other translators.
+#####`this.translate(identifier, variables)`
+***identifier* String** - Identifier of the string that should be translated.
+***variables* Object** - Object of variables to be used in translation.
+
+This improved and backwards compatible way to handle translations behaves like the normal translation function and follows the rules described above. It's recommended to use this new format for translating everywhere. It allows translator to change the word order in the sentence to be translated.
+
+
+**Example:**
+````javascript
+var timeUntilEnd = moment(event.endDate, "x").fromNow(true);
+this.translate("RUNNING", { "timeUntilEnd": timeUntilEnd) }); // Will return a translated string for the identifier RUNNING, replacing `{timeUntilEnd}` with the contents of the variable `timeUntilEnd` in the order that translator intended.
+````
+
+**Example English .json file:**
+````javascript
+{
+ "RUNNING": "Ends in {timeUntilEnd}",
+}
+````
+
+**Example Finnish .json file:**
+````javascript
+{
+ "RUNNING": "Päättyy {timeUntilEnd} päästä",
+}
+````
+
+**Note:** The *variables* Object has an special case called `fallback`. It's used to support old translations in translation files that do not have the variables in them. If you are upgrading an old module that had translations that did not support the word order, it is recommended to have the fallback layout.
+
+**Example:**
+````javascript
+var timeUntilEnd = moment(event.endDate, "x").fromNow(true);
+this.translate("RUNNING", {
+ "fallback": this.translate("RUNNING") + " {timeUntilEnd}"
+ "timeUntilEnd": timeUntilEnd
+)}); // Will return a translated string for the identifier RUNNING, replacing `{timeUntilEnd}` with the contents of the variable `timeUntilEnd` in the order that translator intended. (has a fallback)
+````
+
+**Example swedish .json file that does not have the variable in it:**
+````javascript
+{
+ "RUNNING": "Slutar",
+}
+
+In this case the `translate`-function will not find any variables in the translation, will look for `fallback` variable and use that if possible to create the translation.
## The Node Helper: node_helper.js
From 826fdbf34214d2735a5673ddf69c225c0f4145fe Mon Sep 17 00:00:00 2001
From: Mikko Tapionlinna
Date: Fri, 28 Apr 2017 15:31:07 +0300
Subject: [PATCH 36/83] Add flexible word order translations to CHANGELOG.md
---
CHANGELOG.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index de0802f4..baf586f5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,10 +17,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add test of match current week number on clock module with showWeek configuration.
- Add test default modules present modules/default/defaultmodules.js.
- Add unit test calendar_modules function capFirst.
+- Add support for writing translation fucntions to support flexible word order
### Updated
- Added missing keys to Polish translation.
- Added missing key to German translation.
+- Added better translation with flexible word order to Finnish translation
### Fixed
- Fix instruction in README for using automatically installer script.
From 5f80deb5b78eea86be91d9d25c91ee5a5f17bf70 Mon Sep 17 00:00:00 2001
From: Mikko Tapionlinna
Date: Fri, 28 Apr 2017 15:33:32 +0300
Subject: [PATCH 37/83] Added direction as an arrow feature to CHANGELOG.md
---
CHANGELOG.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index de0802f4..1bff7e57 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,6 +17,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add test of match current week number on clock module with showWeek configuration.
- Add test default modules present modules/default/defaultmodules.js.
- Add unit test calendar_modules function capFirst.
+- Add support for showing wind direction as an arrow instead of abbreviation in currentWeather module.
### Updated
- Added missing keys to Polish translation.
From ba63a44ec89f74ffe82f5a0c79d84ea88b58cdce Mon Sep 17 00:00:00 2001
From: retroflex
Date: Fri, 28 Apr 2017 23:31:07 +0200
Subject: [PATCH 38/83] Added option to set a separate date format for full day
events.
---
modules/default/calendar/README.md | 1 +
modules/default/calendar/calendar.js | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/modules/default/calendar/README.md b/modules/default/calendar/README.md
index 003c13e1..8ce9608b 100644
--- a/modules/default/calendar/README.md
+++ b/modules/default/calendar/README.md
@@ -40,6 +40,7 @@ The following properties can be configured:
| `titleReplace` | An object of textual replacements applied to the tile of the event. This allow to remove or replace certains words in the title.
**Example:** `{'Birthday of ' : '', 'foo':'bar'}`
**Default value:** `{ "De verjaardag van ": "", "'s birthday": "" }`
| `displayRepeatingCountTitle` | Show count title for yearly repeating events (e.g. "X. Birthday", "X. Anniversary")
**Possible values:** `true` or `false`
**Default value:** `false`
| `dateFormat` | Format to use for the date of events (when using absolute dates)
**Possible values:** See [Moment.js formats](http://momentjs.com/docs/#/parsing/string-format/)
**Default value:** `MMM Do` (e.g. Jan 18th)
+| `fullDayEventDateFormat` | Format to use for the date of full day events (when using absolute dates)
**Possible values:** See [Moment.js formats](http://momentjs.com/docs/#/parsing/string-format/)
**Default value:** `MMM Do` (e.g. Jan 18th)
| `timeFormat` | Display event times as absolute dates, or relative time
**Possible values:** `absolute` or `relative`
**Default value:** `relative`
| `getRelative` | How much time (in hours) should be left until calendar events start getting relative?
**Possible values:** `0` (events stay absolute) - `48` (48 hours before the event starts)
**Default value:** `6`
| `urgency` | When using a timeFormat of `absolute`, the `urgency` setting allows you to display events within a specific time frame as `relative`. This allows events within a certain time frame to be displayed as relative (in xx days) while others are displayed as absolute dates
**Possible values:** a positive integer representing the number of days for which you want a relative date, for example `7` (for 7 days)
**Default value:** `7`
diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js
index fa77c94a..19555baf 100644
--- a/modules/default/calendar/calendar.js
+++ b/modules/default/calendar/calendar.js
@@ -25,6 +25,7 @@ Module.register("calendar", {
urgency: 7,
timeFormat: "relative",
dateFormat: "MMM Do",
+ fullDayEventDateFormat: "MMM Do",
getRelative: 6,
fadePoint: 0.25, // Start on 1/4th of the list.
hidePrivate: false,
@@ -228,7 +229,7 @@ Module.register("calendar", {
// This event falls within the config.urgency period that the user has set
timeWrapper.innerHTML = this.capFirst(moment(event.startDate, "x").fromNow());
} else {
- timeWrapper.innerHTML = this.capFirst(moment(event.startDate, "x").format(this.config.dateFormat));
+ timeWrapper.innerHTML = this.capFirst(moment(event.startDate, "x").format(this.config.fullDayEventDateFormat));
}
} else {
timeWrapper.innerHTML = this.capFirst(moment(event.startDate, "x").fromNow());
From af48af508534c0e7d2823f0802fb7c016e9cd5e6 Mon Sep 17 00:00:00 2001
From: retroflex
Date: Fri, 28 Apr 2017 23:56:05 +0200
Subject: [PATCH 39/83] Updated changelog: Added option to set a separate date
format for full day events.
---
CHANGELOG.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e44d591c..8fde6318 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,6 +18,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add test default modules present modules/default/defaultmodules.js.
- Add unit test calendar_modules function capFirst.
- Add test for check if exits the directories present in defaults modules.
+- Add calendar option to set a separate date format for full day events.
### Updated
- Added missing keys to Polish translation.
From 98dc69893efe2d7c8383aae94149ee8fe36efbd9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Sat, 29 Apr 2017 23:25:57 -0300
Subject: [PATCH 40/83] Fix spelling Changelog
---
CHANGELOG.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e44d591c..d772fd61 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,7 +17,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add test of match current week number on clock module with showWeek configuration.
- Add test default modules present modules/default/defaultmodules.js.
- Add unit test calendar_modules function capFirst.
-- Add test for check if exits the directories present in defaults modules.
+- Add test for check if exists the directories present in defaults modules.
### Updated
- Added missing keys to Polish translation.
From 0036ec2214b665777f8040f680c9b0dd8e9f3da9 Mon Sep 17 00:00:00 2001
From: Jason York
Date: Sun, 30 Apr 2017 17:51:10 -0500
Subject: [PATCH 41/83] Update currentweather to support indoor temperature
---
CHANGELOG.md | 1 +
modules/default/currentweather/README.md | 1 +
.../default/currentweather/currentweather.css | 3 ++-
.../default/currentweather/currentweather.js | 17 +++++++++++++++++
4 files changed, 21 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e44d591c..fcd75ab3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,6 +18,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add test default modules present modules/default/defaultmodules.js.
- Add unit test calendar_modules function capFirst.
- Add test for check if exits the directories present in defaults modules.
+- Add ability for `currentweather` module to display indoor temperature via INDOOR_TEMPERATURE notification
### Updated
- Added missing keys to Polish translation.
diff --git a/modules/default/currentweather/README.md b/modules/default/currentweather/README.md
index d70ec297..a01d6d86 100644
--- a/modules/default/currentweather/README.md
+++ b/modules/default/currentweather/README.md
@@ -41,6 +41,7 @@ The following properties can be configured:
| `showPeriodUpper` | Show the period (AM/PM) with 12 hour format as uppercase
**Possible values:** `true` or `false`
**Default value:** `false`
| `showWindDirection` | Show the wind direction next to the wind speed.
**Possible values:** `true` or `false`
**Default value:** `true`
| `showHumidity` | Show the current humidity
**Possible values:** `true` or `false`
**Default value:** `false`
+| `showIndoorTemperature` | If you have another module that emits the INDOOR_TEMPERATURE notification, the indoor temperature will be displayed
**Default value:** `false`
| `onlyTemp` | Show only current Temperature and weather icon.
**Possible values:** `true` or `false`
**Default value:** `false`
| `useBeaufort` | Pick between using the Beaufort scale for wind speed or using the default units.
**Possible values:** `true` or `false`
**Default value:** `true`
| `lang` | The language of the days.
**Possible values:** `en`, `nl`, `ru`, etc ...
**Default value:** uses value of _config.language_
diff --git a/modules/default/currentweather/currentweather.css b/modules/default/currentweather/currentweather.css
index a40be878..b7669bda 100644
--- a/modules/default/currentweather/currentweather.css
+++ b/modules/default/currentweather/currentweather.css
@@ -1,4 +1,5 @@
-.currentweather .weathericon {
+.currentweather .weathericon,
+.currentweather .fa-home {
font-size: 75%;
line-height: 65px;
display: inline-block;
diff --git a/modules/default/currentweather/currentweather.js b/modules/default/currentweather/currentweather.js
index 6e23cdcf..4a73dc51 100644
--- a/modules/default/currentweather/currentweather.js
+++ b/modules/default/currentweather/currentweather.js
@@ -25,6 +25,7 @@ Module.register("currentweather",{
lang: config.language,
showHumidity: false,
degreeLabel: false,
+ showIndoorTemperature: false,
initialLoadDelay: 0, // 0 seconds delay
retryDelay: 2500,
@@ -97,6 +98,7 @@ Module.register("currentweather",{
this.sunriseSunsetTime = null;
this.sunriseSunsetIcon = null;
this.temperature = null;
+ this.indoorTemperature = null;
this.weatherType = null;
this.loaded = false;
@@ -203,6 +205,17 @@ Module.register("currentweather",{
temperature.innerHTML = " " + this.temperature + "°" + degreeLabel;
large.appendChild(temperature);
+ if (this.config.showIndoorTemperature && this.indoorTemperature) {
+ var indoorIcon = document.createElement("span");
+ indoorIcon.className = "fa fa-home";
+ large.appendChild(indoorIcon);
+
+ var indoorTemperatureElem = document.createElement("span");
+ indoorTemperatureElem.className = "bright";
+ indoorTemperatureElem.innerHTML = " " + this.indoorTemperature + "°" + degreeLabel;
+ large.appendChild(indoorTemperatureElem);
+ }
+
wrapper.appendChild(large);
return wrapper;
},
@@ -239,6 +252,10 @@ Module.register("currentweather",{
}
}
}
+ if (notification === "INDOOR_TEMPERATURE") {
+ this.indoorTemperature = this.roundValue(payload);
+ this.updateDom(self.config.animationSpeed);
+ }
},
/* updateWeather(compliments)
From 07c50c20b6cdc20692e11c3e454d455e29de379c Mon Sep 17 00:00:00 2001
From: retroflex
Date: Tue, 2 May 2017 21:20:35 +0200
Subject: [PATCH 42/83] Spaces -> tabs.
---
modules/default/calendar/calendar.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js
index 19555baf..0808ab08 100644
--- a/modules/default/calendar/calendar.js
+++ b/modules/default/calendar/calendar.js
@@ -25,7 +25,7 @@ Module.register("calendar", {
urgency: 7,
timeFormat: "relative",
dateFormat: "MMM Do",
- fullDayEventDateFormat: "MMM Do",
+ fullDayEventDateFormat: "MMM Do",
getRelative: 6,
fadePoint: 0.25, // Start on 1/4th of the list.
hidePrivate: false,
From a60f4e3bada7b02e31c1fad1d0e69556d0eeacc5 Mon Sep 17 00:00:00 2001
From: Vladimir Filimonov
Date: Sat, 6 May 2017 21:42:02 +0300
Subject: [PATCH 43/83] fixing issue
https://github.com/MichMich/MagicMirror/issues/884
---
installers/raspberry.sh | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/installers/raspberry.sh b/installers/raspberry.sh
index a76c1a9e..ecdcc842 100644
--- a/installers/raspberry.sh
+++ b/installers/raspberry.sh
@@ -150,8 +150,7 @@ fi
# Use pm2 control like a service MagicMirror
read -p "Do you want use pm2 for auto starting of your MagicMirror (y/n)?" choice
-if [[ $choice =~ ^[Yy]$ ]]
-then
+if [[ $choice =~ ^[Yy]$ ]]; then
sudo npm install -g pm2
sudo su -c "env PATH=$PATH:/usr/bin pm2 startup linux -u pi --hp /home/pi"
pm2 start ~/MagicMirror/installers/pm2_MagicMirror.json
From 0de65d9c0f00258673f19a760f29e12d2a27889f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Thu, 11 May 2017 02:30:25 -0300
Subject: [PATCH 44/83] Fix spelling comment js/loader.js
---
js/loader.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/js/loader.js b/js/loader.js
index 42b42952..2dc260ad 100644
--- a/js/loader.js
+++ b/js/loader.js
@@ -32,8 +32,8 @@ var Loader = (function() {
});
} else {
// All modules loaded. Load custom.css
- // This is done after all the moduels so we can
- // overwrite all the defined styls.
+ // This is done after all the modules so we can
+ // overwrite all the defined styles.
loadFile("css/custom.css", function() {
// custom.css loaded. Start all modules.
From be05f1a71f8a3fb9f057ec217411fea55e4db36c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Thu, 11 May 2017 02:44:52 -0300
Subject: [PATCH 45/83] Remove warnings
npm WARN grunt-stylelint@0.8.0 requires a peer of stylelint@^7.8.0 but
none was installed.
npm WARN stylelint-config-standard@16.0.0 requires a peer of
stylelint@^7.8.0 but none was installed.
---
package.json | 1 +
1 file changed, 1 insertion(+)
diff --git a/package.json b/package.json
index 49a22cbe..8c3dcccc 100644
--- a/package.json
+++ b/package.json
@@ -62,6 +62,7 @@
"rrule-alt": "^2.2.3",
"simple-git": "^1.62.0",
"socket.io": "^1.7.3",
+ "stylelint": "^7.10.1",
"valid-url": "latest",
"walk": "latest"
}
From c953936798f981173d497c08c84db06fb751e94c Mon Sep 17 00:00:00 2001
From: markuzSchmidt
Date: Wed, 17 May 2017 22:00:55 +0200
Subject: [PATCH 46/83] Update README.md
---
modules/README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/README.md b/modules/README.md
index 03664b15..74f63569 100644
--- a/modules/README.md
+++ b/modules/README.md
@@ -257,7 +257,7 @@ socketNotificationReceived: function(notification, payload) {
When a module is hidden (using the `module.hide()` method), the `suspend()` method will be called. By subclassing this method you can perform tasks like halting the update timers.
####`resume()`
-When a module will be shown after it was previously hidden (using the `module.show()` method), the `resume()` method will be called. By subclassing this method you can perform tasks restarting the update timers.
+When a module is requested to be shown (using the `module.show()` method), the `resume()` method will be called. By subclassing this method you can perform tasks restarting the update timers.
### Module instance methods
From 34361ccd1c16bea5d85869eb25e0694aad0d2de3 Mon Sep 17 00:00:00 2001
From: xuanyou
Date: Thu, 18 May 2017 18:14:43 +0800
Subject: [PATCH 47/83] Update documentation for compliments module
Added documentation for the config variable "classes" that allows the user to override the css classes of the compliments module display.
Fixed the erroneous "a default calendar is shown" to "default compliments".
---
modules/default/compliments/README.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/modules/default/compliments/README.md b/modules/default/compliments/README.md
index 171c86c0..835fbe1e 100644
--- a/modules/default/compliments/README.md
+++ b/modules/default/compliments/README.md
@@ -13,7 +13,7 @@ modules: [
// Best results in one of the middle regions like: lower_third
config: {
// The config property is optional.
- // If no config is set, an example calendar is shown.
+ // If no config is set, the default compliments are shown.
// See 'Configuration options' for more information.
}
}
@@ -31,6 +31,7 @@ The following properties can be configured:
| `fadeSpeed` | Speed of the update animation. (Milliseconds)
**Possible values:**`0` - `5000`
**Default value:** `4000` (4 seconds)
| `compliments` | The list of compliments.
**Possible values:** An object with four arrays: `morning`, `afternoon`, `evening` and `anytime`. See _compliment configuration_ below.
**Default value:** See _compliment configuration_ below.
| `remoteFile` | External file from which to load the compliments
**Possible values:** Path to a JSON file containing compliments, configured as per the value of the _compliments configuration_ (see below). An object with four arrays: `morning`, `afternoon`, `evening` and `anytime`. - `compliments.json`
**Default value:** `null` (Do not load from file)
+| `classes` | Override the CSS classes of the div showing the compliments
### Compliment configuration
From cbb6e4d6f3fe5e722f8385279294ae498634c82a Mon Sep 17 00:00:00 2001
From: xuanyou
Date: Thu, 18 May 2017 18:25:17 +0800
Subject: [PATCH 48/83] Update docs: classes config variable default value
---
modules/default/compliments/README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/default/compliments/README.md b/modules/default/compliments/README.md
index 835fbe1e..13063a3b 100644
--- a/modules/default/compliments/README.md
+++ b/modules/default/compliments/README.md
@@ -31,7 +31,7 @@ The following properties can be configured:
| `fadeSpeed` | Speed of the update animation. (Milliseconds)
**Possible values:**`0` - `5000`
**Default value:** `4000` (4 seconds)
| `compliments` | The list of compliments.
**Possible values:** An object with four arrays: `morning`, `afternoon`, `evening` and `anytime`. See _compliment configuration_ below.
**Default value:** See _compliment configuration_ below.
| `remoteFile` | External file from which to load the compliments
**Possible values:** Path to a JSON file containing compliments, configured as per the value of the _compliments configuration_ (see below). An object with four arrays: `morning`, `afternoon`, `evening` and `anytime`. - `compliments.json`
**Default value:** `null` (Do not load from file)
-| `classes` | Override the CSS classes of the div showing the compliments
+| `classes` | Override the CSS classes of the div showing the compliments
**Default value:** `thin xlarge bright`
### Compliment configuration
From 0bb52a605825b36ed79a28115fab353f04690023 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20L=C3=B6bel?=
Date: Fri, 19 May 2017 19:54:43 +0200
Subject: [PATCH 49/83] #891 Added ability to change the custom.css path.
---
CHANGELOG.md | 1 +
README.md | 2 +-
js/defaults.js | 1 +
js/loader.js | 2 +-
4 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3626334a..882c4390 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -23,6 +23,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add test for check if exits the directories present in defaults modules.
- Add calendar option to set a separate date format for full day events.
- Add ability for `currentweather` module to display indoor temperature via INDOOR_TEMPERATURE notification
+- Add ability to change the path of the `custom.css`.
### Updated
- Added missing keys to Polish translation.
diff --git a/README.md b/README.md
index c19ee20f..8b0c66be 100644
--- a/README.md
+++ b/README.md
@@ -124,7 +124,7 @@ The following properties can be configured:
| `units` | The units that will be used in the default weather modules. Possible values are `metric` or `imperial`. The default is `metric`. |
| `modules` | An array of active modules. **The array must contain objects. See the next table below for more information.** |
| `electronOptions` | An optional array of Electron (browser) options. This allows configuration of e.g. the browser screen size and position (example: `electronOptions: { fullscreen: false, width: 800, height: 600 }`). Kiosk mode can be enabled by setting `kiosk = true`, `autoHideMenuBar = false` and `fullscreen = false`. More options can be found [here](https://github.com/electron/electron/blob/master/docs/api/browser-window.md). |
-
+| `customCss` | The path of the `custom.css` stylesheet. The default is `css/custom.css`. |
Module configuration:
diff --git a/js/defaults.js b/js/defaults.js
index 66926de7..eada87a4 100644
--- a/js/defaults.js
+++ b/js/defaults.js
@@ -21,6 +21,7 @@ var defaults = {
timeFormat: 24,
units: "metric",
zoom: 1,
+ customCss: "css/custom.css",
modules: [
{
diff --git a/js/loader.js b/js/loader.js
index 42b42952..a753df52 100644
--- a/js/loader.js
+++ b/js/loader.js
@@ -35,7 +35,7 @@ var Loader = (function() {
// This is done after all the moduels so we can
// overwrite all the defined styls.
- loadFile("css/custom.css", function() {
+ loadFile(config.customCss, function() {
// custom.css loaded. Start all modules.
startModules();
});
From 5f539b133b307b2ec3a9e8aee5ea67ca6ef0e926 Mon Sep 17 00:00:00 2001
From: Veeck
Date: Sun, 21 May 2017 19:16:09 +0200
Subject: [PATCH 50/83] Update dependencies, add stylelint too
---
package.json | 23 ++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/package.json b/package.json
index 49a22cbe..08ff28e5 100644
--- a/package.json
+++ b/package.json
@@ -38,30 +38,31 @@
"grunt": "latest",
"grunt-eslint": "latest",
"grunt-jsonlint": "latest",
- "grunt-markdownlint": "^1.0.13",
+ "grunt-markdownlint": "^1.0.37",
"grunt-stylelint": "latest",
"grunt-yamllint": "latest",
"http-auth": "^3.1.3",
"jshint": "^2.9.4",
- "mocha": "^3.2.0",
- "spectron": "^3.4.1",
+ "mocha": "^3.4.1",
+ "spectron": "^3.6.4",
+ "stylelint": "^7.10.1",
"stylelint-config-standard": "latest",
"time-grunt": "latest"
},
"dependencies": {
- "body-parser": "^1.17.1",
+ "body-parser": "^1.17.2",
"colors": "^1.1.2",
- "electron": "^1.4.7",
- "express": "^4.14.0",
+ "electron": "^1.6.8",
+ "express": "^4.15.3",
"express-ipfilter": "latest",
"feedme": "latest",
- "helmet": "^3.1.0",
+ "helmet": "^3.6.0",
"iconv-lite": "latest",
"moment": "latest",
- "request": "^2.78.0",
- "rrule-alt": "^2.2.3",
- "simple-git": "^1.62.0",
- "socket.io": "^1.7.3",
+ "request": "^2.81.0",
+ "rrule-alt": "^2.2.5",
+ "simple-git": "^1.73.0",
+ "socket.io": "^2.0.1",
"valid-url": "latest",
"walk": "latest"
}
From 9f61256e5e4961fdcd301a8359573b48e5f2341e Mon Sep 17 00:00:00 2001
From: Michael Teeuw
Date: Fri, 26 May 2017 14:43:44 +0200
Subject: [PATCH 51/83] Move stylelint to devDep.
---
package.json | 1 -
1 file changed, 1 deletion(-)
diff --git a/package.json b/package.json
index 269ed484..08ff28e5 100644
--- a/package.json
+++ b/package.json
@@ -63,7 +63,6 @@
"rrule-alt": "^2.2.5",
"simple-git": "^1.73.0",
"socket.io": "^2.0.1",
- "stylelint": "^7.10.1",
"valid-url": "latest",
"walk": "latest"
}
From e5e49e43474f7d6c3075c708c849937c7f516592 Mon Sep 17 00:00:00 2001
From: retroflex
Date: Mon, 29 May 2017 22:55:42 +0200
Subject: [PATCH 52/83] Corrected Swedish translations for
TODAY/TOMORROW/DAYAFTERTOMORROW.
---
CHANGELOG.md | 1 +
translations/sv.json | 6 +++---
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index be0e4fd5..94140274 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -32,6 +32,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Fix instruction in README for using automatically installer script.
- Bug of duplicated compliments as described in [here](https://forum.magicmirror.builders/topic/2381/compliments-module-stops-cycling-compliments).
- Fix double message about port when server is starting
+- Corrected Swedish translations for TODAY/TOMORROW/DAYAFTERTOMORROW.
## [2.1.1] - 2017-04-01
diff --git a/translations/sv.json b/translations/sv.json
index 8025e51e..13288ec3 100644
--- a/translations/sv.json
+++ b/translations/sv.json
@@ -1,9 +1,9 @@
{
"LOADING": "Laddar …",
- "TODAY": "Idag",
- "TOMORROW": "Imorgon",
- "DAYAFTERTOMORROW": "Iövermorgon",
+ "TODAY": "I dag",
+ "TOMORROW": "I morgon",
+ "DAYAFTERTOMORROW": "I övermorgon",
"RUNNING": "Slutar",
"EMPTY": "Inga kommande händelser.",
From 12a34f0b097ec6b4c26090c1f5a2c24a50e2773b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Wed, 31 May 2017 13:50:04 -0400
Subject: [PATCH 53/83] Run test unit for failed in Travis of e2e
---
.travis.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index 5f6f2821..cbf1dfa2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,7 +10,7 @@ before_script:
- sleep 5
script:
- grunt
-- npm test
+- npm run test:unit
cache:
directories:
- node_modules
From 20687d915a165224e2a88c7d0f19fdc49e35f8fc Mon Sep 17 00:00:00 2001
From: Veeck
Date: Fri, 2 Jun 2017 19:35:10 +0200
Subject: [PATCH 54/83] Remove unused vars and whitelines, cleanups
---
modules/default/clock/clock.js | 1 -
modules/default/currentweather/currentweather.js | 8 ++------
2 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/modules/default/clock/clock.js b/modules/default/clock/clock.js
index 761f3948..c25c3897 100644
--- a/modules/default/clock/clock.js
+++ b/modules/default/clock/clock.js
@@ -127,7 +127,6 @@ Module.register("clock",{
hour = ((now.hours() % 12) / 12) * 360 + 90 + minute / 12;
// Create wrappers
- var wrapper = document.createElement("div");
var clockCircle = document.createElement("div");
clockCircle.className = "clockCircle";
clockCircle.style.width = this.config.analogSize;
diff --git a/modules/default/currentweather/currentweather.js b/modules/default/currentweather/currentweather.js
index d7c51162..f56dbde1 100644
--- a/modules/default/currentweather/currentweather.js
+++ b/modules/default/currentweather/currentweather.js
@@ -115,7 +115,6 @@ Module.register("currentweather",{
var small = document.createElement("div");
small.className = "normal medium";
-
var windIcon = document.createElement("span");
windIcon.className = "wi wi-strong-wind dimmed";
small.appendChild(windIcon);
@@ -247,10 +246,9 @@ Module.register("currentweather",{
if (notification === "CALENDAR_EVENTS") {
var senderClasses = sender.data.classes.toLowerCase().split(" ");
if (senderClasses.indexOf(this.config.calendarClass.toLowerCase()) !== -1) {
- var lastEvent = this.firstEvent;
this.firstEvent = false;
- for (e in payload) {
+ for (var e in payload) {
var event = payload[e];
if (event.location || event.geo) {
this.firstEvent = event;
@@ -348,11 +346,10 @@ Module.register("currentweather",{
if (this.config.useBeaufort){
this.windSpeed = this.ms2Beaufort(this.roundValue(data.wind.speed));
- }else {
+ } else {
this.windSpeed = parseFloat(data.wind.speed).toFixed(0);
}
-
this.windDirection = this.deg2Cardinal(data.wind.deg);
this.windDeg = data.wind.deg;
this.weatherType = this.config.iconTable[data.weather[0].icon];
@@ -385,7 +382,6 @@ Module.register("currentweather",{
this.sunriseSunsetTime = timeString;
this.sunriseSunsetIcon = (sunrise < now && sunset > now) ? "wi-sunset" : "wi-sunrise";
-
this.show(this.config.animationSpeed, {lockString:this.identifier});
this.loaded = true;
this.updateDom(this.config.animationSpeed);
From a2464dce73a57866ff3342e370000b8cb1afe13d Mon Sep 17 00:00:00 2001
From: Veeck
Date: Sun, 11 Jun 2017 11:36:17 +0200
Subject: [PATCH 55/83] Udpate dependencies
---
package.json | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/package.json b/package.json
index 08ff28e5..31759870 100644
--- a/package.json
+++ b/package.json
@@ -38,31 +38,31 @@
"grunt": "latest",
"grunt-eslint": "latest",
"grunt-jsonlint": "latest",
- "grunt-markdownlint": "^1.0.37",
+ "grunt-markdownlint": "^1.0.39",
"grunt-stylelint": "latest",
"grunt-yamllint": "latest",
"http-auth": "^3.1.3",
"jshint": "^2.9.4",
- "mocha": "^3.4.1",
+ "mocha": "^3.4.2",
"spectron": "^3.6.4",
- "stylelint": "^7.10.1",
+ "stylelint": "^7.11.0",
"stylelint-config-standard": "latest",
"time-grunt": "latest"
},
"dependencies": {
"body-parser": "^1.17.2",
"colors": "^1.1.2",
- "electron": "^1.6.8",
+ "electron": "^1.6.10",
"express": "^4.15.3",
"express-ipfilter": "latest",
"feedme": "latest",
- "helmet": "^3.6.0",
+ "helmet": "^3.6.1",
"iconv-lite": "latest",
"moment": "latest",
"request": "^2.81.0",
"rrule-alt": "^2.2.5",
"simple-git": "^1.73.0",
- "socket.io": "^2.0.1",
+ "socket.io": "^2.0.2",
"valid-url": "latest",
"walk": "latest"
}
From 96c338859b8a33a27e53ae13b632f4ae1cae6d9c Mon Sep 17 00:00:00 2001
From: Veeck
Date: Sun, 11 Jun 2017 11:53:55 +0200
Subject: [PATCH 56/83] More lazy sunday cleanups of missing semicolons, unused
vars and other small thins
---
js/electron.js | 2 +-
js/main.js | 4 +---
js/server.js | 2 +-
modules/default/calendar/calendar.js | 7 +++----
modules/default/weatherforecast/weatherforecast.js | 10 ++++------
5 files changed, 10 insertions(+), 15 deletions(-)
diff --git a/js/electron.js b/js/electron.js
index fbbdba94..20b6475f 100644
--- a/js/electron.js
+++ b/js/electron.js
@@ -30,7 +30,7 @@ function createWindow() {
zoomFactor: config.zoom
},
backgroundColor: "#000000"
- }
+ };
// DEPRECATED: "kioskmode" backwards compatibility, to be removed
// settings these options directly instead provides cleaner interface
diff --git a/js/main.js b/js/main.js
index 5c8a6737..f499da62 100644
--- a/js/main.js
+++ b/js/main.js
@@ -165,8 +165,6 @@ var MM = (function() {
if( headerWrapper.length > 0 && newHeader) {
headerWrapper[0].innerHTML = newHeader;
}
-
-
};
/* hideModule(module, speed, callback)
@@ -219,7 +217,7 @@ var MM = (function() {
// remove lockString if set in options.
if (options.lockString) {
- var index = module.lockStrings.indexOf(options.lockString)
+ var index = module.lockStrings.indexOf(options.lockString);
if ( index !== -1) {
module.lockStrings.splice(index, 1);
}
diff --git a/js/server.js b/js/server.js
index 2fc8dc6f..002c2031 100644
--- a/js/server.js
+++ b/js/server.js
@@ -43,7 +43,7 @@ var Server = function(config, callback) {
app.use("/js", express.static(__dirname));
var directories = ["/config", "/css", "/fonts", "/modules", "/vendor", "/translations", "/tests/configs"];
var directory;
- for (i in directories) {
+ for (var i in directories) {
directory = directories[i];
app.use(directory, express.static(path.resolve(global.root_path + directory)));
}
diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js
index 71efb00f..848d163c 100644
--- a/modules/default/calendar/calendar.js
+++ b/modules/default/calendar/calendar.js
@@ -174,7 +174,6 @@ Module.register("calendar", {
var titleWrapper = document.createElement("td"),
repeatingCountTitle = "";
-
if (this.config.displayRepeatingCountTitle) {
repeatingCountTitle = this.countTitleForUrl(event.url);
@@ -421,7 +420,7 @@ Module.register("calendar", {
*
* argument string string - The string to shorten.
* argument maxLength number - The max length of the string.
- * argument wrapEvents - Wrap the text after the line has reached maxLength
+ * argument wrapEvents - Wrap the text after the line has reached maxLength
*
* return string - The shortened string.
*/
@@ -496,9 +495,9 @@ Module.register("calendar", {
*/
broadcastEvents: function () {
var eventList = [];
- for (url in this.calendarData) {
+ for (var url in this.calendarData) {
var calendar = this.calendarData[url];
- for (e in calendar) {
+ for (var e in calendar) {
var event = cloneObject(calendar[e]);
delete event.url;
eventList.push(event);
diff --git a/modules/default/weatherforecast/weatherforecast.js b/modules/default/weatherforecast/weatherforecast.js
index 38661e74..aab3aa15 100644
--- a/modules/default/weatherforecast/weatherforecast.js
+++ b/modules/default/weatherforecast/weatherforecast.js
@@ -63,7 +63,7 @@ Module.register("weatherforecast",{
firstEvent: false,
// create a variable to hold the location name based on the API result.
- fetchedLocatioName: "",
+ fetchedLocationName: "",
// Define required scripts.
getScripts: function() {
@@ -175,7 +175,6 @@ Module.register("weatherforecast",{
row.style.opacity = 1 - (1 / steps * currentStep);
}
}
-
}
return table;
@@ -184,7 +183,7 @@ Module.register("weatherforecast",{
// Override getHeader method.
getHeader: function() {
if (this.config.appendLocationNameToHeader) {
- return this.data.header + " " + this.fetchedLocatioName;
+ return this.data.header + " " + this.fetchedLocationName;
}
return this.data.header;
@@ -200,10 +199,9 @@ Module.register("weatherforecast",{
if (notification === "CALENDAR_EVENTS") {
var senderClasses = sender.data.classes.toLowerCase().split(" ");
if (senderClasses.indexOf(this.config.calendarClass.toLowerCase()) !== -1) {
- var lastEvent = this.firstEvent;
this.firstEvent = false;
- for (e in payload) {
+ for (var e in payload) {
var event = payload[e];
if (event.location || event.geo) {
this.firstEvent = event;
@@ -291,7 +289,7 @@ Module.register("weatherforecast",{
* argument data object - Weather information received form openweather.org.
*/
processWeather: function(data) {
- this.fetchedLocatioName = data.city.name + ", " + data.city.country;
+ this.fetchedLocationName = data.city.name + ", " + data.city.country;
this.forecast = [];
for (var i = 0, count = data.list.length; i < count; i++) {
From 9f822c0991da27337275569bc379cacf4d8066ab Mon Sep 17 00:00:00 2001
From: Paul-Vincent Roll
Date: Sun, 11 Jun 2017 23:44:43 +0200
Subject: [PATCH 57/83] Markdown header fixes
---
modules/README.md | 84 +++++++++++++++++++++++------------------------
1 file changed, 42 insertions(+), 42 deletions(-)
diff --git a/modules/README.md b/modules/README.md
index 8d7201f6..4a0a1da5 100644
--- a/modules/README.md
+++ b/modules/README.md
@@ -44,27 +44,27 @@ As you can see, the `Module.register()` method takes two arguments: the name of
### Available module instance properties
After the module is initialized, the module instance has a few available module properties:
-####`this.name`
+#### `this.name`
**String**
The name of the module.
-####`this.identifier`
+#### `this.identifier`
**String**
This is a unique identifier for the module instance.
-####`this.hidden`
+#### `this.hidden`
**Boolean**
This represents if the module is currently hidden (faded away).
-####`this.config`
+#### `this.config`
**Boolean**
The configuration of the module instance as set in the user's config.js file. This config will also contain the module's defaults if these properties are not over written by the user config.
-####`this.data`
+#### `this.data`
**Object**
The data object contains additional metadata about the module instance:
@@ -75,10 +75,10 @@ The data object contains additional metadata about the module instance:
- `data.position` - The position in which the instance will be shown.
-####`defaults: {}`
+#### `defaults: {}`
Any properties defined in the defaults object, will be merged with the module config as defined in the user's config.js file. This is the best place to set your modules's configuration defaults. Any of the module configuration properties can be accessed using `this.config.propertyName`, but more about that later.
-####'requiresVersion:'
+#### `requiresVersion:`
*Introduced in version: 2.1.0.*
@@ -93,10 +93,10 @@ requiresVersion: "2.1.0",
### Subclassable module methods
-####`init()`
+#### `init()`
This method is called when a module gets instantiated. In most cases you do not need to subclass this method.
-####`loaded(callback)`
+#### `loaded(callback)`
*Introduced in version: 2.1.1.*
@@ -111,7 +111,7 @@ loaded: function(callback) {
}
````
-####`start()`
+#### `start()`
This method is called when all modules are loaded an the system is ready to boot up. Keep in mind that the dom object for the module is not yet created. The start method is a perfect place to define any additional module properties:
**Example:**
@@ -122,7 +122,7 @@ start: function() {
}
````
-####`getScripts()`
+#### `getScripts()`
**Should return: Array**
The getScripts method is called to request any additional scripts that need to be loaded. This method should therefore return an array with strings. If you want to return a full path to a file in the module folder, use the `this.file('filename.js')` method. In all cases the loader will only load a file once. It even checks if the file is available in the default vendor folder.
@@ -142,7 +142,7 @@ getScripts: function() {
**Note:** If a file can not be loaded, the boot up of the mirror will stall. Therefore it's advised not to use any external urls.
-####`getStyles()`
+#### `getStyles()`
**Should return: Array**
The getStyles method is called to request any additional stylesheets that need to be loaded. This method should therefore return an array with strings. If you want to return a full path to a file in the module folder, use the `this.file('filename.css')` method. In all cases the loader will only load a file once. It even checks if the file is available in the default vendor folder.
@@ -161,7 +161,7 @@ getStyles: function() {
````
**Note:** If a file can not be loaded, the boot up of the mirror will stall. Therefore it's advised not to use any external urls.
-####`getTranslations()`
+#### `getTranslations()`
**Should return: Dictionary**
The getTranslations method is called to request translation files that need to be loaded. This method should therefore return a dictionary with the files to load, identified by the country's short name.
@@ -179,7 +179,7 @@ getTranslations: function() {
````
-####`getDom()`
+#### `getDom()`
**Should return:** Dom Object
Whenever the MagicMirror needs to update the information on screen (because it starts, or because your module asked a refresh using `this.updateDom()`), the system calls the getDom method. This method should therefore return a dom object.
@@ -194,7 +194,7 @@ getDom: function() {
````
-####`getHeader()`
+#### `getHeader()`
**Should return:** String
Whenever the MagicMirror needs to update the information on screen (because it starts, or because your module asked a refresh using `this.updateDom()`), the system calls the getHeader method to retrieve the module's header. This method should therefor return a string. If this method is not subclassed, this function will return the user's configured header.
@@ -211,7 +211,7 @@ getHeader: function() {
````
-####`notificationReceived(notification, payload, sender)`
+#### `notificationReceived(notification, payload, sender)`
That MagicMirror core has the ability to send notifications to modules. Or even better: the modules have the possibility to send notifications to other modules. When this module is called, it has 3 arguments:
@@ -237,7 +237,7 @@ notificationReceived: function(notification, payload, sender) {
- `DOM_OBJECTS_CREATED` - All dom objects are created. The system is now ready to perform visual changes.
-####`socketNotificationReceived: function(notification, payload)`
+#### `socketNotificationReceived: function(notification, payload)`
When using a node_helper, the node helper can send your module notifications. When this module is called, it has 2 arguments:
- `notification` - String - The notification identifier.
@@ -253,10 +253,10 @@ socketNotificationReceived: function(notification, payload) {
},
````
-####`suspend()`
+#### `suspend()`
When a module is hidden (using the `module.hide()` method), the `suspend()` method will be called. By subclassing this method you can perform tasks like halting the update timers.
-####`resume()`
+#### `resume()`
When a module is requested to be shown (using the `module.show()` method), the `resume()` method will be called. By subclassing this method you can perform tasks restarting the update timers.
@@ -265,13 +265,13 @@ When a module is requested to be shown (using the `module.show()` method), the `
Each module instance has some handy methods which can be helpful building your module.
-####`this.file(filename)`
+#### `this.file(filename)`
***filename* String** - The name of the file you want to create the path for.
**Returns String**
If you want to create a path to a file in your module folder, use the `file()` method. It returns the path to the filename given as the attribute. Is method comes in handy when configuring the [getScripts](#getscripts) and [getStyles](#getstyles) methods.
-####`this.updateDom(speed)`
+#### `this.updateDom(speed)`
***speed* Number** - Optional. Animation speed in milliseconds.
Whenever your module need to be updated, call the `updateDom(speed)` method. It requests the MagicMirror core to update its dom object. If you define the speed, the content update will be animated, but only if the content will really change.
@@ -289,7 +289,7 @@ start: function() {
...
````
-####`this.sendNotification(notification, payload)`
+#### `this.sendNotification(notification, payload)`
***notification* String** - The notification identifier.
***payload* AnyType** - Optional. A notification payload.
@@ -300,7 +300,7 @@ If you want to send a notification to all other modules, use the `sendNotificati
this.sendNotification('MYMODULE_READY_FOR_ACTION', {foo:bar});
````
-####`this.sendSocketNotification(notification, payload)`
+#### `this.sendSocketNotification(notification, payload)`
***notification* String** - The notification identifier.
***payload* AnyType** - Optional. A notification payload.
@@ -311,7 +311,7 @@ If you want to send a notification to the node_helper, use the `sendSocketNotifi
this.sendSocketNotification('SET_CONFIG', this.config);
````
-####`this.hide(speed, callback, options)`
+#### `this.hide(speed, callback, options)`
***speed* Number** - Optional (Required when setting callback or options), The speed of the hide animation in milliseconds.
***callback* Function** - Optional, The callback after the hide animation is finished.
***options* Function** - Optional, Object with additional options for the hide action (see below). (*Introduced in version: 2.1.0.*)
@@ -328,7 +328,7 @@ Possible configurable options:
**Note 3:** If the dom is not yet created, the hide method won't work. Wait for the `DOM_OBJECTS_CREATED` [notification](#notificationreceivednotification-payload-sender).
-####`this.show(speed, callback, options)`
+#### `this.show(speed, callback, options)`
***speed* Number** - Optional (Required when setting callback or options), The speed of the show animation in milliseconds.
***callback* Function** - Optional, The callback after the show animation is finished.
***options* Function** - Optional, Object with additional options for the show action (see below). (*Introduced in version: 2.1.0.*)
@@ -344,7 +344,7 @@ Possible configurable options:
**Note 2:** If the show animation is hijacked (an other method calls show on the same module), the callback will not be called.
**Note 3:** If the dom is not yet created, the show method won't work. Wait for the `DOM_OBJECTS_CREATED` [notification](#notificationreceivednotification-payload-sender).
-####Visibility locking
+#### Visibility locking
(*Introduced in version: 2.1.0.*)
@@ -401,7 +401,7 @@ Use this `force` method with caution. See `show()` method for more information.
-####`this.translate(identifier)`
+#### `this.translate(identifier)`
***identifier* String** - Identifier of the string that should be translated.
The Magic Mirror contains a convenience wrapper for `l18n`. You can use this to automatically serve different translations for your modules based on the user's `language` configuration.
@@ -429,7 +429,7 @@ this.translate("INFO") //Will return a translated string for the identifier INFO
**Note:** although comments are officially not supported in JSON files, MagicMirror allows it by stripping the comments before parsing the JSON file. Comments in translation files could help other translators.
-#####`this.translate(identifier, variables)`
+##### `this.translate(identifier, variables)`
***identifier* String** - Identifier of the string that should be translated.
***variables* Object** - Object of variables to be used in translation.
@@ -492,17 +492,17 @@ Of course, the above helper would not do anything useful. So with the informatio
### Available module instance properties
-####`this.name`
+#### `this.name`
**String**
The name of the module
-####`this.path`
+#### `this.path`
**String**
The path of the module
-####`this.expressApp`
+#### `this.expressApp`
**Express App Instance**
This is a link to the express instance. It will allow you to define extra routes.
@@ -521,13 +521,13 @@ start: function() {
this.expressApp.use("/" + this.name, express.static(this.path + "/public"));
````
-####`this.io`
+#### `this.io`
**Socket IO Instance**
This is a link to the IO instance. It will allow you to do some Socket.IO magic. In most cases you won't need this, since the Node Helper has a few convenience methods to make this simple.
-####'requiresVersion:'
+#### `requiresVersion:`
*Introduced in version: 2.1.0.*
A string that defines the minimum version of the MagicMirror framework. If it is set, the system compares the required version with the users version. If the version of the user is out of date, it won't run the module.
@@ -541,10 +541,10 @@ requiresVersion: "2.1.0",
### Subclassable module methods
-####`init()`
+#### `init()`
This method is called when a node helper gets instantiated. In most cases you do not need to subclass this method.
-####`start()`
+#### `start()`
This method is called when all node helpers are loaded and the system is ready to boot up. The start method is a perfect place to define any additional module properties:
**Example:**
@@ -555,7 +555,7 @@ start: function() {
}
````
-####`socketNotificationReceived: function(notification, payload)`
+#### `socketNotificationReceived: function(notification, payload)`
With this method, your node helper can receive notifications from your modules. When this method is called, it has 2 arguments:
- `notification` - String - The notification identifier.
@@ -574,7 +574,7 @@ socketNotificationReceived: function(notification, payload) {
Each node helper has some handy methods which can be helpful building your module.
-####`this.sendSocketNotification(notification, payload)`
+#### `this.sendSocketNotification(notification, payload)`
***notification* String** - The notification identifier.
***payload* AnyType** - Optional. A notification payload.
@@ -594,7 +594,7 @@ The core Magic Mirror object: `MM` has some handy method that will help you in c
### Module selection
The only additional method available for your module, is the feature to retrieve references to other modules. This can be used to hide and show other modules.
-####`MM.getModules()`
+#### `MM.getModules()`
**Returns Array** - An array with module instances.
To make a selection of all currently loaded module instances, run the `MM.getModules()` method. It will return an array with all currently loaded module instances. The returned array has a lot of filtering methods. See below for more info.
@@ -602,7 +602,7 @@ To make a selection of all currently loaded module instances, run the `MM.getMod
**Note:** This method returns an empty array if not all modules are started yet. Wait for the `ALL_MODULES_STARTED` [notification](#notificationreceivednotification-payload-sender).
-#####`.withClass(classnames)`
+##### `.withClass(classnames)`
***classnames* String or Array** - The class names on which you want to filter.
**Returns Array** - An array with module instances.
@@ -615,7 +615,7 @@ var modules = MM.getModules().withClass('classname1 classname2');
var modules = MM.getModules().withClass(['classname1','classname2']);
````
-#####`.exceptWithClass(classnames)`
+##### `.exceptWithClass(classnames)`
***classnames* String or Array** - The class names of the modules you want to remove from the results.
**Returns Array** - An array with module instances.
@@ -628,7 +628,7 @@ var modules = MM.getModules().exceptWithClass('classname1 classname2');
var modules = MM.getModules().exceptWithClass(['classname1','classname2']);
````
-#####`.exceptModule(module)`
+##### `.exceptModule(module)`
***module* Module Object** - The reference to a module you want to remove from the results.
**Returns Array** - An array with module instances.
@@ -646,7 +646,7 @@ Of course, you can combine all of the above filters:
var modules = MM.getModules().withClass('classname1').exceptwithClass('classname2').exceptModule(aModule);
````
-#####`.enumerate(callback)`
+##### `.enumerate(callback)`
***callback* Function(module)** - The callback run on every instance.
If you want to perform an action on all selected modules, you can use the `enumerate` function:
From 12d20c35be2433a423bb3bbaabce07e3bd107626 Mon Sep 17 00:00:00 2001
From: Fredrik Mandal
Date: Tue, 13 Jun 2017 01:52:13 +0200
Subject: [PATCH 58/83] Added week translation
---
translations/nb.json | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/translations/nb.json b/translations/nb.json
index 9a3060be..3aad4263 100644
--- a/translations/nb.json
+++ b/translations/nb.json
@@ -7,6 +7,8 @@
"RUNNING": "Slutter om",
"EMPTY": "Ingen kommende arrangementer.",
+ "WEEK": "Uke",
+
"N": "N",
"NNE": "NNØ",
"NE": "NØ",
@@ -24,7 +26,7 @@
"NW": "NV",
"NNW": "NNV",
- "UPDATE_NOTIFICATION": "MagicMirror² oppdatering er tilgjengelig.",
+ "UPDATE_NOTIFICATION": "MagicMirror²-oppdatering er tilgjengelig.",
"UPDATE_NOTIFICATION_MODULE": "Oppdatering tilgjengelig for modulen MODULE_NAME.",
"UPDATE_INFO": "Nåværende installasjon er COMMIT_COUNT bak BRANCH_NAME grenen."
}
From 94169800968eb944c7ff7995600e0a282c89dcae Mon Sep 17 00:00:00 2001
From: Unknown
Date: Tue, 13 Jun 2017 20:28:24 +0200
Subject: [PATCH 59/83] Added Dutch translation
Added Dutch translation to Alert module
---
CHANGELOG.md | 1 +
modules/default/alert/alert.js | 3 ++-
modules/default/alert/translations/nl.json | 4 ++++
3 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 modules/default/alert/translations/nl.json
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c442f3a7..da543183 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -24,6 +24,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add calendar option to set a separate date format for full day events.
- Add ability for `currentweather` module to display indoor temperature via INDOOR_TEMPERATURE notification
- Add ability to change the path of the `custom.css`.
+- Add translation Dutch to Alert module.
### Updated
- Added missing keys to Polish translation.
diff --git a/modules/default/alert/alert.js b/modules/default/alert/alert.js
index 787a0b4a..c5d3e650 100644
--- a/modules/default/alert/alert.js
+++ b/modules/default/alert/alert.js
@@ -30,7 +30,8 @@ Module.register("alert",{
getTranslations: function() {
return {
en: "translations/en.json",
- de: "translations/de.json"
+ de: "translations/de.json",
+ nl: "translations/nl.json",
};
},
show_notification: function(message) {
diff --git a/modules/default/alert/translations/nl.json b/modules/default/alert/translations/nl.json
new file mode 100644
index 00000000..9cda9089
--- /dev/null
+++ b/modules/default/alert/translations/nl.json
@@ -0,0 +1,4 @@
+{
+ "sysTitle": "MagicMirror Notificatie",
+ "welcome": "Welkom, Succesvol gestart!"
+}
From 98bcfbef7e45ce4124e46b3f5d7539644e92e74b Mon Sep 17 00:00:00 2001
From: Unknown
Date: Sun, 18 Jun 2017 19:14:32 +0200
Subject: [PATCH 60/83] Removed unused import
Removed unused import from js/electron.js
---
CHANGELOG.md | 1 +
js/electron.js | 1 -
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c442f3a7..65291349 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -35,6 +35,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Bug of duplicated compliments as described in [here](https://forum.magicmirror.builders/topic/2381/compliments-module-stops-cycling-compliments).
- Fix double message about port when server is starting
- Corrected Swedish translations for TODAY/TOMORROW/DAYAFTERTOMORROW.
+- Removed unused import from js/electron.js
## [2.1.1] - 2017-04-01
diff --git a/js/electron.js b/js/electron.js
index 20b6475f..334a3593 100644
--- a/js/electron.js
+++ b/js/electron.js
@@ -2,7 +2,6 @@
"use strict";
-const Server = require(__dirname + "/server.js");
const electron = require("electron");
const core = require(__dirname + "/app.js");
From 3404ebbbb8bca36d9c2c2cc465345389c1700e1b Mon Sep 17 00:00:00 2001
From: Unknown
Date: Mon, 26 Jun 2017 13:03:03 +0200
Subject: [PATCH 61/83] Calender respects timeformat
In reference to issue #776, made changes to calendar.js to respect timeformat config option if it is used
---
CHANGELOG.md | 1 +
modules/default/calendar/calendar.js | 23 +++++++++++++++++++++++
2 files changed, 24 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 709bd73e..ca1c5f29 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -37,6 +37,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Fix double message about port when server is starting
- Corrected Swedish translations for TODAY/TOMORROW/DAYAFTERTOMORROW.
- Removed unused import from js/electron.js
+- Made calendar.js respect config.timeFormat irrespecive of locale setting
## [2.1.1] - 2017-04-01
diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js
index 848d163c..9ab864b9 100644
--- a/modules/default/calendar/calendar.js
+++ b/modules/default/calendar/calendar.js
@@ -69,6 +69,29 @@ Module.register("calendar", {
// Set locale.
moment.locale(config.language);
+ switch (config.timeFormat) {
+ case 12: {
+ moment.updateLocale(config.language, {
+ longDateFormat: {
+ LT: "h:mm A"
+ }
+ });
+ break;
+ }
+ case 24: {
+ moment.updateLocale(config.language, {
+ longDateFormat: {
+ LT: "hh:mm"
+ }
+ });
+ break;
+ }
+ // If config.timeFormat was not given (or has invalid format) default to locale default
+ default: {
+ break;
+ }
+ }
+
for (var c in this.config.calendars) {
var calendar = this.config.calendars[c];
calendar.url = calendar.url.replace("webcal://", "http://");
From c15148fc07119ed772438442fae6fa9d47b51946 Mon Sep 17 00:00:00 2001
From: Unknown
Date: Mon, 26 Jun 2017 14:33:18 +0200
Subject: [PATCH 62/83] Issue with date aligment in clock.js
In reference to issue #927. Made changes to clock.js and clock_styles.css to prevent aligment problem when displaying analog clock and large calendar entries
---
CHANGELOG.md | 1 +
modules/default/clock/clock.js | 1 -
modules/default/clock/clock_styles.css | 2 +-
3 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 709bd73e..fee15829 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -37,6 +37,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Fix double message about port when server is starting
- Corrected Swedish translations for TODAY/TOMORROW/DAYAFTERTOMORROW.
- Removed unused import from js/electron.js
+- Fixed alignment of analog clock when a large calendar is displayed in the same side bar
## [2.1.1] - 2017-04-01
diff --git a/modules/default/clock/clock.js b/modules/default/clock/clock.js
index c25c3897..9a0f57d7 100644
--- a/modules/default/clock/clock.js
+++ b/modules/default/clock/clock.js
@@ -180,7 +180,6 @@ Module.register("clock",{
wrapper.appendChild(weekWrapper);
} else if (this.config.displayType === "analog") {
// Display only an analog clock
- dateWrapper.style.textAlign = "center";
if (this.config.showWeek) {
weekWrapper.style.paddingBottom = "15px";
diff --git a/modules/default/clock/clock_styles.css b/modules/default/clock/clock_styles.css
index 1df9bf83..dd9eb0f8 100644
--- a/modules/default/clock/clock_styles.css
+++ b/modules/default/clock/clock_styles.css
@@ -1,5 +1,5 @@
.clockCircle {
- margin: 0 auto;
+ margin: 0;
position: relative;
border-radius: 50%;
background-size: 100%;
From 8814ce05a9c1ecdeb73d2325de1f8888393c22ea Mon Sep 17 00:00:00 2001
From: Cosmin
Date: Thu, 29 Jun 2017 10:00:25 +0300
Subject: [PATCH 63/83] Add translations for ro.
---
CHANGELOG.md | 1 +
translations/ro.json | 32 ++++++++++++++++++++++++++++++++
translations/translations.js | 1 +
3 files changed, 34 insertions(+)
create mode 100644 translations/ro.json
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 709bd73e..a6967d60 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -25,6 +25,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add ability for `currentweather` module to display indoor temperature via INDOOR_TEMPERATURE notification
- Add ability to change the path of the `custom.css`.
- Add translation Dutch to Alert module.
+- Added Romanian translation.
### Updated
- Added missing keys to Polish translation.
diff --git a/translations/ro.json b/translations/ro.json
new file mode 100644
index 00000000..4105763e
--- /dev/null
+++ b/translations/ro.json
@@ -0,0 +1,32 @@
+{
+ "LOADING": "Se încarcă …",
+
+ "TODAY": "Astăzi",
+ "TOMORROW": "Mâine",
+ "DAYAFTERTOMORROW": "Poimâine",
+ "RUNNING": "Se termină în",
+ "EMPTY": "Nici un eveniment.",
+
+ "WEEK": "Săptămâna",
+
+ "N": "N",
+ "NNE": "NNE",
+ "NE": "NE",
+ "ENE": "ENE",
+ "E": "E",
+ "ESE": "ESE",
+ "SE": "SE",
+ "SSE": "SSE",
+ "S": "S",
+ "SSW": "SSW",
+ "SW": "SW",
+ "WSW": "WSW",
+ "W": "W",
+ "WNW": "WNW",
+ "NW": "NW",
+ "NNW": "NNW",
+
+ "UPDATE_NOTIFICATION": "Un update este disponibil pentru MagicMirror².",
+ "UPDATE_NOTIFICATION_MODULE": "Un update este disponibil pentru modulul MODULE_NAME.",
+ "UPDATE_INFO": "Există COMMIT_COUNT commit-uri noi pe branch-ul BRANCH_NAME."
+}
diff --git a/translations/translations.js b/translations/translations.js
index 61701ab9..ad40652c 100644
--- a/translations/translations.js
+++ b/translations/translations.js
@@ -33,6 +33,7 @@ var translations = {
"is" : "translations/is.json", // Icelandic
"et" : "translations/et.json", // Estonian
"kr" : "translations/kr.json", // Korean
+ "ro" : "translations/ro.json", // Romanian
};
if (typeof module !== "undefined") {module.exports = translations;}
From 402dea3c8b5c0af78f03c4036ae6b40a30e187be Mon Sep 17 00:00:00 2001
From: Michael Teeuw
Date: Sat, 1 Jul 2017 20:03:17 +0200
Subject: [PATCH 64/83] Prepare for release.
---
CHANGELOG.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 63f925a0..e14576f8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
-## [2.1.2] - Unreleased
+## [2.1.2] - 2017-07-01
### Changed
- Revert Docker related changes in favor of [docker-MagicMirror](https://github.com/bastilimbach/docker-MagicMirror). All Docker images are outsourced. ([#856](https://github.com/MichMich/MagicMirror/pull/856))
From ce98d0184d190fc4fdfa3c29cd0c5f7a70472065 Mon Sep 17 00:00:00 2001
From: Michael Teeuw
Date: Sat, 1 Jul 2017 20:07:08 +0200
Subject: [PATCH 65/83] Update Version Number
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 31759870..58f27427 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "magicmirror",
- "version": "2.1.2-dev",
+ "version": "2.1.2",
"description": "The open source modular smart mirror platform.",
"main": "js/electron.js",
"scripts": {
From 2c77cb5ca5b4311c2fd76b8eff53830571a89259 Mon Sep 17 00:00:00 2001
From: Michael Teeuw
Date: Sat, 1 Jul 2017 20:35:11 +0200
Subject: [PATCH 66/83] Set dev version.
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 58f27427..fe64cc41 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "magicmirror",
- "version": "2.1.2",
+ "version": "2.1.3-dev",
"description": "The open source modular smart mirror platform.",
"main": "js/electron.js",
"scripts": {
From 8893df118ea1adc61a103f1d1ec888a1ad0c7cb1 Mon Sep 17 00:00:00 2001
From: Michael Teeuw
Date: Sat, 1 Jul 2017 20:36:17 +0200
Subject: [PATCH 67/83] Add template for v2.1.3
---
CHANGELOG.md | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e14576f8..d25af7db 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
+## [2.1.3] - Unreleased
+
+### Changed
+### Added
+### Updated
+### Fixed
+
## [2.1.2] - 2017-07-01
### Changed
From 66f93ee541ec5df8cd5f55bca1ba76d7821917b0 Mon Sep 17 00:00:00 2001
From: Unknown
Date: Sun, 25 Jun 2017 12:18:59 +0200
Subject: [PATCH 68/83] Added clientonly script
Added clientonly script to have server and client run at different locations
---
CHANGELOG.md | 1 +
README.md | 5 +++
clientonly/index.js | 97 +++++++++++++++++++++++++++++++++++++++++
config/config.js.sample | 1 +
js/defaults.js | 2 +
js/electron.js | 14 +++---
js/server.js | 3 ++
package.json | 1 +
8 files changed, 118 insertions(+), 6 deletions(-)
create mode 100644 clientonly/index.js
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d25af7db..94d1ee24 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -33,6 +33,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add ability to change the path of the `custom.css`.
- Add translation Dutch to Alert module.
- Added Romanian translation.
+- Add `clientonly` script to start only the electron client for a remote server
### Updated
- Added missing keys to Polish translation.
diff --git a/README.md b/README.md
index 8b0c66be..b7dea0fb 100644
--- a/README.md
+++ b/README.md
@@ -48,6 +48,11 @@ bash -c "$(curl -sL https://raw.githubusercontent.com/MichMich/MagicMirror/maste
### Server Only
In some cases, you want to start the application without an actual app window. In this case, you can start MagicMirror² in server only mode by manually running `node serveronly` or using Docker. This will start the server, after which you can open the application in your browser of choice. Detailed description below.
+### Client Only
+When you have a server running remotely and want to connect a standalone client to this instance, you can manually run `node clientonly --address 192.168.1.5 --port 8080`. (Specify the ip address and port number of the server)
+
+**Important:** Make sure that you whitelist the interface/ip in the server config where you want the client to connect to, otherwise it will not be allowed to connect to the server
+
#### Docker
MagicMirror² in server only mode can be deployed using [Docker](https://docker.com). After a successful [Docker installation](https://docs.docker.com/engine/installation/) you just need to execute the following command in the shell:
diff --git a/clientonly/index.js b/clientonly/index.js
new file mode 100644
index 00000000..1a8fa0a6
--- /dev/null
+++ b/clientonly/index.js
@@ -0,0 +1,97 @@
+/* jshint esversion: 6 */
+
+"use strict";
+
+// Use seperate scope to prevent global scope pollution
+(function () {
+ const cookie = require("cookie");
+
+ var config = { };
+
+ // Parse command line arguments, if any
+ var addressIndex = process.argv.indexOf("--address");
+ var portIndex = process.argv.indexOf("--port");
+
+ if (addressIndex > -1) {
+ config.address = process.argv[addressIndex + 1];
+ } else {
+ fail();
+ }
+ if (portIndex > -1) {
+ config.port = process.argv[portIndex + 1];
+ } else {
+ fail();
+ }
+
+ function fail(message, code = 1) {
+ if (message !== undefined && typeof message === "string") {
+ console.log(message);
+ } else {
+ console.log("Usage: 'node clientonly --address 192.168.1.10 --port 8080'");
+ }
+ process.exit(code);
+ }
+
+ function getServerConfig(url) {
+ // Return new pending promise
+ return new Promise((resolve, reject) => {
+ // Select http or https module, depending on reqested url
+ const lib = url.startsWith("https") ? require("https") : require("http");
+ const request = lib.get(url, (response) => {
+ // Handle http errors
+ if (response.statusCode < 200 || response.statusCode > 299) {
+ reject(new Error(`Failed to load page, status code: ${response.statusCode}`));
+ }
+ if (response.headers["set-cookie"]) {
+ response.headers["set-cookie"].forEach(
+ function (cookiestr) {
+ if (cookiestr.startsWith("config")) {
+ var cookieString = JSON.parse(cookie.parse(cookiestr)["config"]);
+ resolve(cookieString);
+ }
+ }
+ );
+ };
+ reject(new Error(`Unable to read config cookie from server (${url}`));
+ });
+ // Handle connection errors of the request
+ request.on("error", (err) => reject(new Error(`Failed to load page, error message: ${err}`)));
+ })
+ };
+
+ // Only start the client if a non-local server was provided
+ if (["localhost", "127.0.0.1", "::1", "::ffff:127.0.0.1", undefined].indexOf(config.address) === -1) {
+ getServerConfig(`http://${config.address}:${config.port}/`)
+ .then(function (cookieConfig) {
+ // Pass along the server config via an environment variable
+ var env = Object.create( process.env );
+ var options = { env: env };
+ cookieConfig.address = config.address;
+ cookieConfig.port = config.port;
+ env.config = JSON.stringify(cookieConfig);
+
+ // Spawn electron application
+ const electron = require("electron");
+ const child = require("child_process").spawn(electron, ["js/electron.js"], options );
+
+ // Pipe all child process output to current stdout
+ child.stdout.on("data", function (buf) {
+ process.stdout.write(`Client: ${buf}`);
+ });
+
+ // Pipe all child process errors to current stderr
+ child.stderr.on("data", function (buf) {
+ process.stderr.write(`Client: ${buf}`);
+ });
+
+ child.on("error", function (err) {
+ process.stdout.write(`Client: ${err}`);
+ });
+ })
+ .catch(function (reason) {
+ fail(`Unable to connect to server: (${reason})`);
+ });
+ } else {
+ fail();
+ }
+}());
\ No newline at end of file
diff --git a/config/config.js.sample b/config/config.js.sample
index b2eeee8a..8294e319 100644
--- a/config/config.js.sample
+++ b/config/config.js.sample
@@ -9,6 +9,7 @@
*/
var config = {
+ address: "localhost",
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
// or add a specific IPv4 of 192.168.1.5 :
diff --git a/js/defaults.js b/js/defaults.js
index eada87a4..08c4d945 100644
--- a/js/defaults.js
+++ b/js/defaults.js
@@ -8,10 +8,12 @@
*/
var port = 8080;
+var address = "localhost";
if (typeof(mmPort) !== "undefined") {
port = mmPort;
}
var defaults = {
+ address: address,
port: port,
kioskmode: false,
electronOptions: {},
diff --git a/js/electron.js b/js/electron.js
index 334a3593..d55f17a0 100644
--- a/js/electron.js
+++ b/js/electron.js
@@ -6,7 +6,7 @@ const electron = require("electron");
const core = require(__dirname + "/app.js");
// Config
-var config = {};
+var config = process.env.config ? JSON.parse(process.env.config) : {};
// Module to control application life.
const app = electron.app;
// Module to create native browser window.
@@ -47,7 +47,7 @@ function createWindow() {
// and load the index.html of the app.
//mainWindow.loadURL('file://' + __dirname + '../../index.html');
- mainWindow.loadURL("http://localhost:" + config.port);
+ mainWindow.loadURL(`http://${config.address}:${config.port}`);
// Open the DevTools if run with "npm start dev"
if (process.argv.includes("dev")) {
@@ -96,8 +96,10 @@ app.on("activate", function() {
}
});
-// Start the core application.
+// Start the core application if server is run on localhost
// This starts all node helpers and starts the webserver.
-core.start(function(c) {
- config = c;
-});
+if (["localhost", "127.0.0.1", "::1", "::ffff:127.0.0.1", undefined].indexOf(config.address) > -1) {
+ core.start(function (c) {
+ config = c;
+ });
+}
\ No newline at end of file
diff --git a/js/server.js b/js/server.js
index 002c2031..6ac5fe04 100644
--- a/js/server.js
+++ b/js/server.js
@@ -62,6 +62,9 @@ var Server = function(config, callback) {
}
html = html.replace("#CONFIG_FILE#", configFile);
+ // Set a temporary cookie called "config" to the JSON encoded config object
+ res.cookie("config", JSON.stringify(config));
+
res.send(html);
});
diff --git a/package.json b/package.json
index fe64cc41..64a01a6d 100644
--- a/package.json
+++ b/package.json
@@ -52,6 +52,7 @@
"dependencies": {
"body-parser": "^1.17.2",
"colors": "^1.1.2",
+ "cookie": "^0.3.1",
"electron": "^1.6.10",
"express": "^4.15.3",
"express-ipfilter": "latest",
From 1590693547bf207090f1b451e5f23e6de9821660 Mon Sep 17 00:00:00 2001
From: Unknown
Date: Thu, 29 Jun 2017 21:22:00 +0200
Subject: [PATCH 69/83] New server route to fetch config
Added a new route to the Express server to supply client with config. Removed the original 'cookie' hack
---
clientonly/index.js | 47 +++++++++++++++++++++------------------------
js/server.js | 7 ++++---
2 files changed, 26 insertions(+), 28 deletions(-)
diff --git a/clientonly/index.js b/clientonly/index.js
index 1a8fa0a6..7212fd7e 100644
--- a/clientonly/index.js
+++ b/clientonly/index.js
@@ -6,7 +6,7 @@
(function () {
const cookie = require("cookie");
- var config = { };
+ var config = {};
// Parse command line arguments, if any
var addressIndex = process.argv.indexOf("--address");
@@ -38,41 +38,38 @@
// Select http or https module, depending on reqested url
const lib = url.startsWith("https") ? require("https") : require("http");
const request = lib.get(url, (response) => {
- // Handle http errors
- if (response.statusCode < 200 || response.statusCode > 299) {
- reject(new Error(`Failed to load page, status code: ${response.statusCode}`));
- }
- if (response.headers["set-cookie"]) {
- response.headers["set-cookie"].forEach(
- function (cookiestr) {
- if (cookiestr.startsWith("config")) {
- var cookieString = JSON.parse(cookie.parse(cookiestr)["config"]);
- resolve(cookieString);
- }
- }
- );
- };
- reject(new Error(`Unable to read config cookie from server (${url}`));
+ var configData = "";
+
+ // Gather incomming data
+ response.on("data", function(chunk) {
+ configData += chunk;
+ });
+ // Resolve promise at the end of the HTTP/HTTPS stream
+ response.on("end", function() {
+ resolve(JSON.parse(configData));
+ });
+ });
+
+ request.on("error", function(error) {
+ reject(new Error(`Unable to read config from server (${url} (${error.message}`));
});
- // Handle connection errors of the request
- request.on("error", (err) => reject(new Error(`Failed to load page, error message: ${err}`)));
})
};
// Only start the client if a non-local server was provided
if (["localhost", "127.0.0.1", "::1", "::ffff:127.0.0.1", undefined].indexOf(config.address) === -1) {
- getServerConfig(`http://${config.address}:${config.port}/`)
- .then(function (cookieConfig) {
+ getServerConfig(`http://${config.address}:${config.port}/config/`)
+ .then(function (config) {
// Pass along the server config via an environment variable
- var env = Object.create( process.env );
+ var env = Object.create(process.env);
var options = { env: env };
- cookieConfig.address = config.address;
- cookieConfig.port = config.port;
- env.config = JSON.stringify(cookieConfig);
+ config.address = config.address;
+ config.port = config.port;
+ env.config = JSON.stringify(config);
// Spawn electron application
const electron = require("electron");
- const child = require("child_process").spawn(electron, ["js/electron.js"], options );
+ const child = require("child_process").spawn(electron, ["js/electron.js"], options);
// Pipe all child process output to current stdout
child.stdout.on("data", function (buf) {
diff --git a/js/server.js b/js/server.js
index 6ac5fe04..8520e392 100644
--- a/js/server.js
+++ b/js/server.js
@@ -52,6 +52,10 @@ var Server = function(config, callback) {
res.send(global.version);
});
+ app.get("/config", function(req,res) {
+ res.send(config);
+ });
+
app.get("/", function(req, res) {
var html = fs.readFileSync(path.resolve(global.root_path + "/index.html"), {encoding: "utf8"});
html = html.replace("#VERSION#", global.version);
@@ -62,9 +66,6 @@ var Server = function(config, callback) {
}
html = html.replace("#CONFIG_FILE#", configFile);
- // Set a temporary cookie called "config" to the JSON encoded config object
- res.cookie("config", JSON.stringify(config));
-
res.send(html);
});
From 8eb772d80b98ad13832430ce00d4a60b13bf942a Mon Sep 17 00:00:00 2001
From: Unknown
Date: Thu, 29 Jun 2017 21:32:48 +0200
Subject: [PATCH 70/83] Allow use of env variables
Made some changes that allows the use of environment variables when starting the standalone client.
---
clientonly/index.js | 48 ++++++++++++++++++++++++---------------------
1 file changed, 26 insertions(+), 22 deletions(-)
diff --git a/clientonly/index.js b/clientonly/index.js
index 7212fd7e..4eeabf42 100644
--- a/clientonly/index.js
+++ b/clientonly/index.js
@@ -5,31 +5,22 @@
// Use seperate scope to prevent global scope pollution
(function () {
const cookie = require("cookie");
-
var config = {};
- // Parse command line arguments, if any
- var addressIndex = process.argv.indexOf("--address");
- var portIndex = process.argv.indexOf("--port");
-
- if (addressIndex > -1) {
- config.address = process.argv[addressIndex + 1];
- } else {
- fail();
- }
- if (portIndex > -1) {
- config.port = process.argv[portIndex + 1];
- } else {
- fail();
- }
-
- function fail(message, code = 1) {
- if (message !== undefined && typeof message === "string") {
- console.log(message);
- } else {
- console.log("Usage: 'node clientonly --address 192.168.1.10 --port 8080'");
+ // Helper function to get server address/hostname from either the commandline or env
+ function getServerAddress() {
+ // Helper function to get command line parameters
+ // Assumes that a cmdline parameter is defined with `--key [value]`
+ function getCommandLineParameter(key, defaultValue = undefined) {
+ var index = process.argv.indexOf(`--${key}`);
+ var value = index > -1 ? process.argv[index + 1] : undefined;
+ return value !== undefined ? String(value) : defaultValue;
}
- process.exit(code);
+
+ // Prefer command line arguments over environment variables
+ ["address", "port"].forEach((key) => {
+ config[key] = getCommandLineParameter(key, process.env[key.toUpperCase()]);
+ })
}
function getServerConfig(url) {
@@ -56,6 +47,19 @@
})
};
+ function fail(message, code = 1) {
+ if (message !== undefined && typeof message === "string") {
+ console.log(message);
+ } else {
+ console.log("Usage: 'node clientonly --address 192.168.1.10 --port 8080'");
+ }
+ process.exit(code);
+ }
+
+ getServerAddress();
+
+ (config.address && config.port) || fail();
+
// Only start the client if a non-local server was provided
if (["localhost", "127.0.0.1", "::1", "::ffff:127.0.0.1", undefined].indexOf(config.address) === -1) {
getServerConfig(`http://${config.address}:${config.port}/config/`)
From a05e69b85566c17cf9541048a6e425c827d02146 Mon Sep 17 00:00:00 2001
From: Unknown
Date: Fri, 30 Jun 2017 08:20:42 +0200
Subject: [PATCH 71/83] Removed cookie dependencies
Removed module import and dependency on the 'cookie' library; it's not used anymore
---
clientonly/index.js | 1 -
package.json | 1 -
2 files changed, 2 deletions(-)
diff --git a/clientonly/index.js b/clientonly/index.js
index 4eeabf42..750a98e6 100644
--- a/clientonly/index.js
+++ b/clientonly/index.js
@@ -4,7 +4,6 @@
// Use seperate scope to prevent global scope pollution
(function () {
- const cookie = require("cookie");
var config = {};
// Helper function to get server address/hostname from either the commandline or env
diff --git a/package.json b/package.json
index 64a01a6d..fe64cc41 100644
--- a/package.json
+++ b/package.json
@@ -52,7 +52,6 @@
"dependencies": {
"body-parser": "^1.17.2",
"colors": "^1.1.2",
- "cookie": "^0.3.1",
"electron": "^1.6.10",
"express": "^4.15.3",
"express-ipfilter": "latest",
From 561ae102fbeeeef9e78b0e55593a83b74a62efc7 Mon Sep 17 00:00:00 2001
From: eouia
Date: Thu, 6 Jul 2017 11:57:16 +0200
Subject: [PATCH 72/83] add symbol and color on broadcasted events
---
modules/default/calendar/calendar.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js
index 9ab864b9..ad6024f9 100644
--- a/modules/default/calendar/calendar.js
+++ b/modules/default/calendar/calendar.js
@@ -522,6 +522,8 @@ Module.register("calendar", {
var calendar = this.calendarData[url];
for (var e in calendar) {
var event = cloneObject(calendar[e]);
+ event.symbol = this.symbolsForUrl(url);
+ event.color = this.colorForUrl(url);
delete event.url;
eventList.push(event);
}
From 83be49156f4cd3773c50daf0336f1063f7b9607c Mon Sep 17 00:00:00 2001
From: eouia
Date: Thu, 6 Jul 2017 16:09:16 +0200
Subject: [PATCH 73/83] symbol and color for broadcasted events (calendar)
- Add symbol and color properties of event when `CALENDAR_EVENTS` notification is broadcasted from `defaultcalendar` module.
---
CHANGELOG.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d25af7db..edfb8e01 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Changed
### Added
+- Add symbol and color properties of event when `CALENDAR_EVENTS` notification is broadcasted from `defaultcalendar` module.
### Updated
### Fixed
From 29bae230a4c6b11387fedd627107776e4dd4d897 Mon Sep 17 00:00:00 2001
From: eouia
Date: Thu, 6 Jul 2017 16:09:49 +0200
Subject: [PATCH 74/83] Update CHANGELOG.md
---
CHANGELOG.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index edfb8e01..389265bd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,7 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Changed
### Added
-- Add symbol and color properties of event when `CALENDAR_EVENTS` notification is broadcasted from `defaultcalendar` module.
+- Add symbol and color properties of event when `CALENDAR_EVENTS` notification is broadcasted from `default/calendar` module.
### Updated
### Fixed
From 551619e7724b1d7dce0a17b9035d7d7ea29cfcaf Mon Sep 17 00:00:00 2001
From: Unknown
Date: Sat, 8 Jul 2017 21:31:05 +0200
Subject: [PATCH 75/83] Fix issue #933
This is a fix for issue 933 which restores the original alligment of the analog clock; the analog clock still does not properly align to the left of the left sidebar when content of other left sidebar modules is too wide.
---
CHANGELOG.md | 2 ++
modules/default/clock/clock_styles.css | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d25af7db..6b95e14d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Updated
### Fixed
+- Fixed issue with incorrect allignment of analog clock when displayed in the center column of the MM
+
## [2.1.2] - 2017-07-01
### Changed
diff --git a/modules/default/clock/clock_styles.css b/modules/default/clock/clock_styles.css
index dd9eb0f8..1df9bf83 100644
--- a/modules/default/clock/clock_styles.css
+++ b/modules/default/clock/clock_styles.css
@@ -1,5 +1,5 @@
.clockCircle {
- margin: 0;
+ margin: 0 auto;
position: relative;
border-radius: 50%;
background-size: 100%;
From db0bd3fa2ded2d4ed22670c304f3b7b0a0264bd9 Mon Sep 17 00:00:00 2001
From: Unknown
Date: Sun, 9 Jul 2017 11:45:57 +0200
Subject: [PATCH 76/83] Fix issue #940
Fix for issue 940 - time was incorrectly displayed in a 12-hour fashion regardless of the 24 hour clock preference in config.js
---
modules/default/calendar/calendar.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js
index 9ab864b9..672a47b3 100644
--- a/modules/default/calendar/calendar.js
+++ b/modules/default/calendar/calendar.js
@@ -81,7 +81,7 @@ Module.register("calendar", {
case 24: {
moment.updateLocale(config.language, {
longDateFormat: {
- LT: "hh:mm"
+ LT: "HH:mm"
}
});
break;
From 04b550e435cbd6d11a525e2b0cbc359a06315609 Mon Sep 17 00:00:00 2001
From: Michael Teeuw
Date: Wed, 12 Jul 2017 10:58:28 +0200
Subject: [PATCH 77/83] Update correct version.
---
CHANGELOG.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 94d1ee24..8c4e8836 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Changed
### Added
+- Add `clientonly` script to start only the electron client for a remote server
### Updated
### Fixed
@@ -33,7 +34,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add ability to change the path of the `custom.css`.
- Add translation Dutch to Alert module.
- Added Romanian translation.
-- Add `clientonly` script to start only the electron client for a remote server
### Updated
- Added missing keys to Polish translation.
From a7297d2685f5ed9b6b34df496065f05ee0d36568 Mon Sep 17 00:00:00 2001
From: Unknown
Date: Mon, 17 Jul 2017 14:23:24 +0200
Subject: [PATCH 78/83] Fix for issue #950
Changed 'server.js' to allow an empty ipwhitelist to allow any and all hosts instead of none as mentioned in the documentation
---
CHANGELOG.md | 2 ++
js/class.js | 36 +++++++++----------
js/defaults.js | 2 +-
js/electron.js | 5 +--
js/server.js | 2 +-
.../updatenotification/updatenotification.js | 12 +++----
tests/configs/check_config.js | 8 ++---
7 files changed, 35 insertions(+), 32 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 45528ab2..592a521f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,10 +11,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add symbol and color properties of event when `CALENDAR_EVENTS` notification is broadcasted from `default/calendar` module.
### Updated
+- Changed 'default.js' - listen on all attached interfaces by default
### Fixed
- Fixed issue with incorrect allignment of analog clock when displayed in the center column of the MM
+- Fixed ipWhitelist behaviour to make empty whitelist ([]) allow any and all hosts access to the MM
## [2.1.2] - 2017-07-01
diff --git a/js/class.js b/js/class.js
index 3c44250e..f2fa5159 100644
--- a/js/class.js
+++ b/js/class.js
@@ -4,15 +4,15 @@
*/
// Inspired by base2 and Prototype
-(function() {
+(function () {
var initializing = false;
- var fnTest = /xyz/.test(function() {xyz;}) ? /\b_super\b/ : /.*/;
+ var fnTest = /xyz/.test(function () { xyz; }) ? /\b_super\b/ : /.*/;
// The base Class implementation (does nothing)
- this.Class = function() {};
+ this.Class = function () { };
// Create a new Class that inherits from this class
- Class.extend = function(prop) {
+ Class.extend = function (prop) {
var _super = this.prototype;
// Instantiate a base class (but only create the instance,
@@ -30,23 +30,23 @@
for (var name in prop) {
// Check if we're overwriting an existing function
prototype[name] = typeof prop[name] == "function" &&
- typeof _super[name] == "function" && fnTest.test(prop[name]) ? (function(name, fn) {
- return function() {
- var tmp = this._super;
+ typeof _super[name] == "function" && fnTest.test(prop[name]) ? (function (name, fn) {
+ return function () {
+ var tmp = this._super;
- // Add a new ._super() method that is the same method
- // but on the super-class
- this._super = _super[name];
+ // Add a new ._super() method that is the same method
+ // but on the super-class
+ this._super = _super[name];
- // The method only need to be bound temporarily, so we
- // remove it when we're done executing
- var ret = fn.apply(this, arguments);
- this._super = tmp;
+ // The method only need to be bound temporarily, so we
+ // remove it when we're done executing
+ var ret = fn.apply(this, arguments);
+ this._super = tmp;
- return ret;
- };
- })(name, prop[name]) : prop[name];
+ return ret;
+ };
+ })(name, prop[name]) : prop[name];
}
// The dummy class constructor
@@ -90,4 +90,4 @@ function cloneObject(obj) {
}
/*************** DO NOT EDIT THE LINE BELOW ***************/
-if (typeof module !== "undefined") {module.exports = Class;}
+if (typeof module !== "undefined") { module.exports = Class; }
diff --git a/js/defaults.js b/js/defaults.js
index 08c4d945..06ff7b62 100644
--- a/js/defaults.js
+++ b/js/defaults.js
@@ -8,7 +8,7 @@
*/
var port = 8080;
-var address = "localhost";
+var address = ""; // Default to listening on all interfaces
if (typeof(mmPort) !== "undefined") {
port = mmPort;
}
diff --git a/js/electron.js b/js/electron.js
index d55f17a0..7003218a 100644
--- a/js/electron.js
+++ b/js/electron.js
@@ -46,8 +46,9 @@ function createWindow() {
mainWindow = new BrowserWindow(electronOptions);
// and load the index.html of the app.
- //mainWindow.loadURL('file://' + __dirname + '../../index.html');
- mainWindow.loadURL(`http://${config.address}:${config.port}`);
+ // If config.address is not defined or is an empty string (listening on all interfaces), connect to localhost
+ var address = config.address === void 0 | config.address === "" ? config.address = "localhost" : config.address;
+ mainWindow.loadURL(`http://${address}:${config.port}`);
// Open the DevTools if run with "npm start dev"
if (process.argv.includes("dev")) {
diff --git a/js/server.js b/js/server.js
index 8520e392..78aac2fe 100644
--- a/js/server.js
+++ b/js/server.js
@@ -30,7 +30,7 @@ var Server = function(config, callback) {
}
app.use(function(req, res, next) {
- var result = ipfilter(config.ipWhitelist, {mode: "allow", log: false})(req, res, function(err) {
+ var result = ipfilter(config.ipWhitelist, {mode: config.ipWhitelist.length === 0 ? "deny" : "allow", log: false})(req, res, function(err) {
if (err === undefined) {
return next();
}
diff --git a/modules/default/updatenotification/updatenotification.js b/modules/default/updatenotification/updatenotification.js
index f663f593..bf7ec2c1 100644
--- a/modules/default/updatenotification/updatenotification.js
+++ b/modules/default/updatenotification/updatenotification.js
@@ -11,11 +11,11 @@ Module.register("updatenotification", {
},
- notificationReceived: function(notification, payload, sender) {
+ notificationReceived: function (notification, payload, sender) {
if (notification === "DOM_OBJECTS_CREATED") {
this.sendSocketNotification("CONFIG", this.config);
this.sendSocketNotification("MODULES", Module.definitions);
- this.hide(0,{lockString: self.identifier});
+ this.hide(0, { lockString: self.identifier });
}
},
@@ -26,11 +26,11 @@ Module.register("updatenotification", {
}
},
- updateUI: function() {
+ updateUI: function () {
var self = this;
if (this.status && this.status.behind > 0) {
self.updateDom(0);
- self.show(1000, {lockString: self.identifier});
+ self.show(1000, { lockString: self.identifier });
}
},
@@ -59,8 +59,8 @@ Module.register("updatenotification", {
var subtext = document.createElement("div");
subtext.innerHTML = this.translate("UPDATE_INFO")
- .replace("COMMIT_COUNT", this.status.behind + " " + ((this.status.behind == 1)? "commit" : "commits"))
- .replace("BRANCH_NAME", this.status.current);
+ .replace("COMMIT_COUNT", this.status.behind + " " + ((this.status.behind == 1) ? "commit" : "commits"))
+ .replace("BRANCH_NAME", this.status.current);
subtext.className = "xsmall dimmed";
wrapper.appendChild(subtext);
}
diff --git a/tests/configs/check_config.js b/tests/configs/check_config.js
index fa294761..f5ad61c1 100644
--- a/tests/configs/check_config.js
+++ b/tests/configs/check_config.js
@@ -14,7 +14,7 @@ var path = require("path");
var fs = require("fs");
var Utils = require(__dirname + "/../../js/utils.js");
-if (process.env.NODE_ENV == "test") {return 0};
+if (process.env.NODE_ENV == "test") { return 0 };
/* getConfigFile()
* Return string with path of configuration file
@@ -48,9 +48,9 @@ try {
// In case the there errors show messages and
// return
console.info(Utils.colors.info("Checking file... ", configFileName));
- // I'm not sure if all ever is utf-8
-fs.readFile(configFileName, "utf-8", function(err, data) {
- if (err) {throw err;}
+// I'm not sure if all ever is utf-8
+fs.readFile(configFileName, "utf-8", function (err, data) {
+ if (err) { throw err; }
v.JSHINT(data); // Parser by jshint
if (v.JSHINT.errors.length == 0) {
From 07533f565800ebb6ab1cb328420e735b8a6c8b02 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Thu, 20 Jul 2017 00:25:10 -0400
Subject: [PATCH 79/83] Activate e2e test in Travis and desactivate failed test
in CI: - dev_console - vendor_spec
---
.travis.yml | 2 +-
tests/e2e/dev_console.js | 4 ++++
tests/e2e/vendor_spec.js | 3 +++
3 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index cbf1dfa2..daf0ff88 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,7 +10,7 @@ before_script:
- sleep 5
script:
- grunt
-- npm run test:unit
+- npm run test
cache:
directories:
- node_modules
diff --git a/tests/e2e/dev_console.js b/tests/e2e/dev_console.js
index b430e9e4..0b47878a 100644
--- a/tests/e2e/dev_console.js
+++ b/tests/e2e/dev_console.js
@@ -24,6 +24,10 @@ global.before(function () {
describe("Argument 'dev'", function () {
this.timeout(20000);
+ // This tests fail and crash another tests
+ // FIXME
+ return false;
+
before(function() {
// Set config sample for use in test
process.env.MM_CONFIG_FILE = "tests/configs/env.js";
diff --git a/tests/e2e/vendor_spec.js b/tests/e2e/vendor_spec.js
index 39abf906..eb7aa6ec 100644
--- a/tests/e2e/vendor_spec.js
+++ b/tests/e2e/vendor_spec.js
@@ -9,6 +9,9 @@ describe("Vendors", function () {
this.timeout(20000);
+ // FIXME: This test fail in Travis
+ return true;
+
beforeEach(function (done) {
app.start().then(function() { done(); } );
});
From 318c8c68b0195f5deacbcd3389da1401c2b6d6d4 Mon Sep 17 00:00:00 2001
From: Bas van Wetten
Date: Sat, 22 Jul 2017 15:40:35 +0200
Subject: [PATCH 80/83] Change suggestion for e2e testing
- Changed global-setup.js to allow for easier test creation
- Changed each e2e test suite to work with new global-setup.js
- All tests (except for dev_console.js) now work with Travis CI
---
.travis.yml | 3 +-
js/electron.js | 7 +-
package.json | 2 +-
tests/e2e_new/dev_console.js | 66 +++++++++++++
tests/e2e_new/env_spec.js | 69 ++++++++++++++
tests/e2e_new/global-setup.js | 62 +++++++++++++
tests/e2e_new/ipWhistlist_spec.js | 53 +++++++++++
tests/e2e_new/modules/calendar_spec.js | 106 +++++++++++++++++++++
tests/e2e_new/modules/clock_es_spec.js | 76 +++++++++++++++
tests/e2e_new/modules/clock_spec.js | 108 ++++++++++++++++++++++
tests/e2e_new/modules/compliments_spec.js | 95 +++++++++++++++++++
tests/e2e_new/modules/helloworld_spec.js | 39 ++++++++
tests/e2e_new/modules/newsfeed_spec.js | 40 ++++++++
tests/e2e_new/modules_position_spec.js | 50 ++++++++++
tests/e2e_new/port_config.js | 60 ++++++++++++
tests/e2e_new/vendor_spec.js | 43 +++++++++
tests/e2e_new/without_modules.js | 43 +++++++++
tests/servers/basic-auth.js | 31 ++++---
18 files changed, 934 insertions(+), 19 deletions(-)
create mode 100644 tests/e2e_new/dev_console.js
create mode 100644 tests/e2e_new/env_spec.js
create mode 100644 tests/e2e_new/global-setup.js
create mode 100644 tests/e2e_new/ipWhistlist_spec.js
create mode 100644 tests/e2e_new/modules/calendar_spec.js
create mode 100644 tests/e2e_new/modules/clock_es_spec.js
create mode 100644 tests/e2e_new/modules/clock_spec.js
create mode 100644 tests/e2e_new/modules/compliments_spec.js
create mode 100644 tests/e2e_new/modules/helloworld_spec.js
create mode 100644 tests/e2e_new/modules/newsfeed_spec.js
create mode 100644 tests/e2e_new/modules_position_spec.js
create mode 100644 tests/e2e_new/port_config.js
create mode 100644 tests/e2e_new/vendor_spec.js
create mode 100644 tests/e2e_new/without_modules.js
diff --git a/.travis.yml b/.travis.yml
index daf0ff88..1e3b6a9f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,7 +10,8 @@ before_script:
- sleep 5
script:
- grunt
-- npm run test
+- npm run test:unit
+- npm run test:e2e
cache:
directories:
- node_modules
diff --git a/js/electron.js b/js/electron.js
index 7003218a..84842ed2 100644
--- a/js/electron.js
+++ b/js/electron.js
@@ -17,7 +17,6 @@ const BrowserWindow = electron.BrowserWindow;
let mainWindow;
function createWindow() {
-
var electronOptionsDefaults = {
width: 800,
height: 600,
@@ -47,7 +46,7 @@ function createWindow() {
// and load the index.html of the app.
// If config.address is not defined or is an empty string (listening on all interfaces), connect to localhost
- var address = config.address === void 0 | config.address === "" ? config.address = "localhost" : config.address;
+ var address = (config.address === void 0) | (config.address === "") ? (config.address = "localhost") : config.address;
mainWindow.loadURL(`http://${address}:${config.port}`);
// Open the DevTools if run with "npm start dev"
@@ -100,7 +99,7 @@ app.on("activate", function() {
// Start the core application if server is run on localhost
// This starts all node helpers and starts the webserver.
if (["localhost", "127.0.0.1", "::1", "::ffff:127.0.0.1", undefined].indexOf(config.address) > -1) {
- core.start(function (c) {
+ core.start(function(c) {
config = c;
});
-}
\ No newline at end of file
+}
diff --git a/package.json b/package.json
index fe64cc41..b184f92e 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,7 @@
"postinstall": "sh installers/postinstall/postinstall.sh",
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests --recursive",
"test:unit": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests/unit --recursive",
- "test:e2e": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests/e2e --recursive",
+ "test:e2e": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests/e2e_new --recursive",
"config:check": "node tests/configs/check_config.js"
},
"repository": {
diff --git a/tests/e2e_new/dev_console.js b/tests/e2e_new/dev_console.js
new file mode 100644
index 00000000..42530a38
--- /dev/null
+++ b/tests/e2e_new/dev_console.js
@@ -0,0 +1,66 @@
+const helpers = require("./global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Development console tests", function() {
+ // This tests fail and crash another tests
+ // Suspect problem with window focus
+ // FIXME
+ return false;
+
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/env.js";
+ });
+
+ describe("Without 'dev' commandline argument", function() {
+ before(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
+
+ after(function() {
+ return helpers.stopApplication(app);
+ });
+
+ it("should not open dev console when absent", function() {
+ return expect(app.browserWindow.isDevToolsOpened()).to.eventually.equal(false);
+ });
+ });
+
+ describe("With 'dev' commandline argument", function() {
+ before(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js", "dev"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
+
+ after(function() {
+ return helpers.stopApplication(app);
+ });
+
+ it("should open dev console when provided", function() {
+ return expect(app.browserWindow.isDevToolsOpened()).to.eventually.equal(true);
+ });
+ });
+});
diff --git a/tests/e2e_new/env_spec.js b/tests/e2e_new/env_spec.js
new file mode 100644
index 00000000..50be0825
--- /dev/null
+++ b/tests/e2e_new/env_spec.js
@@ -0,0 +1,69 @@
+const helpers = require("./global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Electron app environment", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/env.js";
+ });
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
+
+ afterEach(function() {
+ return helpers.stopApplication(app);
+ });
+
+ it("should open a browserwindow", function() {
+ return app.client
+ .waitUntilWindowLoaded()
+ .browserWindow.focus()
+ .getWindowCount()
+ .should.eventually.equal(1)
+ .browserWindow.isMinimized()
+ .should.eventually.be.false.browserWindow.isDevToolsOpened()
+ .should.eventually.be.false.browserWindow.isVisible()
+ .should.eventually.be.true.browserWindow.isFocused()
+ .should.eventually.be.true.browserWindow.getBounds()
+ .should.eventually.have.property("width")
+ .and.be.above(0)
+ .browserWindow.getBounds()
+ .should.eventually.have.property("height")
+ .and.be.above(0)
+ .browserWindow.getTitle()
+ .should.eventually.equal("Magic Mirror");
+ });
+
+ 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);
+ 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);
+ done();
+ });
+ });
+});
diff --git a/tests/e2e_new/global-setup.js b/tests/e2e_new/global-setup.js
new file mode 100644
index 00000000..6bfe11d0
--- /dev/null
+++ b/tests/e2e_new/global-setup.js
@@ -0,0 +1,62 @@
+/*
+ * Magic Mirror
+ *
+ * Global Setup Test Suite
+ *
+ * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
+ * MIT Licensed.
+ *
+*/
+
+const Application = require("spectron").Application;
+const assert = require("assert");
+const chai = require("chai");
+const chaiAsPromised = require("chai-as-promised");
+
+const path = require("path");
+
+global.before(function() {
+ chai.should();
+ chai.use(chaiAsPromised);
+});
+
+exports.getElectronPath = function() {
+ var electronPath = path.join(__dirname, "..", "..", "node_modules", ".bin", "electron");
+ if (process.platform === "win32") {
+ electronPath += ".cmd";
+ }
+ return electronPath;
+};
+
+// Set timeout - if this is run within Travis, increase timeout
+exports.setupTimeout = function(test) {
+ if (process.env.CI) {
+ test.timeout(30000);
+ } else {
+ test.timeout(10000);
+ }
+};
+
+exports.startApplication = function(options) {
+ options.path = exports.getElectronPath();
+ if (process.env.CI) {
+ options.startTimeout = 30000;
+ }
+
+ var app = new Application(options);
+ return app.start().then(function() {
+ assert.equal(app.isRunning(), true);
+ chaiAsPromised.transferPromiseness = app.transferPromiseness;
+ return app;
+ });
+};
+
+exports.stopApplication = function(app) {
+ if (!app || !app.isRunning()) {
+ return;
+ }
+
+ return app.stop().then(function() {
+ assert.equal(app.isRunning(), false);
+ });
+};
diff --git a/tests/e2e_new/ipWhistlist_spec.js b/tests/e2e_new/ipWhistlist_spec.js
new file mode 100644
index 00000000..ef89aa24
--- /dev/null
+++ b/tests/e2e_new/ipWhistlist_spec.js
@@ -0,0 +1,53 @@
+const helpers = require("./global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("ipWhitelist directive configuration", function () {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function () {
+ return helpers.startApplication({
+ args: ["js/electron.js"]
+ }).then(function (startedApp) { app = startedApp; })
+ });
+
+ afterEach(function () {
+ return helpers.stopApplication(app);
+ });
+
+ describe("Set ipWhitelist without access", function () {
+ before(function () {
+ // Set config sample for use in test
+ 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);
+ done();
+ });
+ });
+ });
+
+ describe("Set ipWhitelist []", function () {
+ before(function () {
+ // Set config sample for use in test
+ 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);
+ done();
+ });
+ });
+ });
+
+});
diff --git a/tests/e2e_new/modules/calendar_spec.js b/tests/e2e_new/modules/calendar_spec.js
new file mode 100644
index 00000000..a1fe8503
--- /dev/null
+++ b/tests/e2e_new/modules/calendar_spec.js
@@ -0,0 +1,106 @@
+const helpers = require("../global-setup");
+const path = require("path");
+const request = require("request");
+const serverBasicAuth = require("../../servers/basic-auth.js");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Calendar module", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
+
+ afterEach(function() {
+ return helpers.stopApplication(app);
+ });
+
+ describe("Default configuration", function() {
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/default.js";
+ });
+
+ it("Should return TestEvents", function() {
+ return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
+ });
+ });
+
+ describe("Basic auth", function() {
+ before(function() {
+ serverBasicAuth.listen(8010);
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/basic-auth.js";
+ });
+
+ after(function(done) {
+ serverBasicAuth.close(done());
+ });
+
+ it("Should return TestEvents", function() {
+ return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
+ });
+ });
+
+ describe("Basic auth by default", function() {
+ before(function() {
+ serverBasicAuth.listen(8011);
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/auth-default.js";
+ });
+
+ after(function(done) {
+ serverBasicAuth.close(done());
+ });
+
+ it("Should return TestEvents", function() {
+ return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
+ });
+ });
+
+ describe("Basic auth backward compatibilty configuration", function() {
+ before(function() {
+ serverBasicAuth.listen(8012);
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/old-basic-auth.js";
+ });
+
+ after(function(done) {
+ serverBasicAuth.close(done());
+ });
+
+ it("Should return TestEvents", function() {
+ return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
+ });
+ });
+
+ describe("Fail Basic auth", function() {
+ before(function() {
+ serverBasicAuth.listen(8020);
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/fail-basic-auth.js";
+ });
+
+ after(function(done) {
+ serverBasicAuth.close(done());
+ });
+
+ it("Should return No upcoming events", function() {
+ return app.client.waitUntilTextExists(".calendar", "No upcoming events.", 10000);
+ });
+ });
+});
diff --git a/tests/e2e_new/modules/clock_es_spec.js b/tests/e2e_new/modules/clock_es_spec.js
new file mode 100644
index 00000000..5f17fd9d
--- /dev/null
+++ b/tests/e2e_new/modules/clock_es_spec.js
@@ -0,0 +1,76 @@
+const helpers = require("../global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Clock set to spanish language module", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
+
+ afterEach(function() {
+ return helpers.stopApplication(app);
+ });
+
+ describe("with default 24hr clock config", function() {
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/es/clock_24hr.js";
+ });
+
+ it("shows date with correct format", function() {
+ const dateRegex = /^(?:lunes|martes|miércoles|jueves|viernes|sábado|domingo), \d{1,2} de (?:enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre) de \d{4}$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .date").should.eventually.match(dateRegex);
+ });
+
+ it("shows time in 24hr format", function() {
+ const timeRegex = /^(?:2[0-3]|[01]\d):[0-5]\d[0-5]\d$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
+ });
+ });
+
+ describe("with default 12hr clock config", function() {
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/es/clock_12hr.js";
+ });
+
+ it("shows date with correct format", function() {
+ const dateRegex = /^(?:lunes|martes|miércoles|jueves|viernes|sábado|domingo), \d{1,2} de (?:enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre) de \d{4}$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .date").should.eventually.match(dateRegex);
+ });
+
+ it("shows time in 12hr format", function() {
+ const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[ap]m$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
+ });
+ });
+
+ describe("with showPeriodUpper config enabled", function() {
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/es/clock_showPeriodUpper.js";
+ });
+
+ it("shows 12hr time with upper case AM/PM", function() {
+ const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[AP]M$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
+ });
+ });
+});
diff --git a/tests/e2e_new/modules/clock_spec.js b/tests/e2e_new/modules/clock_spec.js
new file mode 100644
index 00000000..e342242c
--- /dev/null
+++ b/tests/e2e_new/modules/clock_spec.js
@@ -0,0 +1,108 @@
+const helpers = require("../global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Clock module", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
+
+ afterEach(function() {
+ return helpers.stopApplication(app);
+ });
+
+ describe("with default 24hr clock config", function() {
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_24hr.js";
+ });
+
+ it("shows date with correct format", function() {
+ const dateRegex = /^(?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (?:January|February|March|April|May|June|July|August|September|October|November|December) \d{1,2}, \d{4}$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .date").should.eventually.match(dateRegex);
+ });
+
+ it("shows time in 24hr format", function() {
+ const timeRegex = /^(?:2[0-3]|[01]\d):[0-5]\d[0-5]\d$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
+ });
+ });
+
+ describe("with default 12hr clock config", function() {
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_12hr.js";
+ });
+
+ it("shows date with correct format", function() {
+ const dateRegex = /^(?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (?:January|February|March|April|May|June|July|August|September|October|November|December) \d{1,2}, \d{4}$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .date").should.eventually.match(dateRegex);
+ });
+
+ it("shows time in 12hr format", function() {
+ const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[ap]m$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
+ });
+ });
+
+ describe("with showPeriodUpper config enabled", function() {
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_showPeriodUpper.js";
+ });
+
+ it("shows 12hr time with upper case AM/PM", function() {
+ const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[AP]M$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
+ });
+ });
+
+ describe("with displaySeconds config disabled", function() {
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_displaySeconds_false.js";
+ });
+
+ it("shows 12hr time without seconds am/pm", function() {
+ const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[ap]m$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
+ });
+ });
+
+ describe("with showWeek config enabled", function() {
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_showWeek.js";
+ });
+
+ it("shows week with correct format", function() {
+ const weekRegex = /^Week [0-9]{1,2}$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .week").should.eventually.match(weekRegex);
+ });
+
+ it("shows week with correct number of week of year", function() {
+ it("FIXME: if the day is a sunday this not match");
+ // const currentWeekNumber = require("current-week-number")();
+ // const weekToShow = "Week " + currentWeekNumber;
+ // return app.client.waitUntilWindowLoaded()
+ // .getText(".clock .week").should.eventually.equal(weekToShow);
+ });
+ });
+});
diff --git a/tests/e2e_new/modules/compliments_spec.js b/tests/e2e_new/modules/compliments_spec.js
new file mode 100644
index 00000000..a840981e
--- /dev/null
+++ b/tests/e2e_new/modules/compliments_spec.js
@@ -0,0 +1,95 @@
+const helpers = require("../global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Compliments module", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
+
+ afterEach(function() {
+ return helpers.stopApplication(app);
+ });
+
+ describe("parts of days", function() {
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_parts_day.js";
+ });
+
+ it("if Morning compliments for that part of day", function() {
+ var hour = new Date().getHours();
+ if (hour >= 3 && hour < 12) {
+ // if morning check
+ return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
+ expect(text).to.be.oneOf(["Hi", "Good Morning", "Morning test"]);
+ });
+ }
+ });
+
+ it("if Afternoon show Compliments for that part of day", function() {
+ var hour = new Date().getHours();
+ if (hour >= 12 && hour < 17) {
+ // if morning check
+ return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
+ expect(text).to.be.oneOf(["Hello", "Good Afternoon", "Afternoon test"]);
+ });
+ }
+ });
+
+ it("if Evening show Compliments for that part of day", function() {
+ var hour = new Date().getHours();
+ if (!(hour >= 3 && hour < 12) && !(hour >= 12 && hour < 17)) {
+ // if evening check
+ return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
+ expect(text).to.be.oneOf(["Hello There", "Good Evening", "Evening test"]);
+ });
+ }
+ });
+ });
+
+ describe("Feature anytime in compliments module", function() {
+ describe("Set anytime and empty compliments for morning, evening and afternoon ", function() {
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_anytime.js";
+ });
+
+ it("Show anytime because if configure empty parts of day compliments and set anytime compliments", function() {
+ return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
+ expect(text).to.be.oneOf(["Anytime here"]);
+ });
+ });
+ });
+
+ describe("Only anytime present in configuration compliments", function() {
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_only_anytime.js";
+ });
+
+ it("Show anytime compliments", function() {
+ return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
+ expect(text).to.be.oneOf(["Anytime here"]);
+ });
+ });
+ });
+ });
+});
diff --git a/tests/e2e_new/modules/helloworld_spec.js b/tests/e2e_new/modules/helloworld_spec.js
new file mode 100644
index 00000000..ee10685a
--- /dev/null
+++ b/tests/e2e_new/modules/helloworld_spec.js
@@ -0,0 +1,39 @@
+const helpers = require("../global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Test helloworld module", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
+
+ before(function() {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/helloworld/helloworld.js";
+ });
+
+ afterEach(function() {
+ return helpers.stopApplication(app);
+ });
+
+ it("Test message helloworld module", function() {
+ return app.client.waitUntilWindowLoaded().getText(".helloworld").should.eventually.equal("Test HelloWorld Module");
+ });
+});
diff --git a/tests/e2e_new/modules/newsfeed_spec.js b/tests/e2e_new/modules/newsfeed_spec.js
new file mode 100644
index 00000000..e062121c
--- /dev/null
+++ b/tests/e2e_new/modules/newsfeed_spec.js
@@ -0,0 +1,40 @@
+const helpers = require("../global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Newsfeed module", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
+
+ afterEach(function() {
+ return helpers.stopApplication(app);
+ });
+
+ describe("Default configuration", function() {
+ before(function() {
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/newsfeed/default.js";
+ });
+
+ it("show title newsfeed", function() {
+ return app.client.waitUntilTextExists(".newsfeed .small", "Rodrigo Ramirez Blog", 10000).should.be.fulfilled;
+ });
+ });
+});
diff --git a/tests/e2e_new/modules_position_spec.js b/tests/e2e_new/modules_position_spec.js
new file mode 100644
index 00000000..d3091cad
--- /dev/null
+++ b/tests/e2e_new/modules_position_spec.js
@@ -0,0 +1,50 @@
+const helpers = require("./global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Position of modules", function () {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function () {
+ return helpers.startApplication({
+ args: ["js/electron.js"]
+ }).then(function (startedApp) { app = startedApp; })
+ });
+
+ afterEach(function () {
+ return helpers.stopApplication(app);
+ });
+
+ describe("Using helloworld", function () {
+
+ before(function () {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/modules/positions.js";
+ });
+
+ var positions = ["top_bar", "top_left", "top_center", "top_right", "upper_third",
+ "middle_center", "lower_third", "bottom_left", "bottom_center", "bottom_right",
+ "bottom_bar", "fullscreen_above", "fullscreen_below"];
+
+ var position;
+ var className;
+ for (idx in positions) {
+ position = positions[idx];
+ className = position.replace("_", ".");
+ it("show text in " + position, function () {
+ return app.client.waitUntilWindowLoaded()
+ .getText("." + className).should.eventually.equal("Text in " + position);
+ });
+ }
+ });
+
+});
diff --git a/tests/e2e_new/port_config.js b/tests/e2e_new/port_config.js
new file mode 100644
index 00000000..00964d53
--- /dev/null
+++ b/tests/e2e_new/port_config.js
@@ -0,0 +1,60 @@
+const helpers = require("./global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("port directive configuration", function () {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function () {
+ return helpers.startApplication({
+ args: ["js/electron.js"]
+ }).then(function (startedApp) { app = startedApp; })
+ });
+
+ afterEach(function () {
+ return helpers.stopApplication(app);
+ });
+
+ describe("Set port 8090", function () {
+ before(function () {
+ // Set config sample for use in this test
+ process.env.MM_CONFIG_FILE = "tests/configs/port_8090.js";
+ });
+
+ it("should return 200", function (done) {
+ request.get("http://localhost:8090", function (err, res, body) {
+ expect(res.statusCode).to.equal(200);
+ done();
+ });
+ });
+ });
+
+ describe("Set port 8100 on enviroment variable MM_PORT", function () {
+ before(function () {
+ process.env.MM_PORT = 8100;
+ // Set config sample for use in this test
+ process.env.MM_CONFIG_FILE = "tests/configs/port_8090.js";
+ });
+
+ after(function () {
+ delete process.env.MM_PORT;
+ });
+
+ it("should return 200", function (done) {
+ request.get("http://localhost:8100", function (err, res, body) {
+ expect(res.statusCode).to.equal(200);
+ done();
+ });
+ });
+ });
+
+});
diff --git a/tests/e2e_new/vendor_spec.js b/tests/e2e_new/vendor_spec.js
new file mode 100644
index 00000000..5d9ba603
--- /dev/null
+++ b/tests/e2e_new/vendor_spec.js
@@ -0,0 +1,43 @@
+const helpers = require("./global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Vendors", function () {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function () {
+ return helpers.startApplication({
+ args: ["js/electron.js"]
+ }).then(function (startedApp) { app = startedApp; })
+ });
+
+ afterEach(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) {
+ expect(res.statusCode).to.equal(200);
+ });
+ });
+ });
+ });
+});
diff --git a/tests/e2e_new/without_modules.js b/tests/e2e_new/without_modules.js
new file mode 100644
index 00000000..e0eda168
--- /dev/null
+++ b/tests/e2e_new/without_modules.js
@@ -0,0 +1,43 @@
+const helpers = require("./global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Check configuration without modules", function () {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function () {
+ return helpers.startApplication({
+ args: ["js/electron.js"]
+ }).then(function (startedApp) { app = startedApp; })
+ });
+
+ afterEach(function () {
+ return helpers.stopApplication(app);
+ });
+
+ before(function () {
+ // Set config sample for use in test
+ process.env.MM_CONFIG_FILE = "tests/configs/without_modules.js";
+ });
+
+ it("Show the message MagicMirror title", function () {
+ return app.client.waitUntilWindowLoaded()
+ .getText("#module_1_helloworld .module-content").should.eventually.equal("Magic Mirror2")
+ });
+
+ it("Show the text Michael's website", function () {
+ return app.client.waitUntilWindowLoaded()
+ .getText("#module_5_helloworld .module-content").should.eventually.equal("www.michaelteeuw.nl");
+ });
+
+});
+
diff --git a/tests/servers/basic-auth.js b/tests/servers/basic-auth.js
index 238bdc26..c409ad2d 100644
--- a/tests/servers/basic-auth.js
+++ b/tests/servers/basic-auth.js
@@ -1,16 +1,21 @@
var http = require("http");
var path = require("path");
var auth = require("http-auth");
-var express = require("express")
+var express = require("express");
+var app = express();
-var basic = auth.basic({
- realm: "MagicMirror Area restricted."
-}, (username, password, callback) => {
- callback(username === "MagicMirror" && password === "CallMeADog");
-});
+var server;
-this.server = express();
-this.server.use(auth.connect(basic));
+var basic = auth.basic(
+ {
+ realm: "MagicMirror Area restricted."
+ },
+ (username, password, callback) => {
+ callback(username === "MagicMirror" && password === "CallMeADog");
+ }
+);
+
+app.use(auth.connect(basic));
// Set directories availables
var directories = ["/tests/configs"];
@@ -18,13 +23,13 @@ var directory;
rootPath = path.resolve(__dirname + "/../../");
for (i in directories) {
directory = directories[i];
- this.server.use(directory, express.static(path.resolve(rootPath + directory)));
+ app.use(directory, express.static(path.resolve(rootPath + directory)));
}
-exports.listen = function () {
- this.server.listen.apply(this.server, arguments);
+exports.listen = function() {
+ server = app.listen.apply(app, arguments);
};
-exports.close = function (callback) {
- this.server.close(callback);
+exports.close = function(callback) {
+ server.close(callback);
};
From 56d2b4a80ce142458bc9b71f75636f77c868571b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?=
Date: Sun, 23 Jul 2017 20:31:26 -0400
Subject: [PATCH 81/83] Close code tag and fix format for Modules Readme
---
modules/README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/README.md b/modules/README.md
index 4a0a1da5..12a42e59 100644
--- a/modules/README.md
+++ b/modules/README.md
@@ -472,7 +472,7 @@ this.translate("RUNNING", {
{
"RUNNING": "Slutar",
}
-
+````
In this case the `translate`-function will not find any variables in the translation, will look for `fallback` variable and use that if possible to create the translation.
## The Node Helper: node_helper.js
From b612f0cdec21b8e4d34a8316e4c2fe98e266806b Mon Sep 17 00:00:00 2001
From: Bas van Wetten
Date: Mon, 24 Jul 2017 21:56:53 +0200
Subject: [PATCH 82/83] PR for issue #956
Changed .gitignore to ignore Visual Studio Code project folder with custom launch configuration. (See issue #956)
---
.gitignore | 3 +++
CHANGELOG.md | 1 +
2 files changed, 4 insertions(+)
diff --git a/.gitignore b/.gitignore
index ecb483e8..9b851b18 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,6 +16,9 @@ jspm_modules
.npm
.node_repl_history
+# Visual Studio Code ignoramuses.
+.vscode/
+
# Various Windows ignoramuses.
Thumbs.db
ehthumbs.db
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 592a521f..90bae37b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Add `clientonly` script to start only the electron client for a remote server.
- Add symbol and color properties of event when `CALENDAR_EVENTS` notification is broadcasted from `default/calendar` module.
+- Add `.vscode/` folder to `.gitignore` to keep custom Visual Studio Code config out of git
### Updated
- Changed 'default.js' - listen on all attached interfaces by default
From 203e1cc9b9ef9050e8392dad8dd4d21487dbc8c2 Mon Sep 17 00:00:00 2001
From: Bas van Wetten
Date: Mon, 24 Jul 2017 22:08:12 +0200
Subject: [PATCH 83/83] Implemented requested change PR #2
Moved tests/e2e_new to tests/e2e folder
---
package.json | 2 +-
tests/e2e/dev_console.js | 73 ++++++++------
tests/e2e/env_spec.js | 68 ++++++++-----
tests/e2e/global-setup.js | 58 ++++++++---
tests/e2e/ipWhistlist_spec.js | 29 +++---
tests/e2e/modules/calendar_spec.js | 65 +++++++++----
tests/e2e/modules/clock_es_spec.js | 77 +++++++--------
tests/e2e/modules/clock_spec.js | 112 +++++++++-------------
tests/e2e/modules/compliments_spec.js | 86 ++++++++---------
tests/e2e/modules/helloworld_spec.js | 41 +++++---
tests/e2e/modules/newsfeed_spec.js | 36 ++++---
tests/e2e/modules_position_spec.js | 34 ++++---
tests/e2e/port_config.js | 33 ++++---
tests/e2e/vendor_spec.js | 32 ++++---
tests/e2e/without_modules.js | 54 +++++------
tests/e2e_new/dev_console.js | 66 -------------
tests/e2e_new/env_spec.js | 69 -------------
tests/e2e_new/global-setup.js | 62 ------------
tests/e2e_new/ipWhistlist_spec.js | 53 ----------
tests/e2e_new/modules/calendar_spec.js | 106 --------------------
tests/e2e_new/modules/clock_es_spec.js | 76 ---------------
tests/e2e_new/modules/clock_spec.js | 108 ---------------------
tests/e2e_new/modules/compliments_spec.js | 95 ------------------
tests/e2e_new/modules/helloworld_spec.js | 39 --------
tests/e2e_new/modules/newsfeed_spec.js | 40 --------
tests/e2e_new/modules_position_spec.js | 50 ----------
tests/e2e_new/port_config.js | 60 ------------
tests/e2e_new/vendor_spec.js | 43 ---------
tests/e2e_new/without_modules.js | 43 ---------
29 files changed, 450 insertions(+), 1260 deletions(-)
delete mode 100644 tests/e2e_new/dev_console.js
delete mode 100644 tests/e2e_new/env_spec.js
delete mode 100644 tests/e2e_new/global-setup.js
delete mode 100644 tests/e2e_new/ipWhistlist_spec.js
delete mode 100644 tests/e2e_new/modules/calendar_spec.js
delete mode 100644 tests/e2e_new/modules/clock_es_spec.js
delete mode 100644 tests/e2e_new/modules/clock_spec.js
delete mode 100644 tests/e2e_new/modules/compliments_spec.js
delete mode 100644 tests/e2e_new/modules/helloworld_spec.js
delete mode 100644 tests/e2e_new/modules/newsfeed_spec.js
delete mode 100644 tests/e2e_new/modules_position_spec.js
delete mode 100644 tests/e2e_new/port_config.js
delete mode 100644 tests/e2e_new/vendor_spec.js
delete mode 100644 tests/e2e_new/without_modules.js
diff --git a/package.json b/package.json
index b184f92e..fe64cc41 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,7 @@
"postinstall": "sh installers/postinstall/postinstall.sh",
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests --recursive",
"test:unit": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests/unit --recursive",
- "test:e2e": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests/e2e_new --recursive",
+ "test:e2e": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests/e2e --recursive",
"config:check": "node tests/configs/check_config.js"
},
"repository": {
diff --git a/tests/e2e/dev_console.js b/tests/e2e/dev_console.js
index 0b47878a..42530a38 100644
--- a/tests/e2e/dev_console.js
+++ b/tests/e2e/dev_console.js
@@ -1,54 +1,65 @@
-const Application = require("spectron").Application;
+const helpers = require("./global-setup");
const path = require("path");
-const chai = require("chai");
-const expect = chai.expect;
-const chaiAsPromised = require("chai-as-promised");
+const request = require("request");
-var electronPath = path.join(__dirname, "../../", "node_modules", ".bin", "electron");
+const expect = require("chai").expect;
-if (process.platform === "win32") {
- electronPath += ".cmd";
-}
-
-var appPath = path.join(__dirname, "../../js/electron.js");
-
-var app = new Application({
- path: electronPath
-});
-
-global.before(function () {
- chai.should();
- chai.use(chaiAsPromised);
-});
-
-describe("Argument 'dev'", function () {
- this.timeout(20000);
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+describe("Development console tests", function() {
// This tests fail and crash another tests
+ // Suspect problem with window focus
// FIXME
return false;
+ helpers.setupTimeout(this);
+
+ var app = null;
+
before(function() {
// Set config sample for use in test
process.env.MM_CONFIG_FILE = "tests/configs/env.js";
});
- afterEach(function (done) {
- app.stop().then(function() { done(); });
- });
+ describe("Without 'dev' commandline argument", function() {
+ before(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
- it("should not open dev console when absent", function () {
- app.args = [appPath];
+ after(function() {
+ return helpers.stopApplication(app);
+ });
- return app.start().then(function() {
+ it("should not open dev console when absent", function() {
return expect(app.browserWindow.isDevToolsOpened()).to.eventually.equal(false);
});
});
- it("should open dev console when provided", function () {
- app.args = [appPath, "dev"];
+ describe("With 'dev' commandline argument", function() {
+ before(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js", "dev"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
- return app.start().then(function() {
+ after(function() {
+ return helpers.stopApplication(app);
+ });
+
+ it("should open dev console when provided", function() {
return expect(app.browserWindow.isDevToolsOpened()).to.eventually.equal(true);
});
});
diff --git a/tests/e2e/env_spec.js b/tests/e2e/env_spec.js
index 202bd5e4..50be0825 100644
--- a/tests/e2e/env_spec.js
+++ b/tests/e2e/env_spec.js
@@ -1,47 +1,69 @@
-const globalSetup = require("./global-setup");
-const app = globalSetup.app;
+const helpers = require("./global-setup");
+const path = require("path");
const request = require("request");
-const chai = require("chai");
-const expect = chai.expect;
-describe("Electron app environment", function () {
- this.timeout(20000);
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Electron app environment", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
before(function() {
// Set config sample for use in test
process.env.MM_CONFIG_FILE = "tests/configs/env.js";
});
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
});
- afterEach(function (done) {
- app.stop().then(function() { done(); });
+ afterEach(function() {
+ return helpers.stopApplication(app);
});
- it("is set to open new app window", function () {
- return app.client.waitUntilWindowLoaded()
- .getWindowCount().should.eventually.equal(1);
+ it("should open a browserwindow", function() {
+ return app.client
+ .waitUntilWindowLoaded()
+ .browserWindow.focus()
+ .getWindowCount()
+ .should.eventually.equal(1)
+ .browserWindow.isMinimized()
+ .should.eventually.be.false.browserWindow.isDevToolsOpened()
+ .should.eventually.be.false.browserWindow.isVisible()
+ .should.eventually.be.true.browserWindow.isFocused()
+ .should.eventually.be.true.browserWindow.getBounds()
+ .should.eventually.have.property("width")
+ .and.be.above(0)
+ .browserWindow.getBounds()
+ .should.eventually.have.property("height")
+ .and.be.above(0)
+ .browserWindow.getTitle()
+ .should.eventually.equal("Magic Mirror");
});
- it("sets correct window title", function () {
- return app.client.waitUntilWindowLoaded()
- .getTitle().should.eventually.equal("Magic Mirror");
- });
-
- it("get request from http://localhost:8080 should return 200", function (done) {
- request.get("http://localhost:8080", function (err, res, body) {
+ 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);
done();
});
});
- it("get request from http://localhost:8080/nothing should return 404", function (done) {
- request.get("http://localhost:8080/nothing", function (err, res, body) {
+ 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);
done();
});
});
-
});
diff --git a/tests/e2e/global-setup.js b/tests/e2e/global-setup.js
index 7b94ec40..6bfe11d0 100644
--- a/tests/e2e/global-setup.js
+++ b/tests/e2e/global-setup.js
@@ -9,26 +9,54 @@
*/
const Application = require("spectron").Application;
-const path = require("path");
+const assert = require("assert");
const chai = require("chai");
const chaiAsPromised = require("chai-as-promised");
-var electronPath = path.join(__dirname, "../../", "node_modules", ".bin", "electron");
+const path = require("path");
-if (process.platform === "win32") {
- electronPath += ".cmd";
-}
-
-var appPath = path.join(__dirname, "../../js/electron.js");
-
-var app = new Application({
- path: electronPath,
- args: [appPath]
-});
-
-global.before(function () {
+global.before(function() {
chai.should();
chai.use(chaiAsPromised);
});
-exports.app = app;
+exports.getElectronPath = function() {
+ var electronPath = path.join(__dirname, "..", "..", "node_modules", ".bin", "electron");
+ if (process.platform === "win32") {
+ electronPath += ".cmd";
+ }
+ return electronPath;
+};
+
+// Set timeout - if this is run within Travis, increase timeout
+exports.setupTimeout = function(test) {
+ if (process.env.CI) {
+ test.timeout(30000);
+ } else {
+ test.timeout(10000);
+ }
+};
+
+exports.startApplication = function(options) {
+ options.path = exports.getElectronPath();
+ if (process.env.CI) {
+ options.startTimeout = 30000;
+ }
+
+ var app = new Application(options);
+ return app.start().then(function() {
+ assert.equal(app.isRunning(), true);
+ chaiAsPromised.transferPromiseness = app.transferPromiseness;
+ return app;
+ });
+};
+
+exports.stopApplication = function(app) {
+ if (!app || !app.isRunning()) {
+ return;
+ }
+
+ return app.stop().then(function() {
+ assert.equal(app.isRunning(), false);
+ });
+};
diff --git a/tests/e2e/ipWhistlist_spec.js b/tests/e2e/ipWhistlist_spec.js
index 46fc4cff..ef89aa24 100644
--- a/tests/e2e/ipWhistlist_spec.js
+++ b/tests/e2e/ipWhistlist_spec.js
@@ -1,24 +1,31 @@
-const globalSetup = require("./global-setup");
-const app = globalSetup.app;
+const helpers = require("./global-setup");
+const path = require("path");
const request = require("request");
-const chai = require("chai");
-const expect = chai.expect;
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
describe("ipWhitelist directive configuration", function () {
+ helpers.setupTimeout(this);
- this.timeout(20000);
+ var app = null;
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
+ beforeEach(function () {
+ return helpers.startApplication({
+ args: ["js/electron.js"]
+ }).then(function (startedApp) { app = startedApp; })
});
- afterEach(function (done) {
- app.stop().then(function() { done(); });
+ afterEach(function () {
+ return helpers.stopApplication(app);
});
describe("Set ipWhitelist without access", function () {
- before(function() {
+ before(function () {
// Set config sample for use in test
process.env.MM_CONFIG_FILE = "tests/configs/noIpWhiteList.js";
});
@@ -31,7 +38,7 @@ describe("ipWhitelist directive configuration", function () {
});
describe("Set ipWhitelist []", function () {
- before(function() {
+ before(function () {
// Set config sample for use in test
process.env.MM_CONFIG_FILE = "tests/configs/empty_ipWhiteList.js";
});
diff --git a/tests/e2e/modules/calendar_spec.js b/tests/e2e/modules/calendar_spec.js
index c701ed3c..a1fe8503 100644
--- a/tests/e2e/modules/calendar_spec.js
+++ b/tests/e2e/modules/calendar_spec.js
@@ -1,19 +1,32 @@
-const globalSetup = require("../global-setup");
-const serverBasicAuth = require("../../servers/basic-auth.js");
-const app = globalSetup.app;
-const chai = require("chai");
-const expect = chai.expect;
+const helpers = require("../global-setup");
+const path = require("path");
+const request = require("request");
+const serverBasicAuth = require("../../servers/basic-auth.js");
-describe("Calendar module", function () {
+const expect = require("chai").expect;
- this.timeout(20000);
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
+describe("Calendar module", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
});
- afterEach(function (done) {
- app.stop().then(function() { done(); });
+ afterEach(function() {
+ return helpers.stopApplication(app);
});
describe("Default configuration", function() {
@@ -22,12 +35,11 @@ describe("Calendar module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/default.js";
});
- it("Should return TestEvents", function () {
+ it("Should return TestEvents", function() {
return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
});
});
-
describe("Basic auth", function() {
before(function() {
serverBasicAuth.listen(8010);
@@ -35,12 +47,15 @@ describe("Calendar module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/basic-auth.js";
});
- it("Should return TestEvents", function () {
+ after(function(done) {
+ serverBasicAuth.close(done());
+ });
+
+ it("Should return TestEvents", function() {
return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
});
});
-
describe("Basic auth by default", function() {
before(function() {
serverBasicAuth.listen(8011);
@@ -48,7 +63,11 @@ describe("Calendar module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/auth-default.js";
});
- it("Should return TestEvents", function () {
+ after(function(done) {
+ serverBasicAuth.close(done());
+ });
+
+ it("Should return TestEvents", function() {
return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
});
});
@@ -60,7 +79,11 @@ describe("Calendar module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/old-basic-auth.js";
});
- it("Should return TestEvents", function () {
+ after(function(done) {
+ serverBasicAuth.close(done());
+ });
+
+ it("Should return TestEvents", function() {
return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
});
});
@@ -72,10 +95,12 @@ describe("Calendar module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/fail-basic-auth.js";
});
- it("Should return No upcoming events", function () {
+ after(function(done) {
+ serverBasicAuth.close(done());
+ });
+
+ it("Should return No upcoming events", function() {
return app.client.waitUntilTextExists(".calendar", "No upcoming events.", 10000);
});
});
-
-
});
diff --git a/tests/e2e/modules/clock_es_spec.js b/tests/e2e/modules/clock_es_spec.js
index f90263cf..5f17fd9d 100644
--- a/tests/e2e/modules/clock_es_spec.js
+++ b/tests/e2e/modules/clock_es_spec.js
@@ -1,8 +1,32 @@
-const globalSetup = require("../global-setup");
-const app = globalSetup.app;
+const helpers = require("../global-setup");
+const path = require("path");
+const request = require("request");
-describe("Clock set to spanish language module", function () {
- this.timeout(20000);
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Clock set to spanish language module", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
+
+ afterEach(function() {
+ return helpers.stopApplication(app);
+ });
describe("with default 24hr clock config", function() {
before(function() {
@@ -10,24 +34,14 @@ describe("Clock set to spanish language module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/es/clock_24hr.js";
});
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
- });
-
- afterEach(function (done) {
- app.stop().then(function() { done(); });
- });
-
- it("shows date with correct format", function () {
+ it("shows date with correct format", function() {
const dateRegex = /^(?:lunes|martes|miércoles|jueves|viernes|sábado|domingo), \d{1,2} de (?:enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre) de \d{4}$/;
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .date").should.eventually.match(dateRegex);
+ return app.client.waitUntilWindowLoaded().getText(".clock .date").should.eventually.match(dateRegex);
});
it("shows time in 24hr format", function() {
- const timeRegex = /^(?:2[0-3]|[01]\d):[0-5]\d[0-5]\d$/
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .time").should.eventually.match(timeRegex);
+ const timeRegex = /^(?:2[0-3]|[01]\d):[0-5]\d[0-5]\d$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
});
});
@@ -37,24 +51,14 @@ describe("Clock set to spanish language module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/es/clock_12hr.js";
});
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
- });
-
- afterEach(function (done) {
- app.stop().then(function() { done(); });
- });
-
- it("shows date with correct format", function () {
+ it("shows date with correct format", function() {
const dateRegex = /^(?:lunes|martes|miércoles|jueves|viernes|sábado|domingo), \d{1,2} de (?:enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre) de \d{4}$/;
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .date").should.eventually.match(dateRegex);
+ return app.client.waitUntilWindowLoaded().getText(".clock .date").should.eventually.match(dateRegex);
});
it("shows time in 12hr format", function() {
const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[ap]m$/;
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .time").should.eventually.match(timeRegex);
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
});
});
@@ -64,18 +68,9 @@ describe("Clock set to spanish language module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/es/clock_showPeriodUpper.js";
});
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
- });
-
- afterEach(function (done) {
- app.stop().then(function() { done(); });
- });
-
it("shows 12hr time with upper case AM/PM", function() {
const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[AP]M$/;
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .time").should.eventually.match(timeRegex);
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
});
});
});
diff --git a/tests/e2e/modules/clock_spec.js b/tests/e2e/modules/clock_spec.js
index 89d7e9e9..e342242c 100644
--- a/tests/e2e/modules/clock_spec.js
+++ b/tests/e2e/modules/clock_spec.js
@@ -1,8 +1,32 @@
-const globalSetup = require("../global-setup");
-const app = globalSetup.app;
+const helpers = require("../global-setup");
+const path = require("path");
+const request = require("request");
-describe("Clock module", function () {
- this.timeout(20000);
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Clock module", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
+
+ afterEach(function() {
+ return helpers.stopApplication(app);
+ });
describe("with default 24hr clock config", function() {
before(function() {
@@ -10,24 +34,14 @@ describe("Clock module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_24hr.js";
});
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
- });
-
- afterEach(function (done) {
- app.stop().then(function() { done(); });
- });
-
- it("shows date with correct format", function () {
+ it("shows date with correct format", function() {
const dateRegex = /^(?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (?:January|February|March|April|May|June|July|August|September|October|November|December) \d{1,2}, \d{4}$/;
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .date").should.eventually.match(dateRegex);
+ return app.client.waitUntilWindowLoaded().getText(".clock .date").should.eventually.match(dateRegex);
});
it("shows time in 24hr format", function() {
- const timeRegex = /^(?:2[0-3]|[01]\d):[0-5]\d[0-5]\d$/
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .time").should.eventually.match(timeRegex);
+ const timeRegex = /^(?:2[0-3]|[01]\d):[0-5]\d[0-5]\d$/;
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
});
});
@@ -37,24 +51,14 @@ describe("Clock module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_12hr.js";
});
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
- });
-
- afterEach(function (done) {
- app.stop().then(function() { done(); });
- });
-
- it("shows date with correct format", function () {
+ it("shows date with correct format", function() {
const dateRegex = /^(?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (?:January|February|March|April|May|June|July|August|September|October|November|December) \d{1,2}, \d{4}$/;
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .date").should.eventually.match(dateRegex);
+ return app.client.waitUntilWindowLoaded().getText(".clock .date").should.eventually.match(dateRegex);
});
it("shows time in 12hr format", function() {
const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[ap]m$/;
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .time").should.eventually.match(timeRegex);
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
});
});
@@ -64,18 +68,9 @@ describe("Clock module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_showPeriodUpper.js";
});
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
- });
-
- afterEach(function (done) {
- app.stop().then(function() { done(); });
- });
-
it("shows 12hr time with upper case AM/PM", function() {
const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[AP]M$/;
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .time").should.eventually.match(timeRegex);
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
});
});
@@ -85,18 +80,9 @@ describe("Clock module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_displaySeconds_false.js";
});
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
- });
-
- afterEach(function (done) {
- app.stop().then(function() { done(); });
- });
-
it("shows 12hr time without seconds am/pm", function() {
const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[ap]m$/;
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .time").should.eventually.match(timeRegex);
+ return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
});
});
@@ -106,29 +92,17 @@ describe("Clock module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_showWeek.js";
});
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
- });
-
- afterEach(function (done) {
- app.stop().then(function() { done(); });
- });
-
it("shows week with correct format", function() {
const weekRegex = /^Week [0-9]{1,2}$/;
- return app.client.waitUntilWindowLoaded()
- .getText(".clock .week").should.eventually.match(weekRegex);
+ return app.client.waitUntilWindowLoaded().getText(".clock .week").should.eventually.match(weekRegex);
});
it("shows week with correct number of week of year", function() {
-
- it("FIXME: if the day is a sunday this not match");
- // const currentWeekNumber = require("current-week-number")();
- // const weekToShow = "Week " + currentWeekNumber;
- // return app.client.waitUntilWindowLoaded()
- // .getText(".clock .week").should.eventually.equal(weekToShow);
+ it("FIXME: if the day is a sunday this not match");
+ // const currentWeekNumber = require("current-week-number")();
+ // const weekToShow = "Week " + currentWeekNumber;
+ // return app.client.waitUntilWindowLoaded()
+ // .getText(".clock .week").should.eventually.equal(weekToShow);
});
-
});
-
});
diff --git a/tests/e2e/modules/compliments_spec.js b/tests/e2e/modules/compliments_spec.js
index 0dd2c411..a840981e 100644
--- a/tests/e2e/modules/compliments_spec.js
+++ b/tests/e2e/modules/compliments_spec.js
@@ -1,77 +1,81 @@
-const globalSetup = require("../global-setup");
-const app = globalSetup.app;
-const chai = require("chai");
-const expect = chai.expect;
+const helpers = require("../global-setup");
+const path = require("path");
+const request = require("request");
-describe("Compliments module", function () {
- this.timeout(20000);
+const expect = require("chai").expect;
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
+describe("Compliments module", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
});
- afterEach(function (done) {
- app.stop().then(function() { done(); });
+ afterEach(function() {
+ return helpers.stopApplication(app);
});
-
describe("parts of days", function() {
-
before(function() {
// Set config sample for use in test
process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_parts_day.js";
});
- it("if Morning compliments for that part of day", function () {
+ it("if Morning compliments for that part of day", function() {
var hour = new Date().getHours();
if (hour >= 3 && hour < 12) {
// if morning check
- return app.client.waitUntilWindowLoaded()
- .getText(".compliments").then(function (text) {
- expect(text).to.be.oneOf(["Hi", "Good Morning", "Morning test"]);
- })
+ return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
+ expect(text).to.be.oneOf(["Hi", "Good Morning", "Morning test"]);
+ });
}
});
- it("if Afternoon show Compliments for that part of day", function () {
+ it("if Afternoon show Compliments for that part of day", function() {
var hour = new Date().getHours();
if (hour >= 12 && hour < 17) {
// if morning check
- return app.client.waitUntilWindowLoaded()
- .getText(".compliments").then(function (text) {
- expect(text).to.be.oneOf(["Hello", "Good Afternoon", "Afternoon test"]);
- })
+ return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
+ expect(text).to.be.oneOf(["Hello", "Good Afternoon", "Afternoon test"]);
+ });
}
});
- it("if Evening show Compliments for that part of day", function () {
+ it("if Evening show Compliments for that part of day", function() {
var hour = new Date().getHours();
if (!(hour >= 3 && hour < 12) && !(hour >= 12 && hour < 17)) {
// if evening check
- return app.client.waitUntilWindowLoaded()
- .getText(".compliments").then(function (text) {
- expect(text).to.be.oneOf(["Hello There", "Good Evening", "Evening test"]);
- })
+ return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
+ expect(text).to.be.oneOf(["Hello There", "Good Evening", "Evening test"]);
+ });
}
});
-
});
-
describe("Feature anytime in compliments module", function() {
-
describe("Set anytime and empty compliments for morning, evening and afternoon ", function() {
before(function() {
// Set config sample for use in test
process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_anytime.js";
});
- it("Show anytime because if configure empty parts of day compliments and set anytime compliments", function () {
- return app.client.waitUntilWindowLoaded()
- .getText(".compliments").then(function (text) {
- expect(text).to.be.oneOf(["Anytime here"]);
- })
+ it("Show anytime because if configure empty parts of day compliments and set anytime compliments", function() {
+ return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
+ expect(text).to.be.oneOf(["Anytime here"]);
+ });
});
});
@@ -81,15 +85,11 @@ describe("Compliments module", function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_only_anytime.js";
});
- it("Show anytime compliments", function () {
- return app.client.waitUntilWindowLoaded()
- .getText(".compliments").then(function (text) {
- expect(text).to.be.oneOf(["Anytime here"]);
- })
+ it("Show anytime compliments", function() {
+ return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
+ expect(text).to.be.oneOf(["Anytime here"]);
+ });
});
});
-
-
});
-
});
diff --git a/tests/e2e/modules/helloworld_spec.js b/tests/e2e/modules/helloworld_spec.js
index f956effb..ee10685a 100644
--- a/tests/e2e/modules/helloworld_spec.js
+++ b/tests/e2e/modules/helloworld_spec.js
@@ -1,24 +1,39 @@
-const globalSetup = require("../global-setup");
-const app = globalSetup.app;
+const helpers = require("../global-setup");
+const path = require("path");
+const request = require("request");
-describe("Test helloworld module", function () {
- this.timeout(20000);
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
+
+describe("Test helloworld module", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
+ });
before(function() {
// Set config sample for use in test
process.env.MM_CONFIG_FILE = "tests/configs/modules/helloworld/helloworld.js";
});
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
+ afterEach(function() {
+ return helpers.stopApplication(app);
});
- afterEach(function (done) {
- app.stop().then(function() { done(); });
- });
-
- it("Test message helloworld module", function () {
- return app.client.waitUntilWindowLoaded()
- .getText(".helloworld").should.eventually.equal("Test HelloWorld Module");
+ it("Test message helloworld module", function() {
+ return app.client.waitUntilWindowLoaded().getText(".helloworld").should.eventually.equal("Test HelloWorld Module");
});
});
diff --git a/tests/e2e/modules/newsfeed_spec.js b/tests/e2e/modules/newsfeed_spec.js
index 049d1a2a..e062121c 100644
--- a/tests/e2e/modules/newsfeed_spec.js
+++ b/tests/e2e/modules/newsfeed_spec.js
@@ -1,27 +1,39 @@
-const globalSetup = require("../global-setup");
-const app = globalSetup.app;
-const chai = require("chai");
-const expect = chai.expect;
+const helpers = require("../global-setup");
+const path = require("path");
+const request = require("request");
-describe("Newsfeed module", function () {
+const expect = require("chai").expect;
- this.timeout(20000);
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
+describe("Newsfeed module", function() {
+ helpers.setupTimeout(this);
+
+ var app = null;
+
+ beforeEach(function() {
+ return helpers
+ .startApplication({
+ args: ["js/electron.js"]
+ })
+ .then(function(startedApp) {
+ app = startedApp;
+ });
});
- afterEach(function (done) {
- app.stop().then(function() { done(); });
+ afterEach(function() {
+ return helpers.stopApplication(app);
});
describe("Default configuration", function() {
-
before(function() {
process.env.MM_CONFIG_FILE = "tests/configs/modules/newsfeed/default.js";
});
- it("show title newsfeed", function () {
+ it("show title newsfeed", function() {
return app.client.waitUntilTextExists(".newsfeed .small", "Rodrigo Ramirez Blog", 10000).should.be.fulfilled;
});
});
diff --git a/tests/e2e/modules_position_spec.js b/tests/e2e/modules_position_spec.js
index a781388a..d3091cad 100644
--- a/tests/e2e/modules_position_spec.js
+++ b/tests/e2e/modules_position_spec.js
@@ -1,24 +1,32 @@
-const globalSetup = require("./global-setup");
-const app = globalSetup.app;
-const chai = require("chai");
-const expect = chai.expect;
+const helpers = require("./global-setup");
+const path = require("path");
+const request = require("request");
+
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
describe("Position of modules", function () {
- this.timeout(20000);
+ helpers.setupTimeout(this);
+ var app = null;
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
+ beforeEach(function () {
+ return helpers.startApplication({
+ args: ["js/electron.js"]
+ }).then(function (startedApp) { app = startedApp; })
});
- afterEach(function (done) {
- app.stop().then(function() { done(); });
+ afterEach(function () {
+ return helpers.stopApplication(app);
});
+ describe("Using helloworld", function () {
- describe("Using helloworld", function() {
-
- before(function() {
+ before(function () {
// Set config sample for use in test
process.env.MM_CONFIG_FILE = "tests/configs/modules/positions.js";
});
@@ -32,7 +40,7 @@ describe("Position of modules", function () {
for (idx in positions) {
position = positions[idx];
className = position.replace("_", ".");
- it("show text in " + position , function () {
+ it("show text in " + position, function () {
return app.client.waitUntilWindowLoaded()
.getText("." + className).should.eventually.equal("Text in " + position);
});
diff --git a/tests/e2e/port_config.js b/tests/e2e/port_config.js
index 44c6b498..00964d53 100644
--- a/tests/e2e/port_config.js
+++ b/tests/e2e/port_config.js
@@ -1,27 +1,35 @@
-const globalSetup = require("./global-setup");
-const app = globalSetup.app;
+const helpers = require("./global-setup");
+const path = require("path");
const request = require("request");
-const chai = require("chai");
-const expect = chai.expect;
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
describe("port directive configuration", function () {
+ helpers.setupTimeout(this);
- this.timeout(20000);
+ var app = null;
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
+ beforeEach(function () {
+ return helpers.startApplication({
+ args: ["js/electron.js"]
+ }).then(function (startedApp) { app = startedApp; })
});
- afterEach(function (done) {
- app.stop().then(function() { done(); });
+ afterEach(function () {
+ return helpers.stopApplication(app);
});
describe("Set port 8090", function () {
- before(function() {
+ before(function () {
// Set config sample for use in this test
process.env.MM_CONFIG_FILE = "tests/configs/port_8090.js";
});
+
it("should return 200", function (done) {
request.get("http://localhost:8090", function (err, res, body) {
expect(res.statusCode).to.equal(200);
@@ -31,15 +39,16 @@ describe("port directive configuration", function () {
});
describe("Set port 8100 on enviroment variable MM_PORT", function () {
- before(function() {
+ before(function () {
process.env.MM_PORT = 8100;
// Set config sample for use in this test
process.env.MM_CONFIG_FILE = "tests/configs/port_8090.js";
});
- after(function(){
+ after(function () {
delete process.env.MM_PORT;
});
+
it("should return 200", function (done) {
request.get("http://localhost:8100", function (err, res, body) {
expect(res.statusCode).to.equal(200);
diff --git a/tests/e2e/vendor_spec.js b/tests/e2e/vendor_spec.js
index eb7aa6ec..5d9ba603 100644
--- a/tests/e2e/vendor_spec.js
+++ b/tests/e2e/vendor_spec.js
@@ -1,34 +1,38 @@
-const globalSetup = require("./global-setup");
-const app = globalSetup.app;
+const helpers = require("./global-setup");
+const path = require("path");
const request = require("request");
-const chai = require("chai");
-const expect = chai.expect;
+const expect = require("chai").expect;
+
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
describe("Vendors", function () {
+ helpers.setupTimeout(this);
- this.timeout(20000);
+ var app = null;
- // FIXME: This test fail in Travis
- return true;
-
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
+ beforeEach(function () {
+ return helpers.startApplication({
+ args: ["js/electron.js"]
+ }).then(function (startedApp) { app = startedApp; })
});
- afterEach(function (done) {
- app.stop().then(function() { done(); });
+ afterEach(function () {
+ return helpers.stopApplication(app);
});
describe("Get list vendors", function () {
- before(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() {
+ it(`should return 200 HTTP code for vendor "${vendor}"`, function () {
urlVendor = "http://localhost:8080/vendor/" + vendors[vendor];
request.get(urlVendor, function (err, res, body) {
expect(res.statusCode).to.equal(200);
diff --git a/tests/e2e/without_modules.js b/tests/e2e/without_modules.js
index 73e845f8..e0eda168 100644
--- a/tests/e2e/without_modules.js
+++ b/tests/e2e/without_modules.js
@@ -1,44 +1,34 @@
-const Application = require("spectron").Application;
+const helpers = require("./global-setup");
const path = require("path");
-const chai = require("chai");
-const chaiAsPromised = require("chai-as-promised");
-
-var electronPath = path.join(__dirname, "../../", "node_modules", ".bin", "electron");
-
-if (process.platform === "win32") {
- electronPath += ".cmd";
-}
-
-var appPath = path.join(__dirname, "../../js/electron.js");
-
-var app = new Application({
- path: electronPath,
- args: [appPath]
-});
-
-global.before(function () {
- chai.should();
- chai.use(chaiAsPromised);
-});
+const request = require("request");
+const expect = require("chai").expect;
+const describe = global.describe;
+const it = global.it;
+const beforeEach = global.beforeEach;
+const afterEach = global.afterEach;
describe("Check configuration without modules", function () {
- this.timeout(20000);
+ helpers.setupTimeout(this);
- before(function() {
- // Set config sample for use in test
+ var app = null;
+
+ beforeEach(function () {
+ return helpers.startApplication({
+ args: ["js/electron.js"]
+ }).then(function (startedApp) { app = startedApp; })
+ });
+
+ afterEach(function () {
+ return helpers.stopApplication(app);
+ });
+
+ before(function () {
+ // Set config sample for use in test
process.env.MM_CONFIG_FILE = "tests/configs/without_modules.js";
});
- beforeEach(function (done) {
- app.start().then(function() { done(); } );
- });
-
- afterEach(function (done) {
- app.stop().then(function() { done(); });
- });
-
it("Show the message MagicMirror title", function () {
return app.client.waitUntilWindowLoaded()
.getText("#module_1_helloworld .module-content").should.eventually.equal("Magic Mirror2")
diff --git a/tests/e2e_new/dev_console.js b/tests/e2e_new/dev_console.js
deleted file mode 100644
index 42530a38..00000000
--- a/tests/e2e_new/dev_console.js
+++ /dev/null
@@ -1,66 +0,0 @@
-const helpers = require("./global-setup");
-const path = require("path");
-const request = require("request");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("Development console tests", function() {
- // This tests fail and crash another tests
- // Suspect problem with window focus
- // FIXME
- return false;
-
- helpers.setupTimeout(this);
-
- var app = null;
-
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/env.js";
- });
-
- describe("Without 'dev' commandline argument", function() {
- before(function() {
- return helpers
- .startApplication({
- args: ["js/electron.js"]
- })
- .then(function(startedApp) {
- app = startedApp;
- });
- });
-
- after(function() {
- return helpers.stopApplication(app);
- });
-
- it("should not open dev console when absent", function() {
- return expect(app.browserWindow.isDevToolsOpened()).to.eventually.equal(false);
- });
- });
-
- describe("With 'dev' commandline argument", function() {
- before(function() {
- return helpers
- .startApplication({
- args: ["js/electron.js", "dev"]
- })
- .then(function(startedApp) {
- app = startedApp;
- });
- });
-
- after(function() {
- return helpers.stopApplication(app);
- });
-
- it("should open dev console when provided", function() {
- return expect(app.browserWindow.isDevToolsOpened()).to.eventually.equal(true);
- });
- });
-});
diff --git a/tests/e2e_new/env_spec.js b/tests/e2e_new/env_spec.js
deleted file mode 100644
index 50be0825..00000000
--- a/tests/e2e_new/env_spec.js
+++ /dev/null
@@ -1,69 +0,0 @@
-const helpers = require("./global-setup");
-const path = require("path");
-const request = require("request");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("Electron app environment", function() {
- helpers.setupTimeout(this);
-
- var app = null;
-
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/env.js";
- });
-
- beforeEach(function() {
- return helpers
- .startApplication({
- args: ["js/electron.js"]
- })
- .then(function(startedApp) {
- app = startedApp;
- });
- });
-
- afterEach(function() {
- return helpers.stopApplication(app);
- });
-
- it("should open a browserwindow", function() {
- return app.client
- .waitUntilWindowLoaded()
- .browserWindow.focus()
- .getWindowCount()
- .should.eventually.equal(1)
- .browserWindow.isMinimized()
- .should.eventually.be.false.browserWindow.isDevToolsOpened()
- .should.eventually.be.false.browserWindow.isVisible()
- .should.eventually.be.true.browserWindow.isFocused()
- .should.eventually.be.true.browserWindow.getBounds()
- .should.eventually.have.property("width")
- .and.be.above(0)
- .browserWindow.getBounds()
- .should.eventually.have.property("height")
- .and.be.above(0)
- .browserWindow.getTitle()
- .should.eventually.equal("Magic Mirror");
- });
-
- 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);
- 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);
- done();
- });
- });
-});
diff --git a/tests/e2e_new/global-setup.js b/tests/e2e_new/global-setup.js
deleted file mode 100644
index 6bfe11d0..00000000
--- a/tests/e2e_new/global-setup.js
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Magic Mirror
- *
- * Global Setup Test Suite
- *
- * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
- * MIT Licensed.
- *
-*/
-
-const Application = require("spectron").Application;
-const assert = require("assert");
-const chai = require("chai");
-const chaiAsPromised = require("chai-as-promised");
-
-const path = require("path");
-
-global.before(function() {
- chai.should();
- chai.use(chaiAsPromised);
-});
-
-exports.getElectronPath = function() {
- var electronPath = path.join(__dirname, "..", "..", "node_modules", ".bin", "electron");
- if (process.platform === "win32") {
- electronPath += ".cmd";
- }
- return electronPath;
-};
-
-// Set timeout - if this is run within Travis, increase timeout
-exports.setupTimeout = function(test) {
- if (process.env.CI) {
- test.timeout(30000);
- } else {
- test.timeout(10000);
- }
-};
-
-exports.startApplication = function(options) {
- options.path = exports.getElectronPath();
- if (process.env.CI) {
- options.startTimeout = 30000;
- }
-
- var app = new Application(options);
- return app.start().then(function() {
- assert.equal(app.isRunning(), true);
- chaiAsPromised.transferPromiseness = app.transferPromiseness;
- return app;
- });
-};
-
-exports.stopApplication = function(app) {
- if (!app || !app.isRunning()) {
- return;
- }
-
- return app.stop().then(function() {
- assert.equal(app.isRunning(), false);
- });
-};
diff --git a/tests/e2e_new/ipWhistlist_spec.js b/tests/e2e_new/ipWhistlist_spec.js
deleted file mode 100644
index ef89aa24..00000000
--- a/tests/e2e_new/ipWhistlist_spec.js
+++ /dev/null
@@ -1,53 +0,0 @@
-const helpers = require("./global-setup");
-const path = require("path");
-const request = require("request");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("ipWhitelist directive configuration", function () {
- helpers.setupTimeout(this);
-
- var app = null;
-
- beforeEach(function () {
- return helpers.startApplication({
- args: ["js/electron.js"]
- }).then(function (startedApp) { app = startedApp; })
- });
-
- afterEach(function () {
- return helpers.stopApplication(app);
- });
-
- describe("Set ipWhitelist without access", function () {
- before(function () {
- // Set config sample for use in test
- 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);
- done();
- });
- });
- });
-
- describe("Set ipWhitelist []", function () {
- before(function () {
- // Set config sample for use in test
- 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);
- done();
- });
- });
- });
-
-});
diff --git a/tests/e2e_new/modules/calendar_spec.js b/tests/e2e_new/modules/calendar_spec.js
deleted file mode 100644
index a1fe8503..00000000
--- a/tests/e2e_new/modules/calendar_spec.js
+++ /dev/null
@@ -1,106 +0,0 @@
-const helpers = require("../global-setup");
-const path = require("path");
-const request = require("request");
-const serverBasicAuth = require("../../servers/basic-auth.js");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("Calendar module", function() {
- helpers.setupTimeout(this);
-
- var app = null;
-
- beforeEach(function() {
- return helpers
- .startApplication({
- args: ["js/electron.js"]
- })
- .then(function(startedApp) {
- app = startedApp;
- });
- });
-
- afterEach(function() {
- return helpers.stopApplication(app);
- });
-
- describe("Default configuration", function() {
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/default.js";
- });
-
- it("Should return TestEvents", function() {
- return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
- });
- });
-
- describe("Basic auth", function() {
- before(function() {
- serverBasicAuth.listen(8010);
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/basic-auth.js";
- });
-
- after(function(done) {
- serverBasicAuth.close(done());
- });
-
- it("Should return TestEvents", function() {
- return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
- });
- });
-
- describe("Basic auth by default", function() {
- before(function() {
- serverBasicAuth.listen(8011);
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/auth-default.js";
- });
-
- after(function(done) {
- serverBasicAuth.close(done());
- });
-
- it("Should return TestEvents", function() {
- return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
- });
- });
-
- describe("Basic auth backward compatibilty configuration", function() {
- before(function() {
- serverBasicAuth.listen(8012);
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/old-basic-auth.js";
- });
-
- after(function(done) {
- serverBasicAuth.close(done());
- });
-
- it("Should return TestEvents", function() {
- return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
- });
- });
-
- describe("Fail Basic auth", function() {
- before(function() {
- serverBasicAuth.listen(8020);
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/fail-basic-auth.js";
- });
-
- after(function(done) {
- serverBasicAuth.close(done());
- });
-
- it("Should return No upcoming events", function() {
- return app.client.waitUntilTextExists(".calendar", "No upcoming events.", 10000);
- });
- });
-});
diff --git a/tests/e2e_new/modules/clock_es_spec.js b/tests/e2e_new/modules/clock_es_spec.js
deleted file mode 100644
index 5f17fd9d..00000000
--- a/tests/e2e_new/modules/clock_es_spec.js
+++ /dev/null
@@ -1,76 +0,0 @@
-const helpers = require("../global-setup");
-const path = require("path");
-const request = require("request");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("Clock set to spanish language module", function() {
- helpers.setupTimeout(this);
-
- var app = null;
-
- beforeEach(function() {
- return helpers
- .startApplication({
- args: ["js/electron.js"]
- })
- .then(function(startedApp) {
- app = startedApp;
- });
- });
-
- afterEach(function() {
- return helpers.stopApplication(app);
- });
-
- describe("with default 24hr clock config", function() {
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/es/clock_24hr.js";
- });
-
- it("shows date with correct format", function() {
- const dateRegex = /^(?:lunes|martes|miércoles|jueves|viernes|sábado|domingo), \d{1,2} de (?:enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre) de \d{4}$/;
- return app.client.waitUntilWindowLoaded().getText(".clock .date").should.eventually.match(dateRegex);
- });
-
- it("shows time in 24hr format", function() {
- const timeRegex = /^(?:2[0-3]|[01]\d):[0-5]\d[0-5]\d$/;
- return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
- });
- });
-
- describe("with default 12hr clock config", function() {
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/es/clock_12hr.js";
- });
-
- it("shows date with correct format", function() {
- const dateRegex = /^(?:lunes|martes|miércoles|jueves|viernes|sábado|domingo), \d{1,2} de (?:enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre) de \d{4}$/;
- return app.client.waitUntilWindowLoaded().getText(".clock .date").should.eventually.match(dateRegex);
- });
-
- it("shows time in 12hr format", function() {
- const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[ap]m$/;
- return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
- });
- });
-
- describe("with showPeriodUpper config enabled", function() {
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/es/clock_showPeriodUpper.js";
- });
-
- it("shows 12hr time with upper case AM/PM", function() {
- const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[AP]M$/;
- return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
- });
- });
-});
diff --git a/tests/e2e_new/modules/clock_spec.js b/tests/e2e_new/modules/clock_spec.js
deleted file mode 100644
index e342242c..00000000
--- a/tests/e2e_new/modules/clock_spec.js
+++ /dev/null
@@ -1,108 +0,0 @@
-const helpers = require("../global-setup");
-const path = require("path");
-const request = require("request");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("Clock module", function() {
- helpers.setupTimeout(this);
-
- var app = null;
-
- beforeEach(function() {
- return helpers
- .startApplication({
- args: ["js/electron.js"]
- })
- .then(function(startedApp) {
- app = startedApp;
- });
- });
-
- afterEach(function() {
- return helpers.stopApplication(app);
- });
-
- describe("with default 24hr clock config", function() {
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_24hr.js";
- });
-
- it("shows date with correct format", function() {
- const dateRegex = /^(?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (?:January|February|March|April|May|June|July|August|September|October|November|December) \d{1,2}, \d{4}$/;
- return app.client.waitUntilWindowLoaded().getText(".clock .date").should.eventually.match(dateRegex);
- });
-
- it("shows time in 24hr format", function() {
- const timeRegex = /^(?:2[0-3]|[01]\d):[0-5]\d[0-5]\d$/;
- return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
- });
- });
-
- describe("with default 12hr clock config", function() {
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_12hr.js";
- });
-
- it("shows date with correct format", function() {
- const dateRegex = /^(?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (?:January|February|March|April|May|June|July|August|September|October|November|December) \d{1,2}, \d{4}$/;
- return app.client.waitUntilWindowLoaded().getText(".clock .date").should.eventually.match(dateRegex);
- });
-
- it("shows time in 12hr format", function() {
- const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[ap]m$/;
- return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
- });
- });
-
- describe("with showPeriodUpper config enabled", function() {
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_showPeriodUpper.js";
- });
-
- it("shows 12hr time with upper case AM/PM", function() {
- const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[AP]M$/;
- return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
- });
- });
-
- describe("with displaySeconds config disabled", function() {
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_displaySeconds_false.js";
- });
-
- it("shows 12hr time without seconds am/pm", function() {
- const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[ap]m$/;
- return app.client.waitUntilWindowLoaded().getText(".clock .time").should.eventually.match(timeRegex);
- });
- });
-
- describe("with showWeek config enabled", function() {
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/clock/clock_showWeek.js";
- });
-
- it("shows week with correct format", function() {
- const weekRegex = /^Week [0-9]{1,2}$/;
- return app.client.waitUntilWindowLoaded().getText(".clock .week").should.eventually.match(weekRegex);
- });
-
- it("shows week with correct number of week of year", function() {
- it("FIXME: if the day is a sunday this not match");
- // const currentWeekNumber = require("current-week-number")();
- // const weekToShow = "Week " + currentWeekNumber;
- // return app.client.waitUntilWindowLoaded()
- // .getText(".clock .week").should.eventually.equal(weekToShow);
- });
- });
-});
diff --git a/tests/e2e_new/modules/compliments_spec.js b/tests/e2e_new/modules/compliments_spec.js
deleted file mode 100644
index a840981e..00000000
--- a/tests/e2e_new/modules/compliments_spec.js
+++ /dev/null
@@ -1,95 +0,0 @@
-const helpers = require("../global-setup");
-const path = require("path");
-const request = require("request");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("Compliments module", function() {
- helpers.setupTimeout(this);
-
- var app = null;
-
- beforeEach(function() {
- return helpers
- .startApplication({
- args: ["js/electron.js"]
- })
- .then(function(startedApp) {
- app = startedApp;
- });
- });
-
- afterEach(function() {
- return helpers.stopApplication(app);
- });
-
- describe("parts of days", function() {
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_parts_day.js";
- });
-
- it("if Morning compliments for that part of day", function() {
- var hour = new Date().getHours();
- if (hour >= 3 && hour < 12) {
- // if morning check
- return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
- expect(text).to.be.oneOf(["Hi", "Good Morning", "Morning test"]);
- });
- }
- });
-
- it("if Afternoon show Compliments for that part of day", function() {
- var hour = new Date().getHours();
- if (hour >= 12 && hour < 17) {
- // if morning check
- return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
- expect(text).to.be.oneOf(["Hello", "Good Afternoon", "Afternoon test"]);
- });
- }
- });
-
- it("if Evening show Compliments for that part of day", function() {
- var hour = new Date().getHours();
- if (!(hour >= 3 && hour < 12) && !(hour >= 12 && hour < 17)) {
- // if evening check
- return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
- expect(text).to.be.oneOf(["Hello There", "Good Evening", "Evening test"]);
- });
- }
- });
- });
-
- describe("Feature anytime in compliments module", function() {
- describe("Set anytime and empty compliments for morning, evening and afternoon ", function() {
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_anytime.js";
- });
-
- it("Show anytime because if configure empty parts of day compliments and set anytime compliments", function() {
- return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
- expect(text).to.be.oneOf(["Anytime here"]);
- });
- });
- });
-
- describe("Only anytime present in configuration compliments", function() {
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_only_anytime.js";
- });
-
- it("Show anytime compliments", function() {
- return app.client.waitUntilWindowLoaded().getText(".compliments").then(function(text) {
- expect(text).to.be.oneOf(["Anytime here"]);
- });
- });
- });
- });
-});
diff --git a/tests/e2e_new/modules/helloworld_spec.js b/tests/e2e_new/modules/helloworld_spec.js
deleted file mode 100644
index ee10685a..00000000
--- a/tests/e2e_new/modules/helloworld_spec.js
+++ /dev/null
@@ -1,39 +0,0 @@
-const helpers = require("../global-setup");
-const path = require("path");
-const request = require("request");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("Test helloworld module", function() {
- helpers.setupTimeout(this);
-
- var app = null;
-
- beforeEach(function() {
- return helpers
- .startApplication({
- args: ["js/electron.js"]
- })
- .then(function(startedApp) {
- app = startedApp;
- });
- });
-
- before(function() {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/helloworld/helloworld.js";
- });
-
- afterEach(function() {
- return helpers.stopApplication(app);
- });
-
- it("Test message helloworld module", function() {
- return app.client.waitUntilWindowLoaded().getText(".helloworld").should.eventually.equal("Test HelloWorld Module");
- });
-});
diff --git a/tests/e2e_new/modules/newsfeed_spec.js b/tests/e2e_new/modules/newsfeed_spec.js
deleted file mode 100644
index e062121c..00000000
--- a/tests/e2e_new/modules/newsfeed_spec.js
+++ /dev/null
@@ -1,40 +0,0 @@
-const helpers = require("../global-setup");
-const path = require("path");
-const request = require("request");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("Newsfeed module", function() {
- helpers.setupTimeout(this);
-
- var app = null;
-
- beforeEach(function() {
- return helpers
- .startApplication({
- args: ["js/electron.js"]
- })
- .then(function(startedApp) {
- app = startedApp;
- });
- });
-
- afterEach(function() {
- return helpers.stopApplication(app);
- });
-
- describe("Default configuration", function() {
- before(function() {
- process.env.MM_CONFIG_FILE = "tests/configs/modules/newsfeed/default.js";
- });
-
- it("show title newsfeed", function() {
- return app.client.waitUntilTextExists(".newsfeed .small", "Rodrigo Ramirez Blog", 10000).should.be.fulfilled;
- });
- });
-});
diff --git a/tests/e2e_new/modules_position_spec.js b/tests/e2e_new/modules_position_spec.js
deleted file mode 100644
index d3091cad..00000000
--- a/tests/e2e_new/modules_position_spec.js
+++ /dev/null
@@ -1,50 +0,0 @@
-const helpers = require("./global-setup");
-const path = require("path");
-const request = require("request");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("Position of modules", function () {
- helpers.setupTimeout(this);
-
- var app = null;
-
- beforeEach(function () {
- return helpers.startApplication({
- args: ["js/electron.js"]
- }).then(function (startedApp) { app = startedApp; })
- });
-
- afterEach(function () {
- return helpers.stopApplication(app);
- });
-
- describe("Using helloworld", function () {
-
- before(function () {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/modules/positions.js";
- });
-
- var positions = ["top_bar", "top_left", "top_center", "top_right", "upper_third",
- "middle_center", "lower_third", "bottom_left", "bottom_center", "bottom_right",
- "bottom_bar", "fullscreen_above", "fullscreen_below"];
-
- var position;
- var className;
- for (idx in positions) {
- position = positions[idx];
- className = position.replace("_", ".");
- it("show text in " + position, function () {
- return app.client.waitUntilWindowLoaded()
- .getText("." + className).should.eventually.equal("Text in " + position);
- });
- }
- });
-
-});
diff --git a/tests/e2e_new/port_config.js b/tests/e2e_new/port_config.js
deleted file mode 100644
index 00964d53..00000000
--- a/tests/e2e_new/port_config.js
+++ /dev/null
@@ -1,60 +0,0 @@
-const helpers = require("./global-setup");
-const path = require("path");
-const request = require("request");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("port directive configuration", function () {
- helpers.setupTimeout(this);
-
- var app = null;
-
- beforeEach(function () {
- return helpers.startApplication({
- args: ["js/electron.js"]
- }).then(function (startedApp) { app = startedApp; })
- });
-
- afterEach(function () {
- return helpers.stopApplication(app);
- });
-
- describe("Set port 8090", function () {
- before(function () {
- // Set config sample for use in this test
- process.env.MM_CONFIG_FILE = "tests/configs/port_8090.js";
- });
-
- it("should return 200", function (done) {
- request.get("http://localhost:8090", function (err, res, body) {
- expect(res.statusCode).to.equal(200);
- done();
- });
- });
- });
-
- describe("Set port 8100 on enviroment variable MM_PORT", function () {
- before(function () {
- process.env.MM_PORT = 8100;
- // Set config sample for use in this test
- process.env.MM_CONFIG_FILE = "tests/configs/port_8090.js";
- });
-
- after(function () {
- delete process.env.MM_PORT;
- });
-
- it("should return 200", function (done) {
- request.get("http://localhost:8100", function (err, res, body) {
- expect(res.statusCode).to.equal(200);
- done();
- });
- });
- });
-
-});
diff --git a/tests/e2e_new/vendor_spec.js b/tests/e2e_new/vendor_spec.js
deleted file mode 100644
index 5d9ba603..00000000
--- a/tests/e2e_new/vendor_spec.js
+++ /dev/null
@@ -1,43 +0,0 @@
-const helpers = require("./global-setup");
-const path = require("path");
-const request = require("request");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("Vendors", function () {
- helpers.setupTimeout(this);
-
- var app = null;
-
- beforeEach(function () {
- return helpers.startApplication({
- args: ["js/electron.js"]
- }).then(function (startedApp) { app = startedApp; })
- });
-
- afterEach(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) {
- expect(res.statusCode).to.equal(200);
- });
- });
- });
- });
-});
diff --git a/tests/e2e_new/without_modules.js b/tests/e2e_new/without_modules.js
deleted file mode 100644
index e0eda168..00000000
--- a/tests/e2e_new/without_modules.js
+++ /dev/null
@@ -1,43 +0,0 @@
-const helpers = require("./global-setup");
-const path = require("path");
-const request = require("request");
-
-const expect = require("chai").expect;
-
-const describe = global.describe;
-const it = global.it;
-const beforeEach = global.beforeEach;
-const afterEach = global.afterEach;
-
-describe("Check configuration without modules", function () {
- helpers.setupTimeout(this);
-
- var app = null;
-
- beforeEach(function () {
- return helpers.startApplication({
- args: ["js/electron.js"]
- }).then(function (startedApp) { app = startedApp; })
- });
-
- afterEach(function () {
- return helpers.stopApplication(app);
- });
-
- before(function () {
- // Set config sample for use in test
- process.env.MM_CONFIG_FILE = "tests/configs/without_modules.js";
- });
-
- it("Show the message MagicMirror title", function () {
- return app.client.waitUntilWindowLoaded()
- .getText("#module_1_helloworld .module-content").should.eventually.equal("Magic Mirror2")
- });
-
- it("Show the text Michael's website", function () {
- return app.client.waitUntilWindowLoaded()
- .getText("#module_5_helloworld .module-content").should.eventually.equal("www.michaelteeuw.nl");
- });
-
-});
-