mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-22 15:02:23 +00:00
e1bacda580
Change-type: minor Signed-off-by: Christina Ying Wang <christina@balena.io>
71 lines
2.2 KiB
TypeScript
71 lines
2.2 KiB
TypeScript
import { expect } from 'chai';
|
|
import { spy, useFakeTimers, stub, SinonStub } from 'sinon';
|
|
|
|
import * as hostConfig from '~/src/host-config';
|
|
import * as actions from '~/src/device-api/actions';
|
|
import blink = require('~/lib/blink');
|
|
|
|
describe('device-api/actions', () => {
|
|
describe('runs healthchecks', () => {
|
|
const taskTrue = () => Promise.resolve(true);
|
|
const taskFalse = () => Promise.resolve(false);
|
|
const taskError = () => {
|
|
throw new Error();
|
|
};
|
|
|
|
it('resolves true if all healthchecks pass', async () => {
|
|
expect(await actions.runHealthchecks([taskTrue, taskTrue])).to.be.true;
|
|
});
|
|
|
|
it('resolves false if any healthchecks throw an error or fail', async () => {
|
|
expect(await actions.runHealthchecks([taskTrue, taskFalse])).to.be.false;
|
|
expect(await actions.runHealthchecks([taskTrue, taskError])).to.be.false;
|
|
expect(await actions.runHealthchecks([taskFalse, taskError])).to.be.false;
|
|
expect(await actions.runHealthchecks([taskFalse, taskFalse])).to.be.false;
|
|
expect(await actions.runHealthchecks([taskError, taskError])).to.be.false;
|
|
});
|
|
});
|
|
|
|
describe('identifies device', () => {
|
|
// This suite doesn't test that the blink submodule writes to the correct
|
|
// led file location on host. That test should be part of the blink module.
|
|
it('directs device to blink for set duration', async () => {
|
|
const blinkStartSpy = spy(blink.pattern, 'start');
|
|
const blinkStopSpy = spy(blink.pattern, 'stop');
|
|
const clock = useFakeTimers();
|
|
|
|
actions.identify();
|
|
expect(blinkStartSpy.callCount).to.equal(1);
|
|
clock.tick(15000);
|
|
expect(blinkStopSpy.callCount).to.equal(1);
|
|
|
|
blinkStartSpy.restore();
|
|
blinkStopSpy.restore();
|
|
clock.restore();
|
|
});
|
|
});
|
|
|
|
describe('gets host config', () => {
|
|
// Stub external dependencies
|
|
// TODO: host-config module integration tests
|
|
let hostConfigGet: SinonStub;
|
|
before(() => {
|
|
hostConfigGet = stub(hostConfig, 'get');
|
|
});
|
|
after(() => {
|
|
hostConfigGet.restore();
|
|
});
|
|
|
|
it('gets host config', async () => {
|
|
const conf = {
|
|
network: {
|
|
proxy: {},
|
|
hostname: 'deadbeef',
|
|
},
|
|
};
|
|
hostConfigGet.resolves(conf);
|
|
expect(await actions.getHostConfig()).to.deep.equal(conf);
|
|
});
|
|
});
|
|
});
|