mirror of
https://github.com/Netflix/dial-reference.git
synced 2026-06-08 02:49:58 +00:00
98 lines
3.7 KiB
JavaScript
98 lines
3.7 KiB
JavaScript
"use strict";
|
|
|
|
var dial = require("../libs/dialClient.js"),
|
|
utils = require("../libs/utils.js"),
|
|
Q = require("q");
|
|
|
|
const argv = require("yargs")
|
|
.usage("\nUsage: node " + __filename.slice(__dirname.length + 1) + "[options]")
|
|
.option("host", {
|
|
describe: "IP address of host on which DIAL server under test is running",
|
|
type: "string",
|
|
demand: true
|
|
})
|
|
.option("application", {
|
|
alias: "app",
|
|
describe: "Application to test",
|
|
type: "string",
|
|
demand: true
|
|
})
|
|
.option("timeToWaitForStateChange", {
|
|
alias: "ttw",
|
|
describe: "Time(ms) to wait between state changes before querying application status",
|
|
type: "string",
|
|
default: 5000
|
|
})
|
|
.help("help").alias("help", "h").argv;
|
|
|
|
function test() {
|
|
var host = argv.host;
|
|
var app = argv.application;
|
|
var timeToWaitForStateChange = argv.timeToWaitForStateChange || 5000;
|
|
|
|
return new Q()
|
|
.then(function () {
|
|
utils.printTestInfo(__filename.slice(__dirname.length + 1), "Launch " + app + " with payload using DIAL server when application is already running and check for response code 201");
|
|
})
|
|
.then(dial.getApplicationStatus.bind(null, host, app))
|
|
.then(function getCurrentAppState(result) {
|
|
if(!result || !result.state) {
|
|
return Q.reject(new Error("Error retrieving current " + app + " application state"));
|
|
}
|
|
return result.state;
|
|
})
|
|
|
|
.then(function startAppIfNotRunning(state) {
|
|
if(state !== "running") {
|
|
return dial.launchApplication(host, app)
|
|
.then(function (response) {
|
|
if(response.statusCode !== 201) {
|
|
return Q.reject(new Error("Error launching " + app + " application. Expected status code 201 from DIAL server but got " + response.statusCode));
|
|
}
|
|
});
|
|
}
|
|
})
|
|
.delay(timeToWaitForStateChange)
|
|
.then(function () {
|
|
return dial.getApplicationStatus(host, app)
|
|
})
|
|
.then(function getCurrentAppState(result) {
|
|
if(!result || !result.state) {
|
|
return Q.reject(new Error("Error retrieving current " + app + " application state"));
|
|
}
|
|
if(result.state !== "running") {
|
|
return Q.reject(new Error("Expected " + app + " application to be in running state, but querying state returned state as" + result.state));
|
|
}
|
|
})
|
|
|
|
.then(dial.launchApplication.bind(null, host, app, "key1=val1"))
|
|
.then(function (response) {
|
|
if(response.statusCode !== 201) {
|
|
return Q.reject(new Error("Error launching " + app + " application when it was already running. Expected status code 201 from DIAL server but got " + response.statusCode));
|
|
}
|
|
})
|
|
.delay(timeToWaitForStateChange) // Allow time for restart if application supports sending new params
|
|
.then(dial.getApplicationStatus.bind(null, host, app))
|
|
.then(function getCurrentAppState(result) {
|
|
if(!result || !result.state) {
|
|
return Q.reject(new Error("Error retrieving current " + app + " application state"));
|
|
}
|
|
if(result.state !== "running") {
|
|
return Q.reject(new Error("Expected " + app + " application to be in running state, but querying state returned state as" + result.state));
|
|
}
|
|
})
|
|
.then(function () {
|
|
utils.printTestSuccess()
|
|
})
|
|
.fail(function handleError(err) {
|
|
utils.printTestFailure(err);
|
|
});
|
|
}
|
|
|
|
module.exports.test = test;
|
|
|
|
if (require.main === module) {
|
|
test()
|
|
.done();
|
|
}
|