microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e45838cbf8bb84beab7d36042bcdbc57fe0319c8

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/test/common/commandExecutor.test.ts

103lines · modepreview

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.

import {CommandExecutor} from "../../common/commandExecutor";
import {Log} from "../../common/log/log";

import * as assert from "assert";
import * as semver from "semver";
import * as sinon from "sinon";
import * as Q from "q";

suite("commandExecutor", function() {
    suite("commonContext", function() {
        teardown(function() {
            let mockedMethods = [Log.logMessage, Log.logCommandStatus];

            mockedMethods.forEach((method) => {
                if (method.hasOwnProperty("restore")) {
                    (<any>method).restore();
                }
            });
        });

        test("should execute a command", function() {
            let ce = new CommandExecutor();
            let loggedOutput: string = "";

            sinon.stub(Log, "logMessage", function(message: string, formatMessage: boolean = true) {
                loggedOutput += message;
                console.log(message);
            });

            return ce.execute("node -v")
                .then(() => {
                    let nodeVersion = semver.clean(loggedOutput);
                    assert(nodeVersion);
                });
        });

        test("should reject on bad command", function() {
            let ce = new CommandExecutor();

            return ce.execute("bar")
                .then(() => {
                    assert.fail("bar should not be a valid command");
                })
                .catch((reason) => {
                    console.log(reason.message);
                    assert.equal(reason.errorCode, 101);
                    assert.equal(reason.errorLevel, 0);
                });
        });

        test("should reject on good command that fails", function() {
            let ce = new CommandExecutor();

            return ce.execute("node install bad-package")
                .then(() => {
                    assert.fail("node should not be able to install bad-package");
                })
                .catch((reason) => {
                    console.log(reason.message);
                    assert.equal(reason.errorCode, 101);
                    assert.equal(reason.errorLevel, 0);
                });
        });

        test("should spawn a command", function(done: MochaDone) {
            let ce = new CommandExecutor();
            let loggedOutput: string = "";

            sinon.stub(Log, "logMessage", function(message: string, formatMessage: boolean = true) {
                loggedOutput += message;
                console.log(message);
            });

            Q({})
                .then(function () {
                    return ce.spawn("node", ["-v"]);
                }).done(() => done(), done);
        });

        test("spawn should reject a bad command", function(done: MochaDone) {
            let ce = new CommandExecutor();
            let loggedOutput: string = "";

            sinon.stub(Log, "logMessage", function(message: string, formatMessage: boolean = true) {
                loggedOutput += message;
                console.log(message);
            });

            Q({})
                .then(function() {
                    return ce.spawn("bar", ["-v"]);
                })
                .catch((reason) => {
                    console.log(reason.message);
                    assert.equal(reason.errorCode, 101);
                    assert.equal(reason.errorLevel, 0);
                }).done(() => done(), done);
        });
    });
});