| "use strict"; |
| |
| |
| |
| |
| var __extends = (this && this.__extends) || (function () { |
| var extendStatics = function (d, b) { |
| extendStatics = Object.setPrototypeOf || |
| ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || |
| function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; |
| return extendStatics(d, b); |
| }; |
| return function (d, b) { |
| extendStatics(d, b); |
| function __() { this.constructor = d; } |
| d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); |
| }; |
| })(); |
| Object.defineProperty(exports, "__esModule", { value: true }); |
| var assert = require("assert"); |
| var windowsTerminal_1 = require("./windowsTerminal"); |
| var unixTerminal_1 = require("./unixTerminal"); |
| var terminal_1 = require("./terminal"); |
| var terminalConstructor = (process.platform === 'win32') ? windowsTerminal_1.WindowsTerminal : unixTerminal_1.UnixTerminal; |
| var SHELL = (process.platform === 'win32') ? 'cmd.exe' : '/bin/bash'; |
| var terminalCtor; |
| if (process.platform === 'win32') { |
| terminalCtor = require('./windowsTerminal'); |
| } |
| else { |
| terminalCtor = require('./unixTerminal'); |
| } |
| var TestTerminal = (function (_super) { |
| __extends(TestTerminal, _super); |
| function TestTerminal() { |
| return _super !== null && _super.apply(this, arguments) || this; |
| } |
| TestTerminal.prototype.checkType = function (name, value, type, allowArray) { |
| if (allowArray === void 0) { allowArray = false; } |
| this._checkType(name, value, type, allowArray); |
| }; |
| TestTerminal.prototype._write = function (data) { |
| throw new Error('Method not implemented.'); |
| }; |
| TestTerminal.prototype.resize = function (cols, rows) { |
| throw new Error('Method not implemented.'); |
| }; |
| TestTerminal.prototype.clear = function () { |
| throw new Error('Method not implemented.'); |
| }; |
| TestTerminal.prototype.destroy = function () { |
| throw new Error('Method not implemented.'); |
| }; |
| TestTerminal.prototype.kill = function (signal) { |
| throw new Error('Method not implemented.'); |
| }; |
| Object.defineProperty(TestTerminal.prototype, "process", { |
| get: function () { |
| throw new Error('Method not implemented.'); |
| }, |
| enumerable: false, |
| configurable: true |
| }); |
| Object.defineProperty(TestTerminal.prototype, "master", { |
| get: function () { |
| throw new Error('Method not implemented.'); |
| }, |
| enumerable: false, |
| configurable: true |
| }); |
| Object.defineProperty(TestTerminal.prototype, "slave", { |
| get: function () { |
| throw new Error('Method not implemented.'); |
| }, |
| enumerable: false, |
| configurable: true |
| }); |
| return TestTerminal; |
| }(terminal_1.Terminal)); |
| describe('Terminal', function () { |
| describe('constructor', function () { |
| it('should do basic type checks', function () { |
| assert.throws(function () { return new terminalCtor('a', 'b', { 'name': {} }); }, 'name must be a string (not a object)'); |
| }); |
| }); |
| describe('checkType', function () { |
| it('should throw for the wrong type', function () { |
| var t = new TestTerminal(); |
| assert.doesNotThrow(function () { return t.checkType('foo', 'test', 'string'); }); |
| assert.doesNotThrow(function () { return t.checkType('foo', 1, 'number'); }); |
| assert.doesNotThrow(function () { return t.checkType('foo', {}, 'object'); }); |
| assert.throws(function () { return t.checkType('foo', 'test', 'number'); }); |
| assert.throws(function () { return t.checkType('foo', 1, 'object'); }); |
| assert.throws(function () { return t.checkType('foo', {}, 'string'); }); |
| }); |
| it('should throw for wrong types within arrays', function () { |
| var t = new TestTerminal(); |
| assert.doesNotThrow(function () { return t.checkType('foo', ['test'], 'string', true); }); |
| assert.doesNotThrow(function () { return t.checkType('foo', [1], 'number', true); }); |
| assert.doesNotThrow(function () { return t.checkType('foo', [{}], 'object', true); }); |
| assert.throws(function () { return t.checkType('foo', ['test'], 'number', true); }); |
| assert.throws(function () { return t.checkType('foo', [1], 'object', true); }); |
| assert.throws(function () { return t.checkType('foo', [{}], 'string', true); }); |
| }); |
| }); |
| describe('automatic flow control', function () { |
| it('should respect ctor flow control options', function () { |
| var pty = new terminalConstructor(SHELL, [], { handleFlowControl: true, flowControlPause: 'abc', flowControlResume: '123' }); |
| assert.equal(pty.handleFlowControl, true); |
| assert.equal(pty._flowControlPause, 'abc'); |
| assert.equal(pty._flowControlResume, '123'); |
| }); |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| }); |
| }); |
| function stripEscapeSequences(data) { |
| return data.replace(/\u001b\[0K/, ''); |
| } |
| |