mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 05:37:51 +00:00
b77f266bd7
Change-type: minor
78 lines
2.9 KiB
TypeScript
78 lines
2.9 KiB
TypeScript
/**
|
|
* @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.
|
|
*/
|
|
|
|
import { expect } from 'chai';
|
|
|
|
import { BalenaAPIMock } from '../../nock/balena-api-mock';
|
|
import { cleanOutput, runCommand } from '../../helpers';
|
|
import { SupervisorMock } from '../../nock/supervisor-mock';
|
|
|
|
const itS = process.env.BALENA_CLI_TEST_TYPE === 'standalone' ? it : it.skip;
|
|
|
|
describe('balena device logs', function () {
|
|
let api: BalenaAPIMock;
|
|
let supervisor: SupervisorMock;
|
|
|
|
this.beforeEach(() => {
|
|
api = new BalenaAPIMock();
|
|
supervisor = new SupervisorMock();
|
|
api.expectGetWhoAmI();
|
|
});
|
|
|
|
this.afterEach(() => {
|
|
// Check all expected api calls have been made and clean up.
|
|
api.done();
|
|
supervisor.done();
|
|
});
|
|
|
|
// skip non-standalone tests because nock's mock socket causes the error:
|
|
// "setKeepAliveInterval expects an instance of socket as its first argument"
|
|
// in utils/device/api.ts: NetKeepalive.setKeepAliveInterval(sock, 5000);
|
|
itS('should reach the expected endpoints on a local device', async () => {
|
|
supervisor.expectGetPing();
|
|
supervisor.expectGetLogs();
|
|
supervisor.expectGetLogs();
|
|
|
|
const { err, out } = await runCommand('device logs 1.2.3.4 --max-retry 1');
|
|
|
|
const errLines = cleanOutput(err, true);
|
|
const errMsg =
|
|
'Max retry count (1) exceeded while attempting to reconnect to the device';
|
|
if (process.env.DEBUG) {
|
|
expect(errLines).to.include(errMsg);
|
|
} else {
|
|
expect(errLines).to.have.members([errMsg]);
|
|
}
|
|
|
|
const removeTimestamps = (logLine: string) =>
|
|
logLine.replace(/(?<=\[Logs\]) \[.+?\]/, '');
|
|
const cleanedOut = cleanOutput(out, true).map((l) => removeTimestamps(l));
|
|
|
|
expect(cleanedOut).to.have.members([
|
|
'[Logs] Streaming logs',
|
|
'[Logs] [bar] bar 8 (332) Linux 4e3f81149d71 4.19.75 #1 SMP PREEMPT Mon Mar 23 11:50:49 UTC 2020 aarch64 GNU/Linux',
|
|
'[Logs] [foo] foo 8 (200) Linux cc5df60d89ee 4.19.75 #1 SMP PREEMPT Mon Mar 23 11:50:49 UTC 2020 aarch64 GNU/Linux',
|
|
'[Warn] Connection to device lost',
|
|
'Retrying "Streaming logs" after 1.0s (1 of 1) due to: DeviceConnectionLostError: Connection to device lost',
|
|
'[Logs] Streaming logs',
|
|
'[Logs] [bar] bar 8 (332) Linux 4e3f81149d71 4.19.75 #1 SMP PREEMPT Mon Mar 23 11:50:49 UTC 2020 aarch64 GNU/Linux',
|
|
'[Logs] [foo] foo 8 (200) Linux cc5df60d89ee 4.19.75 #1 SMP PREEMPT Mon Mar 23 11:50:49 UTC 2020 aarch64 GNU/Linux',
|
|
'[Warn] Connection to device lost',
|
|
]);
|
|
});
|
|
});
|