mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-28 19:53:53 -06:00
992bc6649e
1. Moved spectron test to a different directory 2. Added a npm command to run spectron test separately
142 lines
4.5 KiB
JavaScript
142 lines
4.5 KiB
JavaScript
const path = require('path');
|
|
const fs = require('fs');
|
|
const childProcess = require('child_process');
|
|
const Application = require('./spectronSetup');
|
|
const {isMac} = require('../../js/utils/misc');
|
|
let robot;
|
|
let configPath;
|
|
|
|
let app = new Application({});
|
|
|
|
describe('Tests for Full screen', () => {
|
|
|
|
let originalTimeout = jasmine.DEFAULT_TIMEOUT_INTERVAL;
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 90000;
|
|
|
|
beforeAll((done) => {
|
|
childProcess.exec(`npm rebuild robotjs --target=${process.version} --build-from-source`, function () {
|
|
robot = require('robotjs');
|
|
return app.startApplication().then((startedApp) => {
|
|
app = startedApp;
|
|
getConfigPath().then((config) => {
|
|
console.log(config);
|
|
configPath = config;
|
|
done();
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
});
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
});
|
|
});
|
|
});
|
|
|
|
function getConfigPath() {
|
|
return new Promise(function (resolve, reject) {
|
|
app.client.addCommand('getUserDataPath', function () {
|
|
return this.execute(function () {
|
|
return require('electron').remote.app.getPath('userData');
|
|
})
|
|
});
|
|
app.client.getUserDataPath().then((path) => {
|
|
resolve(path.value + '/Symphony.config')
|
|
}).catch((err) => {
|
|
reject(err);
|
|
});
|
|
});
|
|
}
|
|
|
|
afterAll((done) => {
|
|
if (app && app.isRunning()) {
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = originalTimeout;
|
|
app.client.getWindowCount().then((count) => {
|
|
if (count > 0) {
|
|
app.stop().then(() => {
|
|
done();
|
|
}).catch((err) => {
|
|
console.log(err);
|
|
done();
|
|
});
|
|
} else {
|
|
done();
|
|
}
|
|
})
|
|
} else {
|
|
done();
|
|
}
|
|
});
|
|
|
|
it('should launch the app', (done) => {
|
|
return app.client.waitUntilWindowLoaded().then(() => {
|
|
return app.client.getWindowCount().then((count) => {
|
|
expect(count === 1).toBeTruthy();
|
|
done();
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
});
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
});
|
|
});
|
|
|
|
it('should check window count', () => {
|
|
return app.client.getWindowCount().then((count) => {
|
|
expect(count === 1).toBeTruthy();
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
});
|
|
});
|
|
|
|
it('should check browser window visibility', () => {
|
|
return app.browserWindow.isVisible().then((isVisible) => {
|
|
expect(isVisible).toBeTruthy();
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
});
|
|
});
|
|
|
|
it('should bring the app to top', () => {
|
|
app.browserWindow.focus();
|
|
return app.browserWindow.setAlwaysOnTop(true).then(() => {
|
|
return app.browserWindow.isAlwaysOnTop().then((isOnTop) => {
|
|
console.log(isOnTop);
|
|
expect(isOnTop).toBeTruthy();
|
|
});
|
|
});
|
|
});
|
|
|
|
it('should set the app full screen and check whether it is in full screen', () => {
|
|
if (isMac) {
|
|
robot.setMouseDelay(100);
|
|
robot.moveMouseSmooth(205, 10);
|
|
robot.mouseClick();
|
|
robot.setKeyboardDelay(100);
|
|
for (let i = 0; i < 6; i++) {
|
|
robot.keyTap('down');
|
|
}
|
|
robot.keyTap('enter');
|
|
|
|
return app.browserWindow.isFullScreen().then((fullscreen) => {
|
|
expect(fullscreen).toBeTruthy();
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
})
|
|
} else {
|
|
return app.browserWindow.getBounds().then((bounds) => {
|
|
robot.setMouseDelay(100);
|
|
let x = bounds.x + 200;
|
|
let y = bounds.y + 200;
|
|
robot.moveMouseSmooth(x, y);
|
|
robot.mouseClick();
|
|
|
|
robot.keyTap('f11');
|
|
|
|
return app.browserWindow.isFullScreen().then((fullscreen) => {
|
|
expect(fullscreen).toBeTruthy();
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
})
|
|
});
|
|
}
|
|
});
|
|
}); |