tty-table 0.7.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +57 -0
- data/LICENSE.txt +1 -1
- data/README.md +165 -94
- data/lib/tty-table.rb +1 -5
- data/lib/tty/table.rb +102 -42
- data/lib/tty/table/alignment_set.rb +3 -6
- data/lib/tty/table/border.rb +57 -68
- data/lib/tty/table/border/ascii.rb +17 -17
- data/lib/tty/table/border/null.rb +20 -22
- data/lib/tty/table/border/row_line.rb +4 -3
- data/lib/tty/table/border/unicode.rb +17 -17
- data/lib/tty/table/border_dsl.rb +28 -25
- data/lib/tty/table/border_options.rb +50 -25
- data/lib/tty/table/column_constraint.rb +29 -17
- data/lib/tty/table/{column_set.rb → columns.rb} +44 -69
- data/lib/tty/table/empty.rb +2 -0
- data/lib/tty/table/error.rb +1 -1
- data/lib/tty/table/field.rb +43 -35
- data/lib/tty/table/header.rb +7 -5
- data/lib/tty/table/indentation.rb +16 -25
- data/lib/tty/table/operation/alignment.rb +10 -8
- data/lib/tty/table/operation/escape.rb +2 -3
- data/lib/tty/table/operation/filter.rb +1 -1
- data/lib/tty/table/operation/padding.rb +4 -12
- data/lib/tty/table/operation/truncation.rb +4 -4
- data/lib/tty/table/operation/wrapped.rb +4 -4
- data/lib/tty/table/operations.rb +4 -15
- data/lib/tty/table/options.rb +2 -4
- data/lib/tty/table/orientation.rb +5 -5
- data/lib/tty/table/orientation/horizontal.rb +1 -1
- data/lib/tty/table/orientation/vertical.rb +1 -1
- data/lib/tty/table/renderer.rb +40 -35
- data/lib/tty/table/renderer/ascii.rb +4 -4
- data/lib/tty/table/renderer/basic.rb +85 -88
- data/lib/tty/table/renderer/unicode.rb +3 -3
- data/lib/tty/table/row.rb +10 -8
- data/lib/tty/table/transformation.rb +2 -2
- data/lib/tty/table/validatable.rb +25 -7
- data/lib/tty/table/version.rb +3 -3
- metadata +33 -283
- data/.gitignore +0 -14
- data/.rspec +0 -3
- data/.travis.yml +0 -24
- data/CODE_OF_CONDUCT.md +0 -49
- data/Gemfile +0 -18
- data/Rakefile +0 -8
- data/benchmarks/speed.rb +0 -41
- data/spec/spec_helper.rb +0 -50
- data/spec/unit/access_spec.rb +0 -86
- data/spec/unit/add_row_spec.rb +0 -28
- data/spec/unit/alignment_set/each_spec.rb +0 -17
- data/spec/unit/alignment_set/new_spec.rb +0 -27
- data/spec/unit/alignment_set/to_ary_spec.rb +0 -14
- data/spec/unit/alignment_spec.rb +0 -71
- data/spec/unit/border/ascii/rendering_spec.rb +0 -90
- data/spec/unit/border/new_spec.rb +0 -27
- data/spec/unit/border/null/rendering_spec.rb +0 -130
- data/spec/unit/border/options/from_spec.rb +0 -38
- data/spec/unit/border/options/new_spec.rb +0 -14
- data/spec/unit/border/unicode/rendering_spec.rb +0 -63
- data/spec/unit/border_options/new_spec.rb +0 -20
- data/spec/unit/border_options/update_spec.rb +0 -18
- data/spec/unit/column_constraint/enforce_spec.rb +0 -70
- data/spec/unit/column_constraint/widths_spec.rb +0 -35
- data/spec/unit/column_set/extract_widths_spec.rb +0 -48
- data/spec/unit/column_set/total_width_spec.rb +0 -15
- data/spec/unit/column_set/widths_from_spec.rb +0 -51
- data/spec/unit/data_spec.rb +0 -12
- data/spec/unit/each_spec.rb +0 -26
- data/spec/unit/each_with_index_spec.rb +0 -51
- data/spec/unit/empty_spec.rb +0 -23
- data/spec/unit/eql_spec.rb +0 -34
- data/spec/unit/field/equality_spec.rb +0 -51
- data/spec/unit/field/length_spec.rb +0 -35
- data/spec/unit/field/lines_spec.rb +0 -21
- data/spec/unit/field/new_spec.rb +0 -29
- data/spec/unit/field/width_spec.rb +0 -23
- data/spec/unit/filter_spec.rb +0 -22
- data/spec/unit/header/call_spec.rb +0 -30
- data/spec/unit/header/color_spec.rb +0 -19
- data/spec/unit/header/equality_spec.rb +0 -51
- data/spec/unit/header/height_spec.rb +0 -27
- data/spec/unit/header/new_spec.rb +0 -16
- data/spec/unit/header/set_spec.rb +0 -20
- data/spec/unit/header/to_ary_spec.rb +0 -14
- data/spec/unit/header_spec.rb +0 -13
- data/spec/unit/indentation/indent_spec.rb +0 -21
- data/spec/unit/new_spec.rb +0 -73
- data/spec/unit/operation/alignment/call_spec.rb +0 -39
- data/spec/unit/operation/escape/call_spec.rb +0 -15
- data/spec/unit/operation/filter/call_spec.rb +0 -16
- data/spec/unit/operation/truncation/call_spec.rb +0 -30
- data/spec/unit/operation/wrapped/call_spec.rb +0 -40
- data/spec/unit/operations/new_spec.rb +0 -30
- data/spec/unit/options/access_spec.rb +0 -14
- data/spec/unit/options_spec.rb +0 -25
- data/spec/unit/orientation_spec.rb +0 -145
- data/spec/unit/padding_spec.rb +0 -117
- data/spec/unit/properties_spec.rb +0 -25
- data/spec/unit/render_repeat_spec.rb +0 -42
- data/spec/unit/render_spec.rb +0 -63
- data/spec/unit/render_with_spec.rb +0 -106
- data/spec/unit/renderer/ascii/coloring_spec.rb +0 -70
- data/spec/unit/renderer/ascii/indentation_spec.rb +0 -41
- data/spec/unit/renderer/ascii/multiline_spec.rb +0 -101
- data/spec/unit/renderer/ascii/padding_spec.rb +0 -88
- data/spec/unit/renderer/ascii/render_spec.rb +0 -68
- data/spec/unit/renderer/ascii/resizing_spec.rb +0 -114
- data/spec/unit/renderer/ascii/separator_spec.rb +0 -28
- data/spec/unit/renderer/basic/alignment_spec.rb +0 -88
- data/spec/unit/renderer/basic/coloring_spec.rb +0 -61
- data/spec/unit/renderer/basic/extract_column_widths_spec.rb +0 -28
- data/spec/unit/renderer/basic/filter_spec.rb +0 -53
- data/spec/unit/renderer/basic/indentation_spec.rb +0 -48
- data/spec/unit/renderer/basic/multiline_spec.rb +0 -74
- data/spec/unit/renderer/basic/new_spec.rb +0 -26
- data/spec/unit/renderer/basic/options_spec.rb +0 -52
- data/spec/unit/renderer/basic/padding_spec.rb +0 -76
- data/spec/unit/renderer/basic/render_spec.rb +0 -57
- data/spec/unit/renderer/basic/resizing_spec.rb +0 -96
- data/spec/unit/renderer/basic/separator_spec.rb +0 -43
- data/spec/unit/renderer/basic/truncation_spec.rb +0 -35
- data/spec/unit/renderer/basic/wrapping_spec.rb +0 -40
- data/spec/unit/renderer/border_spec.rb +0 -104
- data/spec/unit/renderer/render_spec.rb +0 -36
- data/spec/unit/renderer/select_spec.rb +0 -22
- data/spec/unit/renderer/unicode/coloring_spec.rb +0 -70
- data/spec/unit/renderer/unicode/indentation_spec.rb +0 -41
- data/spec/unit/renderer/unicode/padding_spec.rb +0 -61
- data/spec/unit/renderer/unicode/render_spec.rb +0 -68
- data/spec/unit/renderer/unicode/separator_spec.rb +0 -26
- data/spec/unit/renderer_spec.rb +0 -19
- data/spec/unit/rotate_spec.rb +0 -86
- data/spec/unit/row/access_spec.rb +0 -25
- data/spec/unit/row/call_spec.rb +0 -45
- data/spec/unit/row/data_spec.rb +0 -26
- data/spec/unit/row/each_spec.rb +0 -31
- data/spec/unit/row/equality_spec.rb +0 -73
- data/spec/unit/row/height_spec.rb +0 -27
- data/spec/unit/row/new_spec.rb +0 -41
- data/spec/unit/row/to_ary_spec.rb +0 -14
- data/spec/unit/to_s_spec.rb +0 -56
- data/spec/unit/transformation/extract_tuples_spec.rb +0 -35
- data/spec/unit/utf_spec.rb +0 -33
- data/spec/unit/validatable/validate_options_spec.rb +0 -33
- data/spec/unit/validatable_spec.rb +0 -32
- data/tasks/console.rake +0 -10
- data/tasks/coverage.rake +0 -11
- data/tasks/spec.rake +0 -29
- data/tty-table.gemspec +0 -30
data/spec/unit/render_spec.rb
DELETED
@@ -1,63 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe TTY::Table, '#render' do
|
6
|
-
let(:object) { described_class }
|
7
|
-
let(:header) { ['h1', 'h2'] }
|
8
|
-
let(:rows) { [['a1', 'a2'], ['b1', 'b2']] }
|
9
|
-
let(:color) { Pastel.new(enabled: true) }
|
10
|
-
let(:basic_renderer) { TTY::Table::Renderer::Basic }
|
11
|
-
let(:ascii_renderer) { TTY::Table::Renderer::ASCII }
|
12
|
-
|
13
|
-
subject(:table) { object.new header, rows }
|
14
|
-
|
15
|
-
before { allow(Pastel).to receive(:new).and_return(color) }
|
16
|
-
|
17
|
-
it { is_expected.to respond_to(:render) }
|
18
|
-
|
19
|
-
context 'with block' do
|
20
|
-
it 'allows to modify renderer in a block' do
|
21
|
-
expected = nil
|
22
|
-
block = lambda { |renderer| expected = renderer }
|
23
|
-
table.render(&block)
|
24
|
-
expect(expected).to be_kind_of(basic_renderer)
|
25
|
-
end
|
26
|
-
|
27
|
-
it 'sets renderer as block parameter' do
|
28
|
-
expected = nil
|
29
|
-
block = lambda { |renderer| expected = renderer }
|
30
|
-
table.render(:ascii, &block)
|
31
|
-
expect(expected).to be_kind_of(ascii_renderer)
|
32
|
-
end
|
33
|
-
|
34
|
-
it 'sets parameter on renderer' do
|
35
|
-
result = table.render :ascii do |renderer|
|
36
|
-
renderer.border.style = :red
|
37
|
-
end
|
38
|
-
expect(result).to eq unindent(<<-EOS)
|
39
|
-
\e[31m+--+--+\e[0m
|
40
|
-
\e[31m|\e[0mh1\e[31m|\e[0mh2\e[31m|\e[0m
|
41
|
-
\e[31m+--+--+\e[0m
|
42
|
-
\e[31m|\e[0ma1\e[31m|\e[0ma2\e[31m|\e[0m
|
43
|
-
\e[31m|\e[0mb1\e[31m|\e[0mb2\e[31m|\e[0m
|
44
|
-
\e[31m+--+--+\e[0m
|
45
|
-
EOS
|
46
|
-
end
|
47
|
-
end
|
48
|
-
|
49
|
-
context 'with params' do
|
50
|
-
it 'sets params without renderer' do
|
51
|
-
allow(TTY::Table::Renderer).to receive(:render)
|
52
|
-
table.render(:basic)
|
53
|
-
expect(TTY::Table::Renderer).to have_received(:render).
|
54
|
-
with(table, {renderer: :basic})
|
55
|
-
end
|
56
|
-
|
57
|
-
it 'sets params with renderer' do
|
58
|
-
allow(TTY::Table::Renderer).to receive(:render)
|
59
|
-
table.render
|
60
|
-
expect(TTY::Table::Renderer).to have_received(:render).with(table, {})
|
61
|
-
end
|
62
|
-
end
|
63
|
-
end
|
@@ -1,106 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe TTY::Table, '#render_with' do
|
6
|
-
let(:header) { ['h1', 'h2', 'h3'] }
|
7
|
-
let(:rows) { [['a1', 'a2', 'a3'], ['b1', 'b2', 'b3']] }
|
8
|
-
let(:table) { described_class.new header, rows }
|
9
|
-
let(:color) { Pastel.new(enabled: true) }
|
10
|
-
|
11
|
-
before { allow(Pastel).to receive(:new).and_return(color) }
|
12
|
-
|
13
|
-
context 'with invalid border class' do
|
14
|
-
it "doesn't inherit from TTY::Table::Border" do
|
15
|
-
expect { table.render_with String }.to raise_error(TTY::Table::TypeError)
|
16
|
-
end
|
17
|
-
|
18
|
-
it "doesn't implement def_border" do
|
19
|
-
klass = Class.new(TTY::Table::Border)
|
20
|
-
expect { table.render_with klass }.
|
21
|
-
to raise_error(TTY::Table::NoImplementationError)
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
context 'with complete border' do
|
26
|
-
before {
|
27
|
-
class MyBorder < TTY::Table::Border
|
28
|
-
def_border do
|
29
|
-
top '='
|
30
|
-
top_mid '*'
|
31
|
-
top_left '*'
|
32
|
-
top_right '*'
|
33
|
-
bottom '='
|
34
|
-
bottom_mid '*'
|
35
|
-
bottom_left '*'
|
36
|
-
bottom_right '*'
|
37
|
-
mid '='
|
38
|
-
mid_mid '*'
|
39
|
-
mid_left '*'
|
40
|
-
mid_right '*'
|
41
|
-
left '$'
|
42
|
-
center '$'
|
43
|
-
right '$'
|
44
|
-
end
|
45
|
-
end
|
46
|
-
}
|
47
|
-
|
48
|
-
it 'displays custom border' do
|
49
|
-
expect(table.render_with(MyBorder)).to eq unindent(<<-EOS)
|
50
|
-
*==*==*==*
|
51
|
-
$h1$h2$h3$
|
52
|
-
*==*==*==*
|
53
|
-
$a1$a2$a3$
|
54
|
-
$b1$b2$b3$
|
55
|
-
*==*==*==*
|
56
|
-
EOS
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
context 'with incomplete border' do
|
61
|
-
before {
|
62
|
-
class MyBorder < TTY::Table::Border
|
63
|
-
def_border do
|
64
|
-
bottom ' '
|
65
|
-
bottom_mid '*'
|
66
|
-
bottom_left '*'
|
67
|
-
bottom_right '*'
|
68
|
-
left '$'
|
69
|
-
center '$'
|
70
|
-
right '$'
|
71
|
-
end
|
72
|
-
end
|
73
|
-
}
|
74
|
-
|
75
|
-
it 'displays border' do
|
76
|
-
expect(table.render_with(MyBorder)).to eq unindent(<<-EOS)
|
77
|
-
$h1$h2$h3$
|
78
|
-
$a1$a2$a3$
|
79
|
-
$b1$b2$b3$
|
80
|
-
* * * *
|
81
|
-
EOS
|
82
|
-
end
|
83
|
-
end
|
84
|
-
|
85
|
-
context 'with renderer' do
|
86
|
-
before {
|
87
|
-
class MyBorder < TTY::Table::Border
|
88
|
-
def_border do
|
89
|
-
left '|'
|
90
|
-
right '|'
|
91
|
-
end
|
92
|
-
end
|
93
|
-
}
|
94
|
-
|
95
|
-
it 'displays border' do
|
96
|
-
result = table.render_with MyBorder do |renderer|
|
97
|
-
renderer.border.style = :red
|
98
|
-
end
|
99
|
-
expect(result).to eq unindent(<<-EOS)
|
100
|
-
\e[31m|\e[0mh1h2h3\e[31m|\e[0m
|
101
|
-
\e[31m|\e[0ma1a2a3\e[31m|\e[0m
|
102
|
-
\e[31m|\e[0mb1b2b3\e[31m|\e[0m
|
103
|
-
EOS
|
104
|
-
end
|
105
|
-
end
|
106
|
-
end # render_with
|
@@ -1,70 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe TTY::Table::Renderer::ASCII, 'coloring' do
|
6
|
-
|
7
|
-
let(:color) { Pastel.new(enabled: true) }
|
8
|
-
|
9
|
-
before { allow(Pastel).to receive(:new).and_return(color) }
|
10
|
-
|
11
|
-
context 'when border' do
|
12
|
-
it "colors border" do
|
13
|
-
table = TTY::Table.new header: ['header1', 'header2']
|
14
|
-
table << ['a1', 'a2']
|
15
|
-
table << ['b1', 'b2']
|
16
|
-
renderer = described_class.new(table)
|
17
|
-
renderer.border.style = :green
|
18
|
-
|
19
|
-
expect(renderer.render).to eq unindent(<<-EOS)
|
20
|
-
#{color.green('+-------+-------+')}
|
21
|
-
#{color.green('|')}header1#{color.green('|')}header2#{color.green('|')}
|
22
|
-
#{color.green('+-------+-------+')}
|
23
|
-
#{color.green('|')}a1 #{color.green('|')}a2 #{color.green('|')}
|
24
|
-
#{color.green('|')}b1 #{color.green('|')}b2 #{color.green('|')}
|
25
|
-
#{color.green('+-------+-------+')}
|
26
|
-
EOS
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
context 'when content' do
|
31
|
-
it "colors individual field" do
|
32
|
-
header = [color.yellow('header1'), 'header2']
|
33
|
-
table = TTY::Table.new header: header
|
34
|
-
table << [color.green.on_blue('a1'), 'a2']
|
35
|
-
table << ['b1', color.red.on_yellow('b2')]
|
36
|
-
renderer = described_class.new(table)
|
37
|
-
|
38
|
-
expect(renderer.render).to eq unindent(<<-EOS)
|
39
|
-
+-------+-------+
|
40
|
-
|#{color.yellow('header1')}|header2|
|
41
|
-
+-------+-------+
|
42
|
-
|#{color.green.on_blue('a1')} |a2 |
|
43
|
-
|b1 |#{color.red.on_yellow('b2')} |
|
44
|
-
+-------+-------+
|
45
|
-
EOS
|
46
|
-
end
|
47
|
-
|
48
|
-
it "colors multiline content" do
|
49
|
-
header = [color.yellow("Multi\nHeader"), 'header2']
|
50
|
-
table = TTY::Table.new header: header
|
51
|
-
table << [color.green.on_blue("Multi\nLine\nContent"), 'a2']
|
52
|
-
table << ['b1', color.red.on_yellow("Multi\nLine\nContent")]
|
53
|
-
renderer = described_class.new(table, multiline: true)
|
54
|
-
|
55
|
-
expect(renderer.render).to eq unindent(<<-EOS)
|
56
|
-
+-------+-------+
|
57
|
-
|#{color.yellow('Multi ')}|header2|
|
58
|
-
|#{color.yellow('Header')} | |
|
59
|
-
+-------+-------+
|
60
|
-
|#{color.green.on_blue('Multi ')}|a2 |
|
61
|
-
|#{color.green.on_blue('Line ')}| |
|
62
|
-
|#{color.green.on_blue('Content')}| |
|
63
|
-
|b1 |#{color.red.on_yellow("Multi ")}|
|
64
|
-
| |#{color.red.on_yellow("Line ")}|
|
65
|
-
| |#{color.red.on_yellow("Content")}|
|
66
|
-
+-------+-------+
|
67
|
-
EOS
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe TTY::Table::Renderer::ASCII, 'indentation' do
|
6
|
-
let(:header) { ['h1', 'h2', 'h3'] }
|
7
|
-
let(:rows) { [['a1', 'a2', 'a3'], ['b1', 'b2', 'b3']] }
|
8
|
-
let(:table) { TTY::Table.new(header, rows) }
|
9
|
-
let(:indent) { 2 }
|
10
|
-
let(:options) { {indent: indent } }
|
11
|
-
|
12
|
-
subject(:renderer) { described_class.new(table, options)}
|
13
|
-
|
14
|
-
context 'when default' do
|
15
|
-
it 'indents by value' do
|
16
|
-
expect(renderer.render).to eql <<-EOS.chomp
|
17
|
-
+--+--+--+
|
18
|
-
|h1|h2|h3|
|
19
|
-
+--+--+--+
|
20
|
-
|a1|a2|a3|
|
21
|
-
|b1|b2|b3|
|
22
|
-
+--+--+--+
|
23
|
-
EOS
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
context 'when each row' do
|
28
|
-
it 'indents by value' do
|
29
|
-
renderer.border.separator = :each_row
|
30
|
-
expect(renderer.render).to eql <<-EOS.chomp
|
31
|
-
+--+--+--+
|
32
|
-
|h1|h2|h3|
|
33
|
-
+--+--+--+
|
34
|
-
|a1|a2|a3|
|
35
|
-
+--+--+--+
|
36
|
-
|b1|b2|b3|
|
37
|
-
+--+--+--+
|
38
|
-
EOS
|
39
|
-
end
|
40
|
-
end
|
41
|
-
end
|
@@ -1,101 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe TTY::Table::Renderer::ASCII, 'multiline content' do
|
6
|
-
context 'with escaping' do
|
7
|
-
it "renders multiline as single line" do
|
8
|
-
rows = [["First", '1'], ["Multiline\nContent", '2'], ["Third", '3']]
|
9
|
-
table = TTY::Table.new rows
|
10
|
-
renderer = described_class.new(table, multiline: false)
|
11
|
-
expect(renderer.render).to eq unindent(<<-EOS)
|
12
|
-
+------------------+-+
|
13
|
-
|First |1|
|
14
|
-
|Multiline\\nContent|2|
|
15
|
-
|Third |3|
|
16
|
-
+------------------+-+
|
17
|
-
EOS
|
18
|
-
end
|
19
|
-
|
20
|
-
it "truncates multiline content" do
|
21
|
-
rows = [["First", '1'], ["Multiline\nContent", '2'], ["Third", '3']]
|
22
|
-
table = TTY::Table.new rows
|
23
|
-
renderer = described_class.new(table, multiline: false, column_widths: [8,1])
|
24
|
-
expect(renderer.render).to eq unindent(<<-EOS)
|
25
|
-
+--------+-+
|
26
|
-
|First |1|
|
27
|
-
|Multil… |2|
|
28
|
-
|Third |3|
|
29
|
-
+--------+-+
|
30
|
-
EOS
|
31
|
-
end
|
32
|
-
|
33
|
-
it "renders correctly multiline header as single line" do
|
34
|
-
header = ["Multi\nHeader", "header2"]
|
35
|
-
rows = [["First", '1'], ["Multiline\nContent", '2'], ["Third", '3']]
|
36
|
-
table = TTY::Table.new header, rows
|
37
|
-
renderer = described_class.new(table, multiline: false)
|
38
|
-
expect(renderer.render).to eq unindent(<<-EOS)
|
39
|
-
+------------------+-------+
|
40
|
-
|Multi\\nHeader |header2|
|
41
|
-
+------------------+-------+
|
42
|
-
|First |1 |
|
43
|
-
|Multiline\\nContent|2 |
|
44
|
-
|Third |3 |
|
45
|
-
+------------------+-------+
|
46
|
-
EOS
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
context 'without escaping' do
|
51
|
-
it "renders multiline" do
|
52
|
-
rows = [["First", '1'], ["Multi\nLine\nContent", '2'], ["Third", '3']]
|
53
|
-
table = TTY::Table.new rows
|
54
|
-
renderer = described_class.new(table, multiline: true)
|
55
|
-
expect(renderer.render).to eq unindent(<<-EOS)
|
56
|
-
+-------+-+
|
57
|
-
|First |1|
|
58
|
-
|Multi |2|
|
59
|
-
|Line | |
|
60
|
-
|Content| |
|
61
|
-
|Third |3|
|
62
|
-
+-------+-+
|
63
|
-
EOS
|
64
|
-
end
|
65
|
-
|
66
|
-
it "wraps multiline" do
|
67
|
-
rows = [["First", '1'], ["Multi\nLine\nContent", '2'], ["Third", '3']]
|
68
|
-
table = TTY::Table.new rows
|
69
|
-
renderer = described_class.new(table, multiline: true, column_widths: [5,1])
|
70
|
-
expect(renderer.render).to eq unindent(<<-EOS)
|
71
|
-
+-----+-+
|
72
|
-
|First|1|
|
73
|
-
|Multi|2|
|
74
|
-
|Line | |
|
75
|
-
|Conte| |
|
76
|
-
|nt | |
|
77
|
-
|Third|3|
|
78
|
-
+-----+-+
|
79
|
-
EOS
|
80
|
-
end
|
81
|
-
|
82
|
-
it "renders multilne header" do
|
83
|
-
header = ["Multi\nHeader", "header2"]
|
84
|
-
rows = [["First", '1'], ["Multi\nLine\nContent", '2'], ["Third", '3']]
|
85
|
-
table = TTY::Table.new header, rows
|
86
|
-
renderer = described_class.new(table, multiline: true)
|
87
|
-
expect(renderer.render).to eq unindent(<<-EOS)
|
88
|
-
+-------+-------+
|
89
|
-
|Multi |header2|
|
90
|
-
|Header | |
|
91
|
-
+-------+-------+
|
92
|
-
|First |1 |
|
93
|
-
|Multi |2 |
|
94
|
-
|Line | |
|
95
|
-
|Content| |
|
96
|
-
|Third |3 |
|
97
|
-
+-------+-------+
|
98
|
-
EOS
|
99
|
-
end
|
100
|
-
end
|
101
|
-
end
|
@@ -1,88 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe TTY::Table::Renderer::ASCII, 'padding' do
|
6
|
-
let(:header) { ['Field', 'Type', 'Null', 'Key', 'Default', 'Extra'] }
|
7
|
-
let(:rows) { [['id', 'int(11)', 'YES', 'nil', 'NULL', '']] }
|
8
|
-
let(:table) { TTY::Table.new(header, rows) }
|
9
|
-
|
10
|
-
subject(:renderer) { described_class.new(table, options) }
|
11
|
-
|
12
|
-
context 'with left & right padding' do
|
13
|
-
let(:options) { {padding: [0,1,0,1]} }
|
14
|
-
|
15
|
-
it 'pads each field' do
|
16
|
-
expect(renderer.render).to eql <<-EOS.chomp
|
17
|
-
+-------+---------+------+-----+---------+-------+
|
18
|
-
| Field | Type | Null | Key | Default | Extra |
|
19
|
-
+-------+---------+------+-----+---------+-------+
|
20
|
-
| id | int(11) | YES | nil | NULL | |
|
21
|
-
+-------+---------+------+-----+---------+-------+
|
22
|
-
EOS
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
context 'with top & bottom padding' do
|
27
|
-
let(:options) { {padding: [1,0,1,0], multiline: true} }
|
28
|
-
|
29
|
-
it 'pads each field' do
|
30
|
-
expect(renderer.render).to eql <<-EOS.chomp
|
31
|
-
+-----+-------+----+---+-------+-----+
|
32
|
-
| | | | | | |
|
33
|
-
|Field|Type |Null|Key|Default|Extra|
|
34
|
-
| | | | | | |
|
35
|
-
+-----+-------+----+---+-------+-----+
|
36
|
-
| | | | | | |
|
37
|
-
|id |int(11)|YES |nil|NULL | |
|
38
|
-
| | | | | | |
|
39
|
-
+-----+-------+----+---+-------+-----+
|
40
|
-
EOS
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
context 'with full padding' do
|
45
|
-
let(:options) { {padding: [1,1,1,1], multiline: true} }
|
46
|
-
|
47
|
-
it 'pads each field' do
|
48
|
-
expect(renderer.render).to eql unindent(<<-EOS)
|
49
|
-
+-------+---------+------+-----+---------+-------+
|
50
|
-
| | | | | | |
|
51
|
-
| Field | Type | Null | Key | Default | Extra |
|
52
|
-
| | | | | | |
|
53
|
-
+-------+---------+------+-----+---------+-------+
|
54
|
-
| | | | | | |
|
55
|
-
| id | int(11) | YES | nil | NULL | |
|
56
|
-
| | | | | | |
|
57
|
-
+-------+---------+------+-----+---------+-------+
|
58
|
-
EOS
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
context "with multiline content padding" do
|
63
|
-
it "pads around fields" do
|
64
|
-
padding = [1,2,1,2]
|
65
|
-
table = TTY::Table.new header: ['header1', 'header2']
|
66
|
-
table << ["a1\na1\na1",'a2']
|
67
|
-
table << ["b1","b2\nb2"]
|
68
|
-
renderer = described_class.new(table, padding: padding, multiline: true)
|
69
|
-
expect(renderer.render).to eql unindent(<<-EOS)
|
70
|
-
+-----------+-----------+
|
71
|
-
| | |
|
72
|
-
| header1 | header2 |
|
73
|
-
| | |
|
74
|
-
+-----------+-----------+
|
75
|
-
| | |
|
76
|
-
| a1 | a2 |
|
77
|
-
| a1 | |
|
78
|
-
| a1 | |
|
79
|
-
| | |
|
80
|
-
| | |
|
81
|
-
| b1 | b2 |
|
82
|
-
| | b2 |
|
83
|
-
| | |
|
84
|
-
+-----------+-----------+
|
85
|
-
EOS
|
86
|
-
end
|
87
|
-
end
|
88
|
-
end
|