2019-12-05 15:34:35 +00:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright 2019 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.
|
|
|
|
*/
|
|
|
|
|
2019-11-15 09:45:14 +00:00
|
|
|
import { expect } from 'chai';
|
2019-12-05 15:34:35 +00:00
|
|
|
|
|
|
|
import { BalenaAPIMock } from '../../balena-api-mock';
|
|
|
|
import { runCommand } from '../../helpers';
|
2019-08-15 12:40:55 +00:00
|
|
|
|
|
|
|
describe('balena env add', function() {
|
2019-12-05 15:34:35 +00:00
|
|
|
let api: BalenaAPIMock;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
api = new BalenaAPIMock();
|
2019-12-04 18:04:57 +00:00
|
|
|
api.expectWhoAmI(true);
|
|
|
|
api.expectMixpanel();
|
2019-12-05 15:34:35 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
// Check all expected api calls have been made and clean up.
|
|
|
|
api.done();
|
|
|
|
});
|
|
|
|
|
2019-08-15 12:40:55 +00:00
|
|
|
it('should successfully add an environment variable', async () => {
|
|
|
|
const deviceId = 'f63fd7d7812c34c4c14ae023fdff05f5';
|
2019-12-05 15:34:35 +00:00
|
|
|
api.expectTestDevice();
|
|
|
|
api.expectConfigVars();
|
2019-12-05 17:09:02 +00:00
|
|
|
api.scope
|
|
|
|
.post(/^\/v\d+\/device_environment_variable($|\?)/)
|
|
|
|
.reply(200, 'OK');
|
2019-08-15 12:40:55 +00:00
|
|
|
|
|
|
|
const { out, err } = await runCommand(`env add TEST 1 -d ${deviceId}`);
|
|
|
|
|
2019-11-15 09:45:14 +00:00
|
|
|
expect(out.join('')).to.equal('');
|
|
|
|
expect(err.join('')).to.equal('');
|
2019-08-15 12:40:55 +00:00
|
|
|
});
|
|
|
|
});
|