From ab8edd86900b24365bb7d26165ed6a29a3512406 Mon Sep 17 00:00:00 2001 From: lilia Date: Fri, 5 May 2017 22:16:48 -0700 Subject: [PATCH] Add spectron tests to grunt:test-release // FREEBIE --- Gruntfile.js | 36 ++++++++++++++++++++++++++++++++++++ preload.js | 1 + 2 files changed, 37 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index 163c15b51..7d1ff179a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -220,15 +220,19 @@ module.exports = function(grunt) { 'test-release': { osx: { archive: 'mac/Signal.app/Contents/Resources/app.asar', + exe: 'mac/Signal.app/Contents/MacOS/Signal' }, mas: { archive: 'mas/Signal.app/Contents/Resources/app.asar', + exe: 'mas/Signal.app/Contents/MacOS/Signal' }, linux: { archive: 'linux-unpacked/resources/app.asar', + exe: 'linux-unpacked/signal-desktop' }, win: { archive: 'win-unpacked/resources/app.asar', + exe: 'win-unpacked/Signal.exe' } }, gitinfo: {} // to be populated by grunt gitinfo @@ -364,6 +368,38 @@ module.exports = function(grunt) { } }); + var done = this.async(); + // A simple test to verify a visible window is opened with a title + var Application = require('spectron').Application; + var assert = require('assert'); + + var app = new Application({ + path: [dir, config.exe].join('/') + }); + + app.start().then(function () { + return app.client.getWindowCount(); + }).then(function (count) { + assert.equal(count, 1); + console.log('window opened'); + }).then(function () { + // Get the window's title + return app.client.getTitle(); + }).then(function (title) { + // Verify the window's title + assert.equal(title, 'Signal'); + console.log('title ok'); + }).then(function () { + assert(app.chromeDriver.logLines.indexOf('NODE_ENV ' + environment) > -1); + console.log('environment ok'); + }).catch(function (error) { + // Log any failures + console.log('Test failed', error.message); + }).then(function () { + // Stop the application + return app.stop(); + }).then(done); + // todo: verify package.json has `environment: ` }); diff --git a/preload.js b/preload.js index 063374ce7..7e354148c 100644 --- a/preload.js +++ b/preload.js @@ -79,4 +79,5 @@ menu.popup(remote.getCurrentWindow()); }, 30); }); + })();