项目文件夹

文件
2026-07-13 12:11:06 +08:00

150 行
3.8 KiB
TypeScript

/*
*
* TODO:
* This test should be replaced by an E2E test.
*
*/
/*
* Copyright 2020 balena.io
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { expect } from 'chai';
import type { Drive as DrivelistDrive } from 'drivelist';
import type { SinonStub } from 'sinon';
import { assert, stub } from 'sinon';
import type { SourceMetadata } from '../../../lib/shared/typings/source-selector';
import * as flashState from '../../../lib/gui/app/models/flash-state';
import * as imageWriter from '../../../lib/gui/app/modules/image-writer';
// @ts-ignore
const fakeDrive: DrivelistDrive = {};
describe('Browser: imageWriter', () => {
describe('.flash()', () => {
const image: SourceMetadata = {
hasMBR: false,
partitions: [],
description: 'foo.img',
displayName: 'foo.img',
path: 'foo.img',
SourceType: 'File',
extension: 'img',
};
describe('given a successful write', () => {
let performWriteStub: SinonStub;
beforeEach(() => {
performWriteStub = stub();
performWriteStub.returns(
Promise.resolve({
cancelled: false,
sourceChecksum: '1234',
}),
);
});
afterEach(() => {
performWriteStub.reset();
});
it('should set flashing to false when done', async () => {
flashState.unsetFlashingFlag({
cancelled: false,
sourceChecksum: '1234',
});
try {
await imageWriter.flash(image, [fakeDrive], performWriteStub);
} catch {
// noop
} finally {
expect(flashState.isFlashing()).to.be.false;
}
});
it('should prevent writing more than once', async () => {
flashState.unsetFlashingFlag({
cancelled: false,
sourceChecksum: '1234',
});
try {
await Promise.all([
imageWriter.flash(image, [fakeDrive], performWriteStub),
imageWriter.flash(image, [fakeDrive], performWriteStub),
]);
assert.fail('Writing twice should fail');
} catch (error: any) {
expect(error.message).to.equal(
'There is already a flash in progress',
);
}
});
});
describe('given an unsuccessful write', () => {
let performWriteStub: SinonStub;
beforeEach(() => {
performWriteStub = stub();
const error: Error & { code?: string } = new Error('write error');
error.code = 'FOO';
performWriteStub.returns(Promise.reject(error));
});
afterEach(() => {
performWriteStub.reset();
});
it('should set flashing to false when done', async () => {
try {
await imageWriter.flash(image, [fakeDrive], performWriteStub);
} catch {
// noop
} finally {
expect(flashState.isFlashing()).to.be.false;
}
});
it('should set the error code in the flash results', async () => {
try {
await imageWriter.flash(image, [fakeDrive], performWriteStub);
} catch {
// noop
} finally {
const flashResults = flashState.getFlashResults();
expect(flashResults.errorCode).to.equal('FOO');
}
});
it('should be rejected with the error', async () => {
flashState.unsetFlashingFlag({
cancelled: false,
sourceChecksum: '1234',
});
try {
await imageWriter.flash(image, [fakeDrive], performWriteStub);
} catch (error: any) {
expect(error).to.be.an.instanceof(Error);
expect(error.message).to.equal('write error');
}
});
});
});
});