2012-02-20 13:22:12 +01:00
|
|
|
var common = require('../common');
|
2011-11-12 02:24:47 +01:00
|
|
|
var assert = require('assert');
|
|
|
|
var util = require('util');
|
|
|
|
|
|
|
|
var repl = require('repl');
|
|
|
|
|
|
|
|
// A stream to push an array into a REPL
|
|
|
|
function ArrayStream() {
|
2012-01-17 20:16:49 +01:00
|
|
|
this.run = function(data) {
|
2011-11-12 02:24:47 +01:00
|
|
|
var self = this;
|
2012-01-17 20:16:49 +01:00
|
|
|
data.forEach(function(line) {
|
2012-04-06 22:50:34 +02:00
|
|
|
self.emit('data', line + '\n');
|
2011-11-12 02:24:47 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
util.inherits(ArrayStream, require('stream').Stream);
|
|
|
|
ArrayStream.prototype.readable = true;
|
|
|
|
ArrayStream.prototype.writable = true;
|
2012-01-17 20:16:49 +01:00
|
|
|
ArrayStream.prototype.resume = function() {};
|
|
|
|
ArrayStream.prototype.write = function() {};
|
2011-11-12 02:24:47 +01:00
|
|
|
|
2012-01-17 20:16:49 +01:00
|
|
|
var works = [['inner.one'], 'inner.o'];
|
|
|
|
var doesNotBreak = [[], 'inner.o'];
|
2011-11-12 02:24:47 +01:00
|
|
|
|
|
|
|
var putIn = new ArrayStream();
|
|
|
|
var testMe = repl.start('', putIn);
|
|
|
|
|
|
|
|
// Tab Complete will not break in an object literal
|
|
|
|
putIn.run(['.clear']);
|
|
|
|
putIn.run([
|
|
|
|
'var inner = {',
|
2012-01-17 20:16:49 +01:00
|
|
|
'one:1'
|
|
|
|
]);
|
|
|
|
testMe.complete('inner.o', function(error, data) {
|
2011-11-12 02:24:47 +01:00
|
|
|
assert.deepEqual(data, doesNotBreak);
|
|
|
|
});
|
2013-11-12 00:03:29 +01:00
|
|
|
testMe.complete('console.lo', function(error, data) {
|
|
|
|
assert.deepEqual(data, [['console.log'], 'console.lo']);
|
|
|
|
});
|
2011-11-12 02:24:47 +01:00
|
|
|
|
|
|
|
// Tab Complete will return globaly scoped variables
|
|
|
|
putIn.run(['};']);
|
2012-01-17 20:16:49 +01:00
|
|
|
testMe.complete('inner.o', function(error, data) {
|
2011-11-12 02:24:47 +01:00
|
|
|
assert.deepEqual(data, works);
|
|
|
|
});
|
|
|
|
|
|
|
|
putIn.run(['.clear']);
|
|
|
|
|
|
|
|
// Tab Complete will not break in an ternary operator with ()
|
|
|
|
putIn.run([
|
|
|
|
'var inner = ( true ' ,
|
|
|
|
'?',
|
2012-01-17 20:16:49 +01:00
|
|
|
'{one: 1} : '
|
|
|
|
]);
|
|
|
|
testMe.complete('inner.o', function(error, data) {
|
2011-11-12 02:24:47 +01:00
|
|
|
assert.deepEqual(data, doesNotBreak);
|
|
|
|
});
|
|
|
|
|
|
|
|
putIn.run(['.clear']);
|
|
|
|
|
2011-11-12 02:44:39 +01:00
|
|
|
// Tab Complete will return a simple local variable
|
2011-11-12 02:24:47 +01:00
|
|
|
putIn.run([
|
|
|
|
'var top = function () {',
|
2012-01-17 20:16:49 +01:00
|
|
|
'var inner = {one:1};'
|
|
|
|
]);
|
|
|
|
testMe.complete('inner.o', function(error, data) {
|
2011-11-12 02:44:39 +01:00
|
|
|
assert.deepEqual(data, works);
|
2011-11-12 02:24:47 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// When you close the function scope tab complete will not return the
|
2011-11-12 02:44:39 +01:00
|
|
|
// locally scoped variable
|
2011-11-12 02:24:47 +01:00
|
|
|
putIn.run(['};']);
|
2012-01-17 20:16:49 +01:00
|
|
|
testMe.complete('inner.o', function(error, data) {
|
2011-11-12 02:24:47 +01:00
|
|
|
assert.deepEqual(data, doesNotBreak);
|
|
|
|
});
|
|
|
|
|
|
|
|
putIn.run(['.clear']);
|
|
|
|
|
2011-11-12 02:44:39 +01:00
|
|
|
// Tab Complete will return a complex local variable
|
|
|
|
putIn.run([
|
|
|
|
'var top = function () {',
|
2012-01-17 20:16:49 +01:00
|
|
|
'var inner = {',
|
|
|
|
' one:1',
|
|
|
|
'};'
|
|
|
|
]);
|
|
|
|
testMe.complete('inner.o', function(error, data) {
|
2011-11-12 02:44:39 +01:00
|
|
|
assert.deepEqual(data, works);
|
|
|
|
});
|
|
|
|
|
|
|
|
putIn.run(['.clear']);
|
|
|
|
|
|
|
|
// Tab Complete will return a complex local variable even if the function
|
2013-06-13 00:51:17 +02:00
|
|
|
// has parameters
|
2011-11-12 02:44:39 +01:00
|
|
|
putIn.run([
|
|
|
|
'var top = function (one, two) {',
|
2012-01-17 20:16:49 +01:00
|
|
|
'var inner = {',
|
|
|
|
' one:1',
|
|
|
|
'};'
|
|
|
|
]);
|
|
|
|
testMe.complete('inner.o', function(error, data) {
|
2011-11-12 02:44:39 +01:00
|
|
|
assert.deepEqual(data, works);
|
|
|
|
});
|
|
|
|
|
|
|
|
putIn.run(['.clear']);
|
|
|
|
|
|
|
|
// Tab Complete will return a complex local variable even if the
|
|
|
|
// scope is nested inside an immediately executed function
|
|
|
|
putIn.run([
|
|
|
|
'var top = function () {',
|
2012-01-17 20:16:49 +01:00
|
|
|
'(function test () {',
|
|
|
|
'var inner = {',
|
|
|
|
' one:1',
|
|
|
|
'};'
|
|
|
|
]);
|
|
|
|
testMe.complete('inner.o', function(error, data) {
|
2011-11-12 02:44:39 +01:00
|
|
|
assert.deepEqual(data, works);
|
|
|
|
});
|
|
|
|
|
|
|
|
putIn.run(['.clear']);
|
|
|
|
|
|
|
|
// currently does not work, but should not break note the inner function
|
2013-06-13 00:51:17 +02:00
|
|
|
// def has the params and { on a separate line
|
2011-11-12 02:44:39 +01:00
|
|
|
putIn.run([
|
|
|
|
'var top = function () {',
|
2012-01-17 20:16:49 +01:00
|
|
|
'r = function test (',
|
|
|
|
' one, two) {',
|
|
|
|
'var inner = {',
|
|
|
|
' one:1',
|
|
|
|
'};'
|
|
|
|
]);
|
|
|
|
testMe.complete('inner.o', function(error, data) {
|
2011-11-12 02:44:39 +01:00
|
|
|
assert.deepEqual(data, doesNotBreak);
|
|
|
|
});
|
|
|
|
|
|
|
|
putIn.run(['.clear']);
|
|
|
|
|
|
|
|
// currently does not work, but should not break, not the {
|
|
|
|
putIn.run([
|
|
|
|
'var top = function () {',
|
2012-01-17 20:16:49 +01:00
|
|
|
'r = function test ()',
|
|
|
|
'{',
|
|
|
|
'var inner = {',
|
|
|
|
' one:1',
|
|
|
|
'};'
|
|
|
|
]);
|
|
|
|
testMe.complete('inner.o', function(error, data) {
|
2011-11-12 02:44:39 +01:00
|
|
|
assert.deepEqual(data, doesNotBreak);
|
|
|
|
});
|
|
|
|
|
|
|
|
putIn.run(['.clear']);
|
|
|
|
|
|
|
|
// currently does not work, but should not break
|
|
|
|
putIn.run([
|
|
|
|
'var top = function () {',
|
2012-01-17 20:16:49 +01:00
|
|
|
'r = function test (',
|
|
|
|
')',
|
|
|
|
'{',
|
|
|
|
'var inner = {',
|
|
|
|
' one:1',
|
|
|
|
'};'
|
|
|
|
]);
|
|
|
|
testMe.complete('inner.o', function(error, data) {
|
2011-11-12 02:44:39 +01:00
|
|
|
assert.deepEqual(data, doesNotBreak);
|
|
|
|
});
|
|
|
|
|
2012-02-17 01:33:40 +01:00
|
|
|
putIn.run(['.clear']);
|
|
|
|
|
|
|
|
// make sure tab completion works on non-Objects
|
|
|
|
putIn.run([
|
|
|
|
'var str = "test";'
|
|
|
|
]);
|
|
|
|
testMe.complete('str.len', function(error, data) {
|
2012-02-19 00:01:35 +01:00
|
|
|
assert.deepEqual(data, [['str.length'], 'str.len']);
|
2012-02-17 01:33:40 +01:00
|
|
|
});
|
2012-03-20 02:44:22 +01:00
|
|
|
|
|
|
|
putIn.run(['.clear']);
|
|
|
|
|
|
|
|
// tab completion should not break on spaces
|
|
|
|
var spaceTimeout = setTimeout(function() {
|
|
|
|
throw new Error('timeout');
|
|
|
|
}, 1000);
|
|
|
|
|
|
|
|
testMe.complete(' ', function(error, data) {
|
|
|
|
assert.deepEqual(data, [[],undefined]);
|
|
|
|
clearTimeout(spaceTimeout);
|
|
|
|
});
|
2012-04-26 05:08:30 +02:00
|
|
|
|
|
|
|
// tab completion should pick up the global "toString" object, and
|
|
|
|
// any other properties up the "global" object's prototype chain
|
|
|
|
testMe.complete('toSt', function(error, data) {
|
|
|
|
assert.deepEqual(data, [['toString'], 'toSt']);
|
|
|
|
});
|
2014-11-26 16:46:59 +01:00
|
|
|
|
|
|
|
// Tab complete provides built in libs for require()
|
|
|
|
putIn.run(['.clear']);
|
|
|
|
|
|
|
|
testMe.complete('require(\'', function(error, data) {
|
|
|
|
assert.strictEqual(error, null);
|
|
|
|
repl._builtinLibs.forEach(function(lib) {
|
|
|
|
assert.notStrictEqual(data[0].indexOf(lib), -1, lib + ' not found');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
testMe.complete('require(\'n', function(error, data) {
|
|
|
|
assert.strictEqual(error, null);
|
|
|
|
assert.deepEqual(data, [['net'], 'n']);
|
|
|
|
});
|