aboutsummaryrefslogtreecommitdiff
path: root/test/parallel
diff options
context:
space:
mode:
authorGus Caplan <me@gus.host>2018-01-13 13:55:19 -0600
committerGus Caplan <me@gus.host>2018-03-30 19:41:41 -0500
commit97ace0449292eab3f044158ba3787e6af5dd6f3a (patch)
treecd6150997307934e3f1998252d3465709469916b /test/parallel
parent83d44bee0134e3b8b6b98bf89e1f02981d72adee (diff)
downloadandroid-node-v8-97ace0449292eab3f044158ba3787e6af5dd6f3a.tar.gz
android-node-v8-97ace0449292eab3f044158ba3787e6af5dd6f3a.tar.bz2
android-node-v8-97ace0449292eab3f044158ba3787e6af5dd6f3a.zip
console: add table method
PR-URL: https://github.com/nodejs/node/pull/18137 Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'test/parallel')
-rw-r--r--test/parallel/test-console-table.js196
1 files changed, 196 insertions, 0 deletions
diff --git a/test/parallel/test-console-table.js b/test/parallel/test-console-table.js
new file mode 100644
index 0000000000..39e9099dd7
--- /dev/null
+++ b/test/parallel/test-console-table.js
@@ -0,0 +1,196 @@
+'use strict';
+
+const common = require('../common');
+
+const assert = require('assert');
+const { Console } = require('console');
+
+const queue = [];
+
+const console = new Console({ write: (x) => {
+ queue.push(x);
+}, removeListener: () => {} }, process.stderr, false);
+
+function test(data, only, expected) {
+ if (arguments.length === 2) {
+ expected = only;
+ only = undefined;
+ }
+ console.table(data, only);
+ assert.strictEqual(queue.shift(), expected.trimLeft());
+}
+
+common.expectsError(() => console.table([], false), {
+ code: 'ERR_INVALID_ARG_TYPE',
+});
+
+test(null, 'null\n');
+test(undefined, 'undefined\n');
+test(false, 'false\n');
+test('hi', 'hi\n');
+test(Symbol(), 'Symbol()\n');
+
+test([1, 2, 3], `
+┌─────────┬────────┐
+│ (index) │ Values │
+├─────────┼────────┤
+│ 0 │ 1 │
+│ 1 │ 2 │
+│ 2 │ 3 │
+└─────────┴────────┘
+`);
+
+test([Symbol(), 5, [10]], `
+┌─────────┬──────────┐
+│ (index) │ Values │
+├─────────┼──────────┤
+│ 0 │ Symbol() │
+│ 1 │ 5 │
+│ 2 │ [ 10 ] │
+└─────────┴──────────┘
+`);
+
+test([undefined, 5], `
+┌─────────┬───────────┐
+│ (index) │ Values │
+├─────────┼───────────┤
+│ 0 │ undefined │
+│ 1 │ 5 │
+└─────────┴───────────┘
+`);
+
+test({ a: 1, b: Symbol(), c: [10] }, `
+┌─────────┬────┬──────────┐
+│ (index) │ 0 │ Values │
+├─────────┼────┼──────────┤
+│ a │ │ 1 │
+│ b │ │ Symbol() │
+│ c │ 10 │ │
+└─────────┴────┴──────────┘
+`);
+
+test(new Map([ ['a', 1], [Symbol(), [2]] ]), `
+┌───────────────────┬──────────┬────────┐
+│ (iteration index) │ Key │ Values │
+├───────────────────┼──────────┼────────┤
+│ 0 │ 'a' │ 1 │
+│ 1 │ Symbol() │ [ 2 ] │
+└───────────────────┴──────────┴────────┘
+`);
+
+test(new Set([1, 2, Symbol()]), `
+┌───────────────────┬──────────┐
+│ (iteration index) │ Values │
+├───────────────────┼──────────┤
+│ 0 │ 1 │
+│ 1 │ 2 │
+│ 2 │ Symbol() │
+└───────────────────┴──────────┘
+`);
+
+test({ a: 1, b: 2 }, ['a'], `
+┌─────────┬───┐
+│ (index) │ a │
+├─────────┼───┤
+│ a │ │
+│ b │ │
+└─────────┴───┘
+`);
+
+test([{ a: 1, b: 2 }, { a: 3, c: 4 }], ['a'], `
+┌─────────┬───┐
+│ (index) │ a │
+├─────────┼───┤
+│ 0 │ 1 │
+│ 1 │ 3 │
+└─────────┴───┘
+`);
+
+test(new Map([[1, 1], [2, 2], [3, 3]]).entries(), `
+┌───────────────────┬─────┬────────┐
+│ (iteration index) │ Key │ Values │
+├───────────────────┼─────┼────────┤
+│ 0 │ 1 │ 1 │
+│ 1 │ 2 │ 2 │
+│ 2 │ 3 │ 3 │
+└───────────────────┴─────┴────────┘
+`);
+
+test(new Set([1, 2, 3]).values(), `
+┌───────────────────┬────────┐
+│ (iteration index) │ Values │
+├───────────────────┼────────┤
+│ 0 │ 1 │
+│ 1 │ 2 │
+│ 2 │ 3 │
+└───────────────────┴────────┘
+`);
+
+
+test({ a: { a: 1, b: 2, c: 3 } }, `
+┌─────────┬───┬───┬───┐
+│ (index) │ a │ b │ c │
+├─────────┼───┼───┼───┤
+│ a │ 1 │ 2 │ 3 │
+└─────────┴───┴───┴───┘
+`);
+
+test({ a: [1, 2] }, `
+┌─────────┬───┬───┐
+│ (index) │ 0 │ 1 │
+├─────────┼───┼───┤
+│ a │ 1 │ 2 │
+└─────────┴───┴───┘
+`);
+
+test({ a: [1, 2, 3, 4, 5], b: 5, c: { e: 5 } }, `
+┌─────────┬───┬───┬───┬───┬───┬───┬────────┐
+│ (index) │ 0 │ 1 │ 2 │ 3 │ 4 │ e │ Values │
+├─────────┼───┼───┼───┼───┼───┼───┼────────┤
+│ a │ 1 │ 2 │ 3 │ 4 │ 5 │ │ │
+│ b │ │ │ │ │ │ │ 5 │
+│ c │ │ │ │ │ │ 5 │ │
+└─────────┴───┴───┴───┴───┴───┴───┴────────┘
+`);
+
+test(new Uint8Array([1, 2, 3]), `
+┌─────────┬────────┐
+│ (index) │ Values │
+├─────────┼────────┤
+│ 0 │ 1 │
+│ 1 │ 2 │
+│ 2 │ 3 │
+└─────────┴────────┘
+`);
+
+test(Buffer.from([1, 2, 3]), `
+┌─────────┬────────┐
+│ (index) │ Values │
+├─────────┼────────┤
+│ 0 │ 1 │
+│ 1 │ 2 │
+│ 2 │ 3 │
+└─────────┴────────┘
+`);
+
+test({ a: undefined }, ['x'], `
+┌─────────┬───┐
+│ (index) │ x │
+├─────────┼───┤
+│ a │ │
+└─────────┴───┘
+`);
+
+test([], `
+┌─────────┬────────┐
+│ (index) │ Values │
+├─────────┼────────┤
+└─────────┴────────┘
+`);
+
+test(new Map(), `
+┌───────────────────┬─────┬────────┐
+│ (iteration index) │ Key │ Values │
+├───────────────────┼─────┼────────┤
+└───────────────────┴─────┴────────┘
+`);