UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

37 lines (30 loc) 1.14 kB
import { AppCommand, CommandArgs, CommandResult, help, success, longName, shortName, required, hasArg, failure } from "../../util/commandline"; import { StateChecker } from "./lib/state-checker"; import { AppCenterClient } from "../../util/apis"; import { Messages } from "./lib/help-messages"; @help(Messages.TestCloud.Commands.Status) export default class StatusCommand extends AppCommand { @help(Messages.TestCloud.Arguments.StatusTestRunId) @longName("test-run-id") @required @hasArg testRunId: string; @help(Messages.TestCloud.Arguments.StatusContinuous) @longName("continuous") @shortName("c") continuous: boolean; constructor(args: CommandArgs) { super(args); } async run(client: AppCenterClient): Promise<CommandResult> { const checker = new StateChecker(client, this.testRunId, this.app.ownerName, this.app.appName); const exitCode = this.continuous ? await checker.checkUntilCompleted() : await checker.checkOnce(); if (!exitCode) { return success(); } else { return failure(exitCode, `Test run failed. Returning exit code ${exitCode}.`); } } }