mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 06:07:57 +00:00
9fc2e86322
Change-type: patch Signed-off-by: Miguel Casqueira <miguel@balena.io>
57 lines
1.8 KiB
TypeScript
57 lines
1.8 KiB
TypeScript
import { SinonStub, stub } from 'sinon';
|
|
|
|
import APIBinder from '../src/api-binder';
|
|
import { ApplicationManager } from '../src/application-manager';
|
|
import DeviceState from '../src/device-state';
|
|
import * as constants from '../src/lib/constants';
|
|
import { docker } from '../src/lib/docker-utils';
|
|
import { Supervisor } from '../src/supervisor';
|
|
import { expect } from './lib/chai-config';
|
|
|
|
describe('Startup', () => {
|
|
let initClientStub: SinonStub;
|
|
let startStub: SinonStub;
|
|
let vpnStatusPathStub: SinonStub;
|
|
let appManagerStub: SinonStub;
|
|
let deviceStateStub: SinonStub;
|
|
let dockerStub: SinonStub;
|
|
|
|
before(() => {
|
|
initClientStub = stub(APIBinder.prototype as any, 'initClient').returns(
|
|
Promise.resolve(),
|
|
);
|
|
startStub = stub(APIBinder.prototype as any, 'start').returns(
|
|
Promise.resolve(),
|
|
);
|
|
appManagerStub = stub(ApplicationManager.prototype, 'init').returns(
|
|
Promise.resolve(),
|
|
);
|
|
vpnStatusPathStub = stub(constants, 'vpnStatusPath').returns('');
|
|
deviceStateStub = stub(DeviceState.prototype as any, 'applyTarget').returns(
|
|
Promise.resolve(),
|
|
);
|
|
dockerStub = stub(docker, 'listContainers').returns(Promise.resolve([]));
|
|
});
|
|
|
|
after(() => {
|
|
initClientStub.restore();
|
|
startStub.restore();
|
|
appManagerStub.restore();
|
|
vpnStatusPathStub.restore();
|
|
deviceStateStub.restore();
|
|
dockerStub.restore();
|
|
});
|
|
|
|
it('should startup correctly', async () => {
|
|
const supervisor = new Supervisor();
|
|
expect(await supervisor.init()).to.not.throw;
|
|
// Cast as any to access private properties
|
|
const anySupervisor = supervisor as any;
|
|
expect(anySupervisor.db).to.not.be.null;
|
|
expect(anySupervisor.config).to.not.be.null;
|
|
expect(anySupervisor.logger).to.not.be.null;
|
|
expect(anySupervisor.deviceState).to.not.be.null;
|
|
expect(anySupervisor.apiBinder).to.not.be.null;
|
|
});
|
|
});
|