summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/cli-table2/test/verify-legacy-compatibility-test.js
blob: 5cd4703477e6f36a6b432c1baa401044733cecb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
(function(){
  describe('verify original cli-table behavior',function(){
     commonTests(require('cli-table'));
  });

  describe('@api cli-table2 matches verified behavior',function(){
     commonTests(require('../src/table'));
  });

  function commonTests(Table){
    var chai = require('chai');
    var expect = chai.expect;
    var colors = require('colors/safe');

    it('empty table has a width of 0',function(){
      var table = new Table();
      expect(table.width).to.equal(0);
      expect(table.toString()).to.equal('');
    });

    it('header text will be colored according to style',function(){
      var table = new Table({head:['hello','goodbye'],style:{border:[],head:['red','bgWhite']}});

      var expected = [
          '┌───────┬─────────┐'
        , '│' + colors.bgWhite.red(' hello ') +'│' + colors.bgWhite.red(' goodbye ') + '│'
        , '└───────┴─────────┘'
      ];

      expect(table.toString()).to.equal(expected.join('\n'));
    });

    it('tables with one row of data will not be treated as headers',function(){
      var table = new Table({style:{border:[],head:['red']}});

      table.push(['hello','goodbye']);

      var expected = [
          '┌───────┬─────────┐'
        , '│ hello │ goodbye │'
        , '└───────┴─────────┘'
      ];

      expect(table.toString()).to.equal(expected.join('\n'));
    });

    it('table with headers and data headers',function(){
      var table = new Table({head:['hello','goodbye'],style:{border:[],head:['red']}});

      table.push(['hola','adios']);

      var expected = [
          '┌───────┬─────────┐'
        , '│' + colors.red(' hello ') +'│' + colors.red(' goodbye ') + '│'
        , '├───────┼─────────┤'
        , '│ hola  │ adios   │'
        , '└───────┴─────────┘'
      ];

      expect(table.toString()).to.equal(expected.join('\n'));
    });

    it('compact shorthand',function(){
      var table = new Table({style:{compact:true,border:[],head:['red']}});

      table.push(['hello','goodbye'],['hola','adios']);

      var expected = [
          '┌───────┬─────────┐'
        , '│ hello │ goodbye │'
        , '│ hola  │ adios   │'
        , '└───────┴─────────┘'
      ];

      expect(table.toString()).to.equal(expected.join('\n'));
    });

    it('compact shorthand - headers are still rendered with separator',function(){
      var table = new Table({head:['hello','goodbye'],style:{compact:true,border:[],head:[]}});

      table.push(['hola','adios'],['hi','bye']);

      var expected = [
          '┌───────┬─────────┐'
        , '│ hello │ goodbye │'
        , '├───────┼─────────┤'
        , '│ hola  │ adios   │'
        , '│ hi    │ bye     │'
        , '└───────┴─────────┘'
      ];

      expect(table.toString()).to.equal(expected.join('\n'));
    });

    it('compact longhand - headers are not rendered with separator',function(){
      var table = new Table({
        chars: {
          'mid': ''
          , 'left-mid': ''
          , 'mid-mid': ''
          , 'right-mid': ''
        },
        head:['hello','goodbye'],
        style:{border:[],head:[]}}
      );

      table.push(['hola','adios'],['hi','bye']);

      var expected = [
          '┌───────┬─────────┐'
        , '│ hello │ goodbye │'
        , '│ hola  │ adios   │'
        , '│ hi    │ bye     │'
        , '└───────┴─────────┘'
      ];

      expect(table.toString()).to.equal(expected.join('\n'));
    });

    it('compact longhand',function(){
      var table = new Table({
        chars: {
          'mid': ''
          , 'left-mid': ''
          , 'mid-mid': ''
          , 'right-mid': ''
        },
        style:{border:[],head:['red']}
      });

      table.push(['hello','goodbye'],['hola','adios']);

      var expected = [
          '┌───────┬─────────┐'
        , '│ hello │ goodbye │'
        , '│ hola  │ adios   │'
        , '└───────┴─────────┘'
      ];

      expect(table.toString()).to.equal(expected.join('\n'));
    });

    it('objects with multiple properties in a cross-table',function(){
      var table = new Table({style:{border:[],head:[]}});

      table.push(
        {'a':['b'], c:['d']}   // value of property 'c' will be discarded
      );

      var expected = [
          '┌───┬───┐'
        , '│ a │ b │'
        , '└───┴───┘'
      ];
      expect(table.toString()).to.equal(expected.join('\n'));
    });
  }
})();