2020-01-15 19:41:47 +00:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright 2020 Balena Ltd.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2020-01-24 01:21:51 +00:00
|
|
|
// tslint:disable-next-line:no-var-requires
|
|
|
|
require('../config-tests'); // required for side effects
|
2020-01-15 19:41:47 +00:00
|
|
|
|
|
|
|
import { expect } from 'chai';
|
2020-01-24 01:21:51 +00:00
|
|
|
import { fs } from 'mz';
|
2020-01-15 19:41:47 +00:00
|
|
|
import * as path from 'path';
|
2020-01-24 01:21:51 +00:00
|
|
|
import { URL } from 'url';
|
2020-01-15 19:41:47 +00:00
|
|
|
|
|
|
|
import { BalenaAPIMock } from '../balena-api-mock';
|
2020-01-24 01:21:51 +00:00
|
|
|
import { DockerMock, dockerResponsePath } from '../docker-mock';
|
2020-01-15 19:41:47 +00:00
|
|
|
import {
|
|
|
|
cleanOutput,
|
|
|
|
inspectTarStream,
|
|
|
|
runCommand,
|
|
|
|
TarStreamFiles,
|
|
|
|
} from '../helpers';
|
|
|
|
|
|
|
|
const repoPath = path.normalize(path.join(__dirname, '..', '..'));
|
|
|
|
const projectsPath = path.join(repoPath, 'tests', 'test-data', 'projects');
|
2020-01-24 01:21:51 +00:00
|
|
|
const expectedResponses = {
|
|
|
|
'build-POST.json': [
|
|
|
|
'[Info] Building for armv7hf/raspberrypi3',
|
|
|
|
'[Info] Docker Desktop detected (daemon architecture: "x86_64")',
|
|
|
|
'[Info] Docker itself will determine and enable architecture emulation if required,',
|
|
|
|
'[Info] without balena-cli intervention and regardless of the --emulated option.',
|
|
|
|
'[Build] main Image size: 1.14 MB',
|
|
|
|
'[Info] Creating release...',
|
|
|
|
'[Info] Pushing images to registry...',
|
|
|
|
'[Info] Saving release...',
|
|
|
|
'[Success] Deploy succeeded!',
|
|
|
|
'[Success] Release: 09f7c3e1fdec609be818002299edfc2a',
|
|
|
|
],
|
|
|
|
};
|
2020-01-15 19:41:47 +00:00
|
|
|
|
|
|
|
describe('balena deploy', function() {
|
|
|
|
let api: BalenaAPIMock;
|
|
|
|
let docker: DockerMock;
|
|
|
|
|
2020-01-24 01:21:51 +00:00
|
|
|
const commonQueryParams = [
|
|
|
|
['t', 'basic_main'],
|
|
|
|
['buildargs', '{}'],
|
|
|
|
['labels', ''],
|
|
|
|
];
|
|
|
|
|
2020-01-15 19:41:47 +00:00
|
|
|
this.beforeEach(() => {
|
|
|
|
api = new BalenaAPIMock();
|
|
|
|
docker = new DockerMock();
|
|
|
|
api.expectGetWhoAmI({ optional: true, persist: true });
|
|
|
|
api.expectGetMixpanel({ optional: true });
|
|
|
|
api.expectGetDeviceTypes();
|
|
|
|
api.expectGetApplication();
|
|
|
|
api.expectPatchRelease();
|
|
|
|
api.expectPostRelease();
|
|
|
|
api.expectGetRelease();
|
|
|
|
api.expectGetUser();
|
|
|
|
api.expectGetService({ serviceName: 'main' });
|
|
|
|
api.expectPostService404();
|
|
|
|
api.expectGetAuth();
|
|
|
|
api.expectPostImage();
|
|
|
|
api.expectPostImageIsPartOfRelease();
|
|
|
|
api.expectPostImageLabel();
|
|
|
|
api.expectPatchImage();
|
|
|
|
|
|
|
|
docker.expectGetPing();
|
|
|
|
docker.expectGetInfo();
|
|
|
|
docker.expectGetVersion();
|
|
|
|
docker.expectGetImages({ persist: true });
|
|
|
|
docker.expectPostImagesTag();
|
|
|
|
docker.expectPostImagesPush();
|
|
|
|
docker.expectDeleteImages();
|
|
|
|
});
|
|
|
|
|
|
|
|
this.afterEach(() => {
|
|
|
|
// Check all expected api calls have been made and clean up.
|
|
|
|
api.done();
|
|
|
|
docker.done();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create the expected --build tar stream', async () => {
|
|
|
|
const projectPath = path.join(projectsPath, 'no-docker-compose', 'basic');
|
|
|
|
const expectedFiles: TarStreamFiles = {
|
|
|
|
'src/start.sh': { fileSize: 89, type: 'file' },
|
|
|
|
Dockerfile: { fileSize: 85, type: 'file' },
|
2020-01-24 01:21:51 +00:00
|
|
|
'Dockerfile-alt': { fileSize: 30, type: 'file' },
|
2020-01-15 19:41:47 +00:00
|
|
|
};
|
2020-01-24 01:21:51 +00:00
|
|
|
const responseFilename = 'build-POST.json';
|
|
|
|
const responseBody = await fs.readFile(
|
|
|
|
path.join(dockerResponsePath, responseFilename),
|
|
|
|
'utf8',
|
|
|
|
);
|
2020-01-15 19:41:47 +00:00
|
|
|
|
|
|
|
docker.expectPostBuild({
|
|
|
|
tag: 'basic_main',
|
|
|
|
responseCode: 200,
|
|
|
|
responseBody,
|
2020-01-24 01:21:51 +00:00
|
|
|
checkURI: async (uri: string) => {
|
|
|
|
const url = new URL(uri, 'http://test.net/');
|
|
|
|
const queryParams = Array.from(url.searchParams.entries());
|
|
|
|
expect(queryParams).to.have.deep.members(commonQueryParams);
|
|
|
|
},
|
2020-01-15 19:41:47 +00:00
|
|
|
checkBuildRequestBody: (buildRequestBody: string) =>
|
|
|
|
inspectTarStream(buildRequestBody, expectedFiles, projectPath, expect),
|
|
|
|
});
|
|
|
|
|
|
|
|
const { out, err } = await runCommand(
|
|
|
|
`deploy testApp --build --source ${projectPath}`,
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(err).to.have.members([]);
|
|
|
|
expect(
|
|
|
|
cleanOutput(out).map(line => line.replace(/\s{2,}/g, ' ')),
|
|
|
|
).to.include.members([
|
|
|
|
`[Info] Creating default composition with source: ${projectPath}`,
|
2020-01-24 01:21:51 +00:00
|
|
|
...expectedResponses[responseFilename],
|
2020-01-15 19:41:47 +00:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
});
|