2015-09-01 10:31:00 +03:00
|
|
|
/*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2015, Joyent, Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Test helpers for the integration tests
|
|
|
|
*/
|
|
|
|
|
|
|
|
var error = console.error;
|
|
|
|
var assert = require('assert-plus');
|
2015-09-29 21:45:34 +03:00
|
|
|
var f = require('util').format;
|
2015-09-01 10:31:00 +03:00
|
|
|
var path = require('path');
|
|
|
|
|
2015-10-05 17:31:45 +03:00
|
|
|
var common = require('../../lib/common');
|
2015-12-08 21:59:45 +02:00
|
|
|
var mod_triton = require('../../');
|
2015-10-01 19:27:05 +03:00
|
|
|
var testcommon = require('../lib/testcommon');
|
2015-09-01 10:31:00 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
2015-10-01 19:27:05 +03:00
|
|
|
var CONFIG;
|
2015-10-07 09:09:52 +03:00
|
|
|
var configPath = process.env.TRITON_TEST_CONFIG
|
|
|
|
? path.resolve(process.cwd(), process.env.TRITON_TEST_CONFIG)
|
|
|
|
: path.resolve(__dirname, '..', 'config.json');
|
|
|
|
try {
|
|
|
|
CONFIG = require(configPath);
|
|
|
|
assert.object(CONFIG, configPath);
|
|
|
|
if (CONFIG.profile && CONFIG.profileName) {
|
|
|
|
throw new Error(
|
|
|
|
'cannot specify both "profile" and "profileName" in ' +
|
|
|
|
configPath);
|
|
|
|
} else if (CONFIG.profile) {
|
|
|
|
assert.string(CONFIG.profile.url, 'CONFIG.profile.url');
|
|
|
|
assert.string(CONFIG.profile.account, 'CONFIG.profile.account');
|
|
|
|
assert.string(CONFIG.profile.keyId, 'CONFIG.profile.keyId');
|
|
|
|
assert.optionalBool(CONFIG.profile.insecure,
|
|
|
|
'CONFIG.profile.insecure');
|
|
|
|
} else if (CONFIG.profileName) {
|
2015-12-08 21:59:45 +02:00
|
|
|
CONFIG.profile = mod_triton.loadProfile({
|
2015-10-07 09:09:52 +03:00
|
|
|
configDir: path.join(process.env.HOME, '.triton'),
|
|
|
|
name: CONFIG.profileName
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
throw new Error('one of "profile" or "profileName" must be defined ' +
|
|
|
|
'in ' + configPath);
|
2015-10-01 19:27:05 +03:00
|
|
|
}
|
2015-10-07 22:19:26 +03:00
|
|
|
assert.optionalBool(CONFIG.allowWriteActions,
|
|
|
|
'test/config.json#allowWriteActions');
|
2015-10-07 09:09:52 +03:00
|
|
|
} catch (e) {
|
|
|
|
error('* * *');
|
|
|
|
error('node-triton integration tests require a config file. By default');
|
|
|
|
error('it looks for "test/config.json". Or you can set the');
|
|
|
|
error('TRITON_TEST_CONFIG envvar. E.g.:');
|
|
|
|
error('');
|
|
|
|
error(' TRITON_TEST_CONFIG=test/coal.json make test');
|
|
|
|
error('');
|
|
|
|
error('See "test/config.json.sample" for a starting point for a config.');
|
|
|
|
error('');
|
|
|
|
error('Warning: This test suite will create machines, images, etc. ');
|
|
|
|
error('using this CloudAPI and account. While it will do its best');
|
|
|
|
error('to clean up all resources, running the test suite against');
|
|
|
|
error('a public cloud could *cost* you money. :)');
|
|
|
|
error('* * *');
|
|
|
|
throw e;
|
2015-09-01 10:31:00 +03:00
|
|
|
}
|
2015-10-07 09:09:52 +03:00
|
|
|
if (CONFIG.profile.insecure === undefined)
|
|
|
|
CONFIG.profile.insecure = false;
|
2015-10-07 22:19:26 +03:00
|
|
|
if (CONFIG.allowWriteActions === undefined)
|
|
|
|
CONFIG.allowWriteActions = false;
|
2015-09-01 10:31:00 +03:00
|
|
|
|
2015-09-22 01:48:03 +03:00
|
|
|
var TRITON = [process.execPath, path.resolve(__dirname, '../../bin/triton')];
|
2015-09-01 10:31:00 +03:00
|
|
|
var UA = 'node-triton-test';
|
|
|
|
|
|
|
|
var LOG = require('../lib/log');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Call the `triton` CLI with the given args.
|
2015-11-21 22:41:16 +02:00
|
|
|
*
|
|
|
|
* @param args {String|Array} Required. CLI arguments to `triton ...` (without
|
|
|
|
* the "triton"). This can be an array of args, or a string.
|
|
|
|
* @param opts {Object} Optional.
|
|
|
|
* - opts.cwd {String} cwd option to exec.
|
|
|
|
* @param cb {Function}
|
2015-09-01 10:31:00 +03:00
|
|
|
*/
|
2015-11-21 22:41:16 +02:00
|
|
|
function triton(args, opts, cb) {
|
2015-09-22 01:48:03 +03:00
|
|
|
var command = [].concat(TRITON).concat(args);
|
|
|
|
if (typeof (args) === 'string')
|
|
|
|
command = command.join(' ');
|
2015-11-21 22:41:16 +02:00
|
|
|
if (cb === undefined) {
|
|
|
|
cb = opts;
|
|
|
|
opts = {};
|
|
|
|
}
|
|
|
|
assert.object(opts, 'opts');
|
|
|
|
assert.optionalString(opts.cwd, 'opts.cwd');
|
|
|
|
assert.func(cb, 'cb');
|
2015-09-22 01:48:03 +03:00
|
|
|
|
2015-09-01 10:31:00 +03:00
|
|
|
testcommon.execPlus({
|
2015-09-22 01:48:03 +03:00
|
|
|
command: command,
|
2015-09-01 10:31:00 +03:00
|
|
|
execOpts: {
|
|
|
|
maxBuffer: Infinity,
|
|
|
|
env: {
|
|
|
|
PATH: process.env.PATH,
|
|
|
|
HOME: process.env.HOME,
|
2015-09-22 01:48:03 +03:00
|
|
|
SSH_AUTH_SOCK: process.env.SSH_AUTH_SOCK,
|
2015-09-25 20:10:39 +03:00
|
|
|
TRITON_PROFILE: 'env',
|
2015-10-07 09:09:52 +03:00
|
|
|
TRITON_URL: CONFIG.profile.url,
|
|
|
|
TRITON_ACCOUNT: CONFIG.profile.account,
|
|
|
|
TRITON_KEY_ID: CONFIG.profile.keyId,
|
|
|
|
TRITON_TLS_INSECURE: CONFIG.profile.insecure
|
2015-11-21 22:41:16 +02:00
|
|
|
},
|
|
|
|
cwd: opts.cwd
|
2015-09-01 10:31:00 +03:00
|
|
|
},
|
|
|
|
log: LOG
|
|
|
|
}, cb);
|
|
|
|
}
|
|
|
|
|
2015-09-29 21:45:34 +03:00
|
|
|
/*
|
|
|
|
* triton wrapper that:
|
|
|
|
* - tests no error is present
|
|
|
|
* - tests stdout is not empty
|
|
|
|
* - tests stderr is empty
|
|
|
|
*
|
|
|
|
* In the event that any of the above is false, this function will NOT
|
|
|
|
* fire the callback, which will result in the early terminate of these
|
|
|
|
* tests as `t.end()` will never be called.
|
|
|
|
*
|
|
|
|
* @param {Tape} t - tape test object
|
|
|
|
* @param {Object|Array} opts - options object
|
|
|
|
* @param {Function} cb - callback called like "cb(stdout)"
|
|
|
|
*/
|
|
|
|
function safeTriton(t, opts, cb) {
|
|
|
|
if (Array.isArray(opts)) {
|
|
|
|
opts = {args: opts};
|
|
|
|
}
|
|
|
|
t.comment(f('running: triton %s', opts.args.join(' ')));
|
|
|
|
triton(opts.args, function (err, stdout, stderr) {
|
|
|
|
t.error(err, 'no error running child process');
|
|
|
|
t.equal(stderr, '', 'no stderr produced');
|
|
|
|
t.notEqual(stdout, '', 'stdout produced');
|
|
|
|
|
|
|
|
if (opts.json) {
|
|
|
|
try {
|
|
|
|
stdout = JSON.parse(stdout);
|
|
|
|
} catch (e) {
|
|
|
|
t.fail('failed to parse JSON');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!err && stdout && !stderr)
|
|
|
|
cb(stdout);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-09-01 10:31:00 +03:00
|
|
|
|
2015-12-08 21:59:45 +02:00
|
|
|
/*
|
|
|
|
* Create a TritonApi client using the CLI.
|
|
|
|
*/
|
|
|
|
function createClient() {
|
|
|
|
return mod_triton.createClient({
|
|
|
|
log: LOG,
|
|
|
|
profile: CONFIG.profile,
|
|
|
|
configDir: '~/.triton' // piggy-back on Triton CLI config dir
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-01 10:31:00 +03:00
|
|
|
// --- exports
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
CONFIG: CONFIG,
|
|
|
|
triton: triton,
|
2015-09-29 21:45:34 +03:00
|
|
|
safeTriton: safeTriton,
|
2015-12-08 21:59:45 +02:00
|
|
|
createClient: createClient,
|
2015-09-01 10:31:00 +03:00
|
|
|
ifErr: testcommon.ifErr
|
|
|
|
};
|