aboutsummaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/cli-table2/test/table-test.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/cli-table2/test/table-test.js')
-rw-r--r--deps/npm/node_modules/cli-table2/test/table-test.js87
1 files changed, 87 insertions, 0 deletions
diff --git a/deps/npm/node_modules/cli-table2/test/table-test.js b/deps/npm/node_modules/cli-table2/test/table-test.js
new file mode 100644
index 0000000000..4bc3e055d9
--- /dev/null
+++ b/deps/npm/node_modules/cli-table2/test/table-test.js
@@ -0,0 +1,87 @@
+describe('@api Table ',function(){
+ var chai = require('chai');
+ var expect = chai.expect;
+ var Table = require('..');
+ var colors = require('colors/safe');
+
+ it('wordWrap with colored text',function(){
+ var table = new Table({style:{border:[],head:[]},wordWrap:true,colWidths:[7,9]});
+
+ table.push([colors.red('Hello how are you?'),colors.blue('I am fine thanks!')]);
+
+ var expected = [
+ '┌───────┬─────────┐'
+ , '│ ' + colors.red('Hello') + ' │ ' + colors.blue('I am') + ' │'
+ , '│ ' + colors.red('how') + ' │ ' + colors.blue('fine') + ' │'
+ , '│ ' + colors.red('are') + ' │ ' + colors.blue('thanks!') + ' │'
+ , '│ ' + colors.red('you?') + ' │ │'
+ , '└───────┴─────────┘'
+ ];
+
+ expect(table.toString()).to.equal(expected.join('\n'));
+ });
+
+ it('allows numbers as `content` property of cells defined using object notation', function() {
+ var table = new Table({style:{border:[],head:[]}});
+
+ table.push([{content: 12}]);
+
+ var expected = [
+ '┌────┐'
+ , '│ 12 │'
+ , '└────┘'
+ ];
+
+ expect(table.toString()).to.equal(expected.join('\n'));
+ });
+
+ it('throws if content is not a string or number', function() {
+ var table = new Table({style:{border:[],head:[]}});
+
+ expect(function() {
+ table.push([{content: {a:'b'}}]);
+ table.toString();
+ }).to.throw();
+
+ });
+
+ it('works with CJK values', function () {
+ var table = new Table({style: {border:[],head:[]}, colWidths: [5, 10, 5]});
+
+ table.push(
+ ['foobar', 'English test', 'baz']
+ , ['foobar', '中文测试', 'baz']
+ , ['foobar', '日本語テスト', 'baz']
+ , ['foobar', '한국어테스트', 'baz']
+ );
+
+ var expected = [
+ '┌─────┬──────────┬─────┐'
+ , '│ fo… │ English… │ baz │'
+ , '├─────┼──────────┼─────┤'
+ , '│ fo… │ 中文测试 │ baz │'
+ , '├─────┼──────────┼─────┤'
+ , '│ fo… │ 日本語… │ baz │'
+ , '├─────┼──────────┼─────┤'
+ , '│ fo… │ 한국어… │ baz │'
+ , '└─────┴──────────┴─────┘'
+ ];
+
+ expect(table.toString()).to.equal(expected.join("\n"));
+ });
+});
+
+
+/*
+
+ var expected = [
+ '┌──┬───┬──┬──┐'
+ , '│ │ │ │ │'
+ , '├──┼───┼──┼──┤'
+ , '│ │ … │ │ │'
+ , '├──┼───┼──┼──┤'
+ , '│ │ … │ │ │'
+ , '└──┴───┴──┴──┘'
+ ];
+
+ */