mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 05:37:51 +00:00
a18e182ae4
Signed-off-by: Paul Jonathan <pj@balena.io> Change-type: minor
69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2019-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.
|
|
*/
|
|
|
|
import { expect } from 'chai';
|
|
|
|
import { BalenaAPIMock } from '../nock/balena-api-mock';
|
|
import { cleanOutput, runCommand } from '../helpers';
|
|
|
|
describe('balena release', function () {
|
|
let api: BalenaAPIMock;
|
|
|
|
beforeEach(() => {
|
|
api = new BalenaAPIMock();
|
|
api.expectGetWhoAmI({ optional: true, persist: true });
|
|
api.expectGetMixpanel({ optional: true });
|
|
});
|
|
|
|
afterEach(() => {
|
|
// Check all expected api calls have been made and clean up.
|
|
api.done();
|
|
});
|
|
|
|
it('should show release details', async () => {
|
|
api.expectGetRelease();
|
|
const { out } = await runCommand('release 27fda508c');
|
|
const lines = cleanOutput(out);
|
|
expect(lines[0]).to.contain('ID: ');
|
|
expect(lines[0]).to.contain(' 142334');
|
|
expect(lines[1]).to.contain('COMMIT: ');
|
|
expect(lines[1]).to.contain(' 90247b54de4fa7a0a3cbc85e73c68039');
|
|
});
|
|
|
|
it('should return release composition', async () => {
|
|
api.expectGetRelease();
|
|
const { out } = await runCommand('release 27fda508c --composition');
|
|
const lines = cleanOutput(out);
|
|
expect(lines[0]).to.be.equal("version: '2.1'");
|
|
expect(lines[1]).to.be.equal('networks: {}');
|
|
expect(lines[2]).to.be.equal('volumes:');
|
|
expect(lines[3]).to.be.equal('resin-data: {}');
|
|
expect(lines[4]).to.be.equal('services:');
|
|
expect(lines[5]).to.be.equal('main:');
|
|
});
|
|
|
|
it('should list releases', async () => {
|
|
api.expectGetRelease();
|
|
api.expectGetApplication();
|
|
const { out } = await runCommand('releases someapp');
|
|
const lines = cleanOutput(out);
|
|
expect(lines.length).to.be.equal(2);
|
|
expect(lines[1]).to.contain('142334');
|
|
expect(lines[1]).to.contain('90247b54de4fa7a0a3cbc85e73c68039');
|
|
});
|
|
});
|