test: drop now-empty remote runner (#35343)
* test: drop the now-empty remote runner from CI * move fixtures to spec-main * remove remote runner * fix stuff * remove global-paths hack * move ts-smoke to spec/ * fix test after merge * rename spec-main to spec * no need to ignore spec/node_modules twice * simplify spec-runner a little * no need to hash pj/yl twice * undo lint change to verify-mksnapshot.py * excessive .. * update electron_woa_testing.yml * don't search for test-results-remote.xml it is never produced now
This commit is contained in:
parent
e87c4015fe
commit
db7c92fd57
327 changed files with 950 additions and 1707 deletions
183
spec/api-power-monitor-spec.ts
Normal file
183
spec/api-power-monitor-spec.ts
Normal file
|
@ -0,0 +1,183 @@
|
|||
// For these tests we use a fake DBus daemon to verify powerMonitor module
|
||||
// interaction with the system bus. This requires python-dbusmock installed and
|
||||
// running (with the DBUS_SYSTEM_BUS_ADDRESS environment variable set).
|
||||
// script/spec-runner.js will take care of spawning the fake DBus daemon and setting
|
||||
// DBUS_SYSTEM_BUS_ADDRESS when python-dbusmock is installed.
|
||||
//
|
||||
// See https://pypi.python.org/pypi/python-dbusmock for more information about
|
||||
// python-dbusmock.
|
||||
import { expect } from 'chai';
|
||||
import * as dbus from 'dbus-native';
|
||||
import { ifdescribe, delay } from './spec-helpers';
|
||||
import { promisify } from 'util';
|
||||
|
||||
describe('powerMonitor', () => {
|
||||
let logindMock: any, dbusMockPowerMonitor: any, getCalls: any, emitSignal: any, reset: any;
|
||||
|
||||
// TODO(deepak1556): Enable on arm64 after upgrade, it crashes at the moment.
|
||||
ifdescribe(process.platform === 'linux' && process.arch !== 'arm64' && process.env.DBUS_SYSTEM_BUS_ADDRESS != null)('when powerMonitor module is loaded with dbus mock', () => {
|
||||
before(async () => {
|
||||
const systemBus = dbus.systemBus();
|
||||
const loginService = systemBus.getService('org.freedesktop.login1');
|
||||
const getInterface = promisify(loginService.getInterface.bind(loginService));
|
||||
logindMock = await getInterface('/org/freedesktop/login1', 'org.freedesktop.DBus.Mock');
|
||||
getCalls = promisify(logindMock.GetCalls.bind(logindMock));
|
||||
emitSignal = promisify(logindMock.EmitSignal.bind(logindMock));
|
||||
reset = promisify(logindMock.Reset.bind(logindMock));
|
||||
});
|
||||
|
||||
after(async () => {
|
||||
await reset();
|
||||
});
|
||||
|
||||
function onceMethodCalled (done: () => void) {
|
||||
function cb () {
|
||||
logindMock.removeListener('MethodCalled', cb);
|
||||
}
|
||||
done();
|
||||
return cb;
|
||||
}
|
||||
|
||||
before(done => {
|
||||
logindMock.on('MethodCalled', onceMethodCalled(done));
|
||||
// lazy load powerMonitor after we listen to MethodCalled mock signal
|
||||
dbusMockPowerMonitor = require('electron').powerMonitor;
|
||||
});
|
||||
|
||||
it('should call Inhibit to delay suspend once a listener is added', async () => {
|
||||
// No calls to dbus until a listener is added
|
||||
{
|
||||
const calls = await getCalls();
|
||||
expect(calls).to.be.an('array').that.has.lengthOf(0);
|
||||
}
|
||||
// Add a dummy listener to engage the monitors
|
||||
dbusMockPowerMonitor.on('dummy-event', () => {});
|
||||
try {
|
||||
let retriesRemaining = 3;
|
||||
// There doesn't seem to be a way to get a notification when a call
|
||||
// happens, so poll `getCalls` a few times to reduce flake.
|
||||
let calls: any[] = [];
|
||||
while (retriesRemaining-- > 0) {
|
||||
calls = await getCalls();
|
||||
if (calls.length > 0) break;
|
||||
await delay(1000);
|
||||
}
|
||||
expect(calls).to.be.an('array').that.has.lengthOf(1);
|
||||
expect(calls[0].slice(1)).to.deep.equal([
|
||||
'Inhibit', [
|
||||
[[{ type: 's', child: [] }], ['sleep']],
|
||||
[[{ type: 's', child: [] }], ['electron']],
|
||||
[[{ type: 's', child: [] }], ['Application cleanup before suspend']],
|
||||
[[{ type: 's', child: [] }], ['delay']]
|
||||
]
|
||||
]);
|
||||
} finally {
|
||||
dbusMockPowerMonitor.removeAllListeners('dummy-event');
|
||||
}
|
||||
});
|
||||
|
||||
describe('when PrepareForSleep(true) signal is sent by logind', () => {
|
||||
it('should emit "suspend" event', (done) => {
|
||||
dbusMockPowerMonitor.once('suspend', () => done());
|
||||
emitSignal('org.freedesktop.login1.Manager', 'PrepareForSleep',
|
||||
'b', [['b', true]]);
|
||||
});
|
||||
|
||||
describe('when PrepareForSleep(false) signal is sent by logind', () => {
|
||||
it('should emit "resume" event', done => {
|
||||
dbusMockPowerMonitor.once('resume', () => done());
|
||||
emitSignal('org.freedesktop.login1.Manager', 'PrepareForSleep',
|
||||
'b', [['b', false]]);
|
||||
});
|
||||
|
||||
it('should have called Inhibit again', async () => {
|
||||
const calls = await getCalls();
|
||||
expect(calls).to.be.an('array').that.has.lengthOf(2);
|
||||
expect(calls[1].slice(1)).to.deep.equal([
|
||||
'Inhibit', [
|
||||
[[{ type: 's', child: [] }], ['sleep']],
|
||||
[[{ type: 's', child: [] }], ['electron']],
|
||||
[[{ type: 's', child: [] }], ['Application cleanup before suspend']],
|
||||
[[{ type: 's', child: [] }], ['delay']]
|
||||
]
|
||||
]);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('when a listener is added to shutdown event', () => {
|
||||
before(async () => {
|
||||
const calls = await getCalls();
|
||||
expect(calls).to.be.an('array').that.has.lengthOf(2);
|
||||
dbusMockPowerMonitor.once('shutdown', () => { });
|
||||
});
|
||||
|
||||
it('should call Inhibit to delay shutdown', async () => {
|
||||
const calls = await getCalls();
|
||||
expect(calls).to.be.an('array').that.has.lengthOf(3);
|
||||
expect(calls[2].slice(1)).to.deep.equal([
|
||||
'Inhibit', [
|
||||
[[{ type: 's', child: [] }], ['shutdown']],
|
||||
[[{ type: 's', child: [] }], ['electron']],
|
||||
[[{ type: 's', child: [] }], ['Ensure a clean shutdown']],
|
||||
[[{ type: 's', child: [] }], ['delay']]
|
||||
]
|
||||
]);
|
||||
});
|
||||
|
||||
describe('when PrepareForShutdown(true) signal is sent by logind', () => {
|
||||
it('should emit "shutdown" event', done => {
|
||||
dbusMockPowerMonitor.once('shutdown', () => { done(); });
|
||||
emitSignal('org.freedesktop.login1.Manager', 'PrepareForShutdown',
|
||||
'b', [['b', true]]);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('when powerMonitor module is loaded', () => {
|
||||
// eslint-disable-next-line no-undef
|
||||
let powerMonitor: typeof Electron.powerMonitor;
|
||||
before(() => {
|
||||
powerMonitor = require('electron').powerMonitor;
|
||||
});
|
||||
describe('powerMonitor.getSystemIdleState', () => {
|
||||
it('gets current system idle state', () => {
|
||||
// this function is not mocked out, so we can test the result's
|
||||
// form and type but not its value.
|
||||
const idleState = powerMonitor.getSystemIdleState(1);
|
||||
expect(idleState).to.be.a('string');
|
||||
const validIdleStates = ['active', 'idle', 'locked', 'unknown'];
|
||||
expect(validIdleStates).to.include(idleState);
|
||||
});
|
||||
|
||||
it('does not accept non positive integer threshold', () => {
|
||||
expect(() => {
|
||||
powerMonitor.getSystemIdleState(-1);
|
||||
}).to.throw(/must be greater than 0/);
|
||||
|
||||
expect(() => {
|
||||
powerMonitor.getSystemIdleState(NaN);
|
||||
}).to.throw(/conversion failure/);
|
||||
|
||||
expect(() => {
|
||||
powerMonitor.getSystemIdleState('a' as any);
|
||||
}).to.throw(/conversion failure/);
|
||||
});
|
||||
});
|
||||
|
||||
describe('powerMonitor.getSystemIdleTime', () => {
|
||||
it('returns current system idle time', () => {
|
||||
const idleTime = powerMonitor.getSystemIdleTime();
|
||||
expect(idleTime).to.be.at.least(0);
|
||||
});
|
||||
});
|
||||
|
||||
describe('powerMonitor.onBatteryPower', () => {
|
||||
it('returns a boolean', () => {
|
||||
expect(powerMonitor.onBatteryPower).to.be.a('boolean');
|
||||
expect(powerMonitor.isOnBatteryPower()).to.be.a('boolean');
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue