-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathascii-data-table-test.js
232 lines (215 loc) · 8.68 KB
/
ascii-data-table-test.js
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/* global describe, it */
import expect from 'expect'
import repeat from 'core-js/library/fn/string/repeat'
import AsciiTable from '../src/ascii-data-table'
function checkColWidth (AsciiTable, items, expectedLength) {
const res = AsciiTable.maxColumnWidth(items)
expect(res).toEqual(expectedLength)
}
describe('Ascii Tables', () => {
it('should not generate a table if no data', () => {
const items = []
const res = AsciiTable.table(items)
expect(res).toEqual('')
})
it('should not generate a table if input data isn\'t an array', () => {
const items = 'Hello'
const res = AsciiTable.table(items)
expect(res).toEqual('')
})
it('should generate a simple table', () => {
const items = [['x'], ['a'], [true]]
const res = AsciiTable.table(items)
expect(res).toEqual([
'╒════╕',
'│"x" │',
'╞════╡',
'│"a" │',
'├────┤',
'│true│',
'└────┘'].join('\n')
)
})
it('should generate a table with multiple columns and rows', () => {
const items = [['x', 'y'], ['a', 'b'], ['c', 'd']]
const res = AsciiTable.table(items)
expect(res).toEqual([
'╒═══╤═══╕',
'│"x"│"y"│',
'╞═══╪═══╡',
'│"a"│"b"│',
'├───┼───┤',
'│"c"│"d"│',
'└───┴───┘'].join('\n')
)
})
it('should escape linebreaks', () => {
const items = [['x', 'y'], ['Hello,\nMy name is Oskar.\n\nWhat\'s your name?', 'b'], ['c', 'd']]
const res = AsciiTable.table(items, 100)
expect(res).toEqual([
'╒════════════════════════════════════════════════╤═══╕',
'│"x" │"y"│',
'╞════════════════════════════════════════════════╪═══╡',
'│"Hello,\\nMy name is Oskar.\\n\\nWhat\'s your name?"│"b"│', // Look weird b/c of escape
'├────────────────────────────────────────────────┼───┤',
'│"c" │"d"│',
'└────────────────────────────────────────────────┴───┘'].join('\n')
)
})
it('should not make columns shorter than 3', () => {
const items = [[1], [1]]
const res = AsciiTable.table(items)
expect(res).toEqual([
'╒═══╕',
'│1 │',
'╞═══╡',
'│1 │',
'└───┘'].join('\n')
)
})
it('should respect padded strings', () => {
const items = [['x', 'y'], [' a', 'b'], ['c', 'd ']]
const res = AsciiTable.table(items)
expect(res).toEqual([
'╒═══════╤═══════╕',
'│"x" │"y" │',
'╞═══════╪═══════╡',
'│" a"│"b" │',
'├───────┼───────┤',
'│"c" │"d "│',
'└───────┴───────┘'].join('\n')
)
})
it('should generate a table with numbers', () => {
const items = [['x'], [2], [3], [[4, 5]]]
const res = AsciiTable.table(items)
expect(res).toEqual([
'╒═════╕',
'│"x" │',
'╞═════╡',
'│2 │',
'├─────┤',
'│3 │',
'├─────┤',
'│[4,5]│',
'└─────┘'].join('\n')
)
})
it('should generate a table with arrays', () => {
const items = [['x', 'y'], [['a', 'b'], 'ab'], [['c'], 'd']]
const res = AsciiTable.table(items)
expect(res).toEqual([
'╒═════════╤════╕',
'│"x" │"y" │',
'╞═════════╪════╡',
'│["a","b"]│"ab"│',
'├─────────┼────┤',
'│["c"] │"d" │',
'└─────────┴────┘'].join('\n')
)
})
it('should generate a table with arrays, with different widths', () => {
const items = [['x', 'y'], [['a', 'b'], 'ab'], [['c'], 'd']]
const res = AsciiTable.table(items)
const res2 = AsciiTable.table(items, 7)
expect(res).toEqual([
'╒═════════╤════╕',
'│"x" │"y" │',
'╞═════════╪════╡',
'│["a","b"]│"ab"│',
'├─────────┼────┤',
'│["c"] │"d" │',
'└─────────┴────┘'].join('\n')
)
expect(res2).toEqual([
'╒═══════╤════╕',
'│"x" │"y" │',
'╞═══════╪════╡',
'│["a","b│"ab"│',
'│"] │ │',
'├───────┼────┤',
'│["c"] │"d" │',
'└───────┴────┘'].join('\n')
)
})
it('should cast maxWidth to int', () => {
const items = [['x', 'y'], [['a', 'b'], 'ab'], [['c'], 'd']]
const res = AsciiTable.table(items, '7')
expect(res).toEqual([
'╒═══════╤════╕',
'│"x" │"y" │',
'╞═══════╪════╡',
'│["a","b│"ab"│',
'│"] │ │',
'├───────┼────┤',
'│["c"] │"d" │',
'└───────┴────┘'].join('\n')
)
})
it('should generate a table with objects', () => {
const items = [['x', 'y'], [{a: 'a', b: 'b'}, 'ab'], ['c', {d: 'd'}]]
const res = AsciiTable.table(items)
expect(res).toEqual([
'╒═════════════════╤═════════╕',
'│"x" │"y" │',
'╞═════════════════╪═════════╡',
'│{"a":"a","b":"b"}│"ab" │',
'├─────────────────┼─────────┤',
'│"c" │{"d":"d"}│',
'└─────────────────┴─────────┘'].join('\n')
)
})
it('should wrap long lines, including title row', () => {
const items = [
['xxxxxx', 'yyyyyy'],
['aaaaa', 'bbb'],
[{c: 'cccccc'}, ['ddddd']],
['string', 'verylongstring']
]
const res = AsciiTable.table(items, 4)
expect(res).toEqual([
'╒════╤════╕',
'│"xxx│"yyy│',
'│xxx"│yyy"│',
'╞════╪════╡',
'│"aaa│"bbb│',
'│aa" │" │',
'├────┼────┤',
'│{"c"│["dd│',
'│:"cc│ddd"│',
'│cccc│] │',
'│"} │ │',
'├────┼────┤',
'│"str│"ver│',
'│ing"│ylon│',
'│ │gstr│',
'│ │ing"│',
'└────┴────┘'].join('\n')
)
})
it('should be able to generate very wide tables', () => {
const len = 100000
const items = [['x', 'y'], [repeat('x', len), 'hey']]
const res = AsciiTable.table(items, 9999999999)
expect(res).toEqual([
'╒' + repeat('═', len + 2) + '╤═════╕',
'│"x"' + repeat(' ', len - 1) + '│"y" │',
'╞' + repeat('═', len + 2) + '╪═════╡',
'│"' + repeat('x', len) + '"│"hey"│',
'└' + repeat('─', len + 2) + '┴─────┘'].join('\n')
)
})
it('should find the max column width', () => {
checkColWidth(AsciiTable, null, 0)
checkColWidth(AsciiTable, true, 0)
checkColWidth(AsciiTable, [['x', 'y'], [{a: 'a', b: 'b'}, 'ab'], ['c', {d: 'd'}]],
JSON.stringify({a: 'a', b: 'b'}).length
)
checkColWidth(AsciiTable, [['xxxxxxxx', 'y'], ['a', 'ab'], ['c', {d: 'd'}]],
JSON.stringify('xxxxxxxx').length
)
checkColWidth(AsciiTable, [['xxxxxxxx', 'y'], ['a', 'ab'], ['c', "In the heart of the nation's capital, in a courthouse of the U.S. government, one man will stop at nothing to keep his honor, and one will stop at nothing to find the truth."]],
JSON.stringify("In the heart of the nation's capital, in a courthouse of the U.S. government, one man will stop at nothing to keep his honor, and one will stop at nothing to find the truth.").length
)
})
})