tty-table 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.rspec +3 -0
- data/.ruby-version +1 -0
- data/.travis.yml +22 -0
- data/Gemfile +19 -0
- data/LICENSE.txt +22 -0
- data/README.md +389 -0
- data/Rakefile +8 -0
- data/benchmarks/speed.rb +36 -0
- data/lib/tty/table/border/ascii.rb +32 -0
- data/lib/tty/table/border/null.rb +37 -0
- data/lib/tty/table/border/row_line.rb +18 -0
- data/lib/tty/table/border/unicode.rb +32 -0
- data/lib/tty/table/border.rb +219 -0
- data/lib/tty/table/border_dsl.rb +251 -0
- data/lib/tty/table/border_options.rb +53 -0
- data/lib/tty/table/column_set.rb +121 -0
- data/lib/tty/table/columns.rb +170 -0
- data/lib/tty/table/empty.rb +26 -0
- data/lib/tty/table/error.rb +39 -0
- data/lib/tty/table/field.rb +139 -0
- data/lib/tty/table/header.rb +163 -0
- data/lib/tty/table/indentation.rb +52 -0
- data/lib/tty/table/operation/alignment_set.rb +103 -0
- data/lib/tty/table/operation/escape.rb +30 -0
- data/lib/tty/table/operation/filter.rb +34 -0
- data/lib/tty/table/operation/padding.rb +95 -0
- data/lib/tty/table/operation/truncation.rb +41 -0
- data/lib/tty/table/operation/wrapped.rb +43 -0
- data/lib/tty/table/operations.rb +69 -0
- data/lib/tty/table/options.rb +30 -0
- data/lib/tty/table/orientation/horizontal.rb +48 -0
- data/lib/tty/table/orientation/vertical.rb +38 -0
- data/lib/tty/table/orientation.rb +57 -0
- data/lib/tty/table/padder.rb +180 -0
- data/lib/tty/table/renderer/ascii.rb +16 -0
- data/lib/tty/table/renderer/basic.rb +294 -0
- data/lib/tty/table/renderer/color.rb +12 -0
- data/lib/tty/table/renderer/unicode.rb +21 -0
- data/lib/tty/table/renderer.rb +101 -0
- data/lib/tty/table/row.rb +248 -0
- data/lib/tty/table/transformation.rb +39 -0
- data/lib/tty/table/validatable.rb +64 -0
- data/lib/tty/table/version.rb +7 -0
- data/lib/tty/table.rb +469 -0
- data/lib/tty-table.rb +48 -0
- data/spec/spec_helper.rb +51 -0
- data/spec/unit/access_spec.rb +86 -0
- data/spec/unit/add_row_spec.rb +28 -0
- data/spec/unit/border/ascii/rendering_spec.rb +90 -0
- data/spec/unit/border/new_spec.rb +27 -0
- data/spec/unit/border/null/rendering_spec.rb +130 -0
- data/spec/unit/border/options/from_spec.rb +38 -0
- data/spec/unit/border/options/new_spec.rb +14 -0
- data/spec/unit/border/unicode/rendering_spec.rb +63 -0
- data/spec/unit/border_options/new_spec.rb +20 -0
- data/spec/unit/border_options/update_spec.rb +18 -0
- data/spec/unit/column_set/extract_widths_spec.rb +15 -0
- data/spec/unit/column_set/total_width_spec.rb +15 -0
- data/spec/unit/column_set/widths_from_spec.rb +51 -0
- data/spec/unit/columns/enforce_spec.rb +67 -0
- data/spec/unit/columns/widths_spec.rb +35 -0
- data/spec/unit/data_spec.rb +14 -0
- data/spec/unit/each_spec.rb +41 -0
- data/spec/unit/each_with_index_spec.rb +57 -0
- data/spec/unit/empty_spec.rb +23 -0
- data/spec/unit/eql_spec.rb +34 -0
- data/spec/unit/field/equality_spec.rb +51 -0
- data/spec/unit/field/length_spec.rb +21 -0
- data/spec/unit/field/lines_spec.rb +21 -0
- data/spec/unit/field/new_spec.rb +29 -0
- data/spec/unit/field/width_spec.rb +23 -0
- data/spec/unit/filter_spec.rb +23 -0
- data/spec/unit/header/call_spec.rb +30 -0
- data/spec/unit/header/color_spec.rb +19 -0
- data/spec/unit/header/equality_spec.rb +51 -0
- data/spec/unit/header/height_spec.rb +27 -0
- data/spec/unit/header/new_spec.rb +25 -0
- data/spec/unit/header/set_spec.rb +20 -0
- data/spec/unit/header/to_ary_spec.rb +14 -0
- data/spec/unit/header_spec.rb +13 -0
- data/spec/unit/indentation/insert_indent_spec.rb +27 -0
- data/spec/unit/initialize_spec.rb +88 -0
- data/spec/unit/operation/alignment_set/call_spec.rb +39 -0
- data/spec/unit/operation/alignment_set/each_spec.rb +17 -0
- data/spec/unit/operation/alignment_set/new_spec.rb +27 -0
- data/spec/unit/operation/alignment_set/to_ary_spec.rb +14 -0
- data/spec/unit/operation/escape/call_spec.rb +16 -0
- data/spec/unit/operation/filter/call_spec.rb +17 -0
- data/spec/unit/operation/truncation/call_spec.rb +32 -0
- data/spec/unit/operation/wrapped/call_spec.rb +33 -0
- data/spec/unit/operations/new_spec.rb +30 -0
- data/spec/unit/options/access_spec.rb +14 -0
- data/spec/unit/options_spec.rb +25 -0
- data/spec/unit/orientation_spec.rb +145 -0
- data/spec/unit/padder/parse_spec.rb +45 -0
- data/spec/unit/padder/to_s_spec.rb +14 -0
- data/spec/unit/padding_spec.rb +120 -0
- data/spec/unit/properties_spec.rb +25 -0
- data/spec/unit/render_spec.rb +63 -0
- data/spec/unit/render_with_spec.rb +106 -0
- data/spec/unit/renderer/ascii/indentation_spec.rb +41 -0
- data/spec/unit/renderer/ascii/padding_spec.rb +61 -0
- data/spec/unit/renderer/ascii/render_spec.rb +68 -0
- data/spec/unit/renderer/ascii/resizing_spec.rb +114 -0
- data/spec/unit/renderer/ascii/separator_spec.rb +28 -0
- data/spec/unit/renderer/basic/alignment_spec.rb +88 -0
- data/spec/unit/renderer/basic/coloring_spec.rb +46 -0
- data/spec/unit/renderer/basic/extract_column_widths_spec.rb +28 -0
- data/spec/unit/renderer/basic/filter_spec.rb +53 -0
- data/spec/unit/renderer/basic/indentation_spec.rb +48 -0
- data/spec/unit/renderer/basic/multiline_content_spec.rb +135 -0
- data/spec/unit/renderer/basic/new_spec.rb +26 -0
- data/spec/unit/renderer/basic/options_spec.rb +52 -0
- data/spec/unit/renderer/basic/padding_spec.rb +52 -0
- data/spec/unit/renderer/basic/render_spec.rb +57 -0
- data/spec/unit/renderer/basic/resizing_spec.rb +96 -0
- data/spec/unit/renderer/basic/separator_spec.rb +43 -0
- data/spec/unit/renderer/basic/truncation_spec.rb +35 -0
- data/spec/unit/renderer/basic/wrapping_spec.rb +40 -0
- data/spec/unit/renderer/border_spec.rb +104 -0
- data/spec/unit/renderer/render_spec.rb +36 -0
- data/spec/unit/renderer/select_spec.rb +22 -0
- data/spec/unit/renderer/style_spec.rb +72 -0
- data/spec/unit/renderer/unicode/indentation_spec.rb +41 -0
- data/spec/unit/renderer/unicode/padding_spec.rb +61 -0
- data/spec/unit/renderer/unicode/render_spec.rb +68 -0
- data/spec/unit/renderer/unicode/separator_spec.rb +26 -0
- data/spec/unit/renderer_spec.rb +19 -0
- data/spec/unit/rotate_spec.rb +86 -0
- data/spec/unit/row/access_spec.rb +25 -0
- data/spec/unit/row/call_spec.rb +45 -0
- data/spec/unit/row/data_spec.rb +26 -0
- data/spec/unit/row/each_spec.rb +31 -0
- data/spec/unit/row/equality_spec.rb +73 -0
- data/spec/unit/row/height_spec.rb +27 -0
- data/spec/unit/row/new_spec.rb +41 -0
- data/spec/unit/row/to_ary_spec.rb +14 -0
- data/spec/unit/to_s_spec.rb +63 -0
- data/spec/unit/transformation/extract_tuples_spec.rb +35 -0
- data/spec/unit/validatable/validate_options_spec.rb +33 -0
- data/spec/unit/validatable_spec.rb +32 -0
- data/tasks/console.rake +10 -0
- data/tasks/coverage.rake +11 -0
- data/tasks/spec.rake +29 -0
- data/tty-table.gemspec +28 -0
- metadata +371 -0
@@ -0,0 +1,88 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table, '#initialize' do
|
6
|
+
let(:header) { ['Header1', 'Header2'] }
|
7
|
+
let(:rows) { [['a1', 'a2'], ['b1', 'b2']] }
|
8
|
+
|
9
|
+
it { is_expected.to be_kind_of(Enumerable) }
|
10
|
+
|
11
|
+
it { is_expected.to be_kind_of(Comparable) }
|
12
|
+
|
13
|
+
it { expect(Enumerable === subject).to eq(true) }
|
14
|
+
|
15
|
+
context 'with rows only' do
|
16
|
+
it 'initializes with rows as arguments' do
|
17
|
+
table = TTY::Table[*rows]
|
18
|
+
expect(table.to_a).to eql(rows)
|
19
|
+
end
|
20
|
+
|
21
|
+
it 'initializes with rows' do
|
22
|
+
table = TTY::Table.new rows
|
23
|
+
expect(table.to_a).to eql(rows)
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'initializes table rows as an option' do
|
27
|
+
table = TTY::Table.new rows: rows
|
28
|
+
expect(table.to_a).to eq(rows)
|
29
|
+
end
|
30
|
+
|
31
|
+
it 'initializes table rows in a block with param' do
|
32
|
+
table = TTY::Table.new do |t|
|
33
|
+
t << rows[0]
|
34
|
+
t << rows[1]
|
35
|
+
end
|
36
|
+
expect(table.to_a).to eq(rows)
|
37
|
+
end
|
38
|
+
|
39
|
+
it 'initializes table and adds rows' do
|
40
|
+
table = TTY::Table.new
|
41
|
+
table << rows[0]
|
42
|
+
table << rows[1]
|
43
|
+
expect(table.to_a).to eq(rows)
|
44
|
+
end
|
45
|
+
|
46
|
+
it 'chains rows' do
|
47
|
+
table = TTY::Table.new
|
48
|
+
table << rows[0] << rows[1]
|
49
|
+
expect(table.to_a).to eq(rows)
|
50
|
+
end
|
51
|
+
|
52
|
+
context 'with data as hash' do
|
53
|
+
let(:data) { [ {'Header1' => ['a1','a2'], 'Header2' => ['b1', 'b2'] }] }
|
54
|
+
|
55
|
+
it 'extracts rows' do
|
56
|
+
table = TTY::Table.new data
|
57
|
+
expect(table.to_a).to include rows[0]
|
58
|
+
expect(table.to_a).to include rows[1]
|
59
|
+
end
|
60
|
+
|
61
|
+
it 'extracts header' do
|
62
|
+
table = TTY::Table.new data
|
63
|
+
expect(table.header).to include header[0]
|
64
|
+
expect(table.header).to include header[1]
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
context 'with header and rows' do
|
70
|
+
it 'initializes header as an option' do
|
71
|
+
table = TTY::Table.new header: header
|
72
|
+
expect(table.header).to eql(header)
|
73
|
+
end
|
74
|
+
|
75
|
+
it 'initializes table rows as an argument' do
|
76
|
+
table = TTY::Table.new header, rows
|
77
|
+
expect(table.header).to eql(header)
|
78
|
+
expect(table.rows).to eql(rows)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
context 'coercion' do
|
83
|
+
it 'converts row arguments from hash to array' do
|
84
|
+
table = TTY::Table.new rows: {a: 1, b: 2}
|
85
|
+
expect(table.to_a).to include [:a, 1 ]
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table::Operation::AlignmentSet, '#call' do
|
6
|
+
let(:object) { described_class.new alignments, widths }
|
7
|
+
let(:value) { 'a1' }
|
8
|
+
let(:field) { TTY::Table::Field.new(value)}
|
9
|
+
|
10
|
+
subject { object.call(field, 0, 0) }
|
11
|
+
|
12
|
+
context 'aligned with column widths and no alignments' do
|
13
|
+
let(:alignments) { [] }
|
14
|
+
let(:widths) { [4, 4] }
|
15
|
+
|
16
|
+
it { is_expected.to eq("#{value} ") }
|
17
|
+
end
|
18
|
+
|
19
|
+
context 'aligned with column widths and alignments' do
|
20
|
+
let(:alignments) { [:right, :left] }
|
21
|
+
let(:widths) { [4, 4] }
|
22
|
+
|
23
|
+
it { is_expected.to eq(" #{value}") }
|
24
|
+
end
|
25
|
+
|
26
|
+
context 'aligned with no column widths and no alignments' do
|
27
|
+
let(:alignments) { [] }
|
28
|
+
let(:widths) { [] }
|
29
|
+
|
30
|
+
it { is_expected.to eq("#{value}") }
|
31
|
+
end
|
32
|
+
|
33
|
+
context 'aligned with no column widths and alignments' do
|
34
|
+
let(:alignments) { [:right, :left] }
|
35
|
+
let(:widths) { [] }
|
36
|
+
|
37
|
+
it { is_expected.to eq("#{value}") }
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table::Operation::AlignmentSet, '#each' do
|
6
|
+
let(:alignments) { [:left, :center, :right] }
|
7
|
+
let(:yields) { [] }
|
8
|
+
let(:object) { described_class.new alignments }
|
9
|
+
|
10
|
+
subject { object.each { |alignment| yields << alignment } }
|
11
|
+
|
12
|
+
it 'yields each alignment' do
|
13
|
+
expect { subject }.to change { yields.dup }.
|
14
|
+
from([]).
|
15
|
+
to(alignments)
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table::Operation::AlignmentSet, '#new' do
|
6
|
+
let(:object) { described_class }
|
7
|
+
|
8
|
+
subject { object.new(argument) }
|
9
|
+
|
10
|
+
context 'with no argument' do
|
11
|
+
let(:argument) { [] }
|
12
|
+
|
13
|
+
it { is_expected.to be_kind_of(Enumerable) }
|
14
|
+
|
15
|
+
it { is_expected.to be_instance_of(object) }
|
16
|
+
|
17
|
+
it { expect(subject.alignments).to eq([]) }
|
18
|
+
end
|
19
|
+
|
20
|
+
context 'with argument' do
|
21
|
+
let(:argument) { [:center, :left] }
|
22
|
+
|
23
|
+
it { is_expected.to be_instance_of(object) }
|
24
|
+
|
25
|
+
it { expect(subject.alignments).to eq(argument) }
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table::Operation::AlignmentSet, '#to_ary' do
|
6
|
+
let(:argument) { [:center, :left] }
|
7
|
+
let(:object) { described_class.new argument }
|
8
|
+
|
9
|
+
subject { object.to_ary }
|
10
|
+
|
11
|
+
it { is_expected.to be_instance_of(Array) }
|
12
|
+
|
13
|
+
it { is_expected.to eq(argument) }
|
14
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table::Operation::Escape, '#call' do
|
6
|
+
let(:object) { described_class }
|
7
|
+
let(:text) { "太丸\nゴシ\tック体\r" }
|
8
|
+
let(:field) { TTY::Table::Field.new(text) }
|
9
|
+
|
10
|
+
subject { object.new }
|
11
|
+
|
12
|
+
it 'changes field value' do
|
13
|
+
subject.call(field, 0, 0)
|
14
|
+
expect(field.value).to eql("太丸\\nゴシ\\tック体\\r")
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table::Operation::Filter, '#call' do
|
6
|
+
let(:object) { described_class }
|
7
|
+
let(:field) { TTY::Table::Field.new('a1') }
|
8
|
+
let(:filter) { Proc.new { |val, row, col| 'new' } }
|
9
|
+
let(:value) { 'new' }
|
10
|
+
|
11
|
+
subject { object.new(filter) }
|
12
|
+
|
13
|
+
it 'changes field value' do
|
14
|
+
subject.call(field, 0, 0)
|
15
|
+
expect(field.value).to eql(value)
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table::Operation::Truncation, '#call' do
|
6
|
+
let(:object) { described_class.new column_widths }
|
7
|
+
let(:text) { '太丸ゴシック体' }
|
8
|
+
let(:field) { TTY::Table::Field.new(text) }
|
9
|
+
|
10
|
+
context 'without column width' do
|
11
|
+
let(:column_widths) { [] }
|
12
|
+
|
13
|
+
it "truncates string" do
|
14
|
+
object.call(field, 0, 0)
|
15
|
+
expect(field.value).to eql(text)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
context 'with column width ' do
|
20
|
+
let(:column_widths) { [3, 6] }
|
21
|
+
|
22
|
+
it "truncates string for 0 column" do
|
23
|
+
object.call(field, 0, 0)
|
24
|
+
expect(field.value).to eql('太丸…')
|
25
|
+
end
|
26
|
+
|
27
|
+
it "truncates string for 1 column" do
|
28
|
+
object.call(field, 0, 1)
|
29
|
+
expect(field.value).to eql('太丸ゴシッ…')
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table::Operation::Wrapped, '#call' do
|
6
|
+
let(:padding) { TTY::Table::Padder.parse }
|
7
|
+
let(:object) { described_class.new(column_widths, padding) }
|
8
|
+
let(:text) { 'ラドクリフ、マラソン五輪代表に1万m出場にも含み' }
|
9
|
+
let(:field) { TTY::Table::Field.new(text) }
|
10
|
+
|
11
|
+
context 'without column width' do
|
12
|
+
let(:column_widths) { [] }
|
13
|
+
|
14
|
+
it "doesn't wrap string" do
|
15
|
+
object.call(field, 0, 0)
|
16
|
+
expect(field.value).to eql(text)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
context 'with column width' do
|
21
|
+
let(:column_widths) { [12, 14] }
|
22
|
+
|
23
|
+
it "wraps string for 0 column" do
|
24
|
+
object.call(field, 0, 0)
|
25
|
+
expect(field.value).to eql("ラドクリフ、マラソン五輪\n代表に1万m出場にも含み")
|
26
|
+
end
|
27
|
+
|
28
|
+
it "wraps string for 1 column" do
|
29
|
+
object.call(field, 0, 1)
|
30
|
+
expect(field.value).to eql("ラドクリフ、マラソン五輪代表\nに1万m出場にも含み")
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table::Operations, '#new' do
|
6
|
+
let(:object) { described_class }
|
7
|
+
let(:row) { [1,2,3] }
|
8
|
+
let(:table) { TTY::Table.new :rows => [row] }
|
9
|
+
let(:callable) {
|
10
|
+
Class.new do
|
11
|
+
def call(val, row, col)
|
12
|
+
val.value= val.value + 1
|
13
|
+
end
|
14
|
+
end
|
15
|
+
}
|
16
|
+
let(:instance) { callable.new }
|
17
|
+
|
18
|
+
subject { object.new table }
|
19
|
+
|
20
|
+
before { subject.add(:alignment, instance) }
|
21
|
+
|
22
|
+
it 'stores away operations' do
|
23
|
+
expect(subject.operations[:alignment]).to include(instance)
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'runs selected operations' do
|
27
|
+
subject.run_operations(:alignment)
|
28
|
+
expect(table.data[0]).to eql([2,3,4])
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
# describe TTY::Table::Options, 'options' do
|
6
|
+
# let(:object) { described_class }
|
7
|
+
#
|
8
|
+
# subject { described_class.new({'a' => 1, :b => 2}) }
|
9
|
+
#
|
10
|
+
# it '' do
|
11
|
+
# pending
|
12
|
+
# expect(subject[:a]).to eql(1)
|
13
|
+
# end
|
14
|
+
# end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table, 'options' do
|
6
|
+
let(:rows) { [['a1', 'a2'], ['b1', 'b2']] }
|
7
|
+
let(:widths) { nil }
|
8
|
+
let(:aligns) { [] }
|
9
|
+
let(:object) { described_class }
|
10
|
+
let(:options) {
|
11
|
+
{
|
12
|
+
column_widths: widths,
|
13
|
+
column_aligns: aligns,
|
14
|
+
renderer: :basic
|
15
|
+
}
|
16
|
+
}
|
17
|
+
|
18
|
+
subject(:table) { object.new rows, options }
|
19
|
+
|
20
|
+
it { expect(table.header).to be_nil }
|
21
|
+
|
22
|
+
it { expect(table.rows).to eq(rows) }
|
23
|
+
|
24
|
+
it { expect(table.orientation).to be_kind_of TTY::Table::Orientation::Horizontal }
|
25
|
+
end
|
@@ -0,0 +1,145 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table, 'orientation' do
|
6
|
+
let(:header) { ['h1', 'h2', 'h3'] }
|
7
|
+
let(:rows) { [['a1', 'a2', 'a3'], ['b1', 'b2', 'b3']] }
|
8
|
+
let(:options) { { :orientation => orientation } }
|
9
|
+
|
10
|
+
subject { described_class.new(header, rows, options) }
|
11
|
+
|
12
|
+
context 'when illegal option' do
|
13
|
+
let(:orientation) { :accross }
|
14
|
+
|
15
|
+
it { expect { subject }.to raise_error(TTY::Table::InvalidOrientationError) }
|
16
|
+
end
|
17
|
+
|
18
|
+
context 'when horizontal' do
|
19
|
+
let(:orientation) { :horizontal }
|
20
|
+
|
21
|
+
it { expect(subject.orientation).to be_kind_of TTY::Table::Orientation }
|
22
|
+
|
23
|
+
it { expect(subject.orientation.name).to eql(:horizontal) }
|
24
|
+
|
25
|
+
it { expect(subject.header).to eql(header) }
|
26
|
+
|
27
|
+
it 'preserves original rows' do
|
28
|
+
expect(subject.to_a).to eql(subject.data)
|
29
|
+
end
|
30
|
+
|
31
|
+
context 'without border' do
|
32
|
+
it 'displays table' do
|
33
|
+
expect(subject.to_s).to eq <<-EOS.normalize
|
34
|
+
h1 h2 h3
|
35
|
+
a1 a2 a3
|
36
|
+
b1 b2 b3
|
37
|
+
EOS
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
context 'with border' do
|
42
|
+
let(:renderer) { :ascii }
|
43
|
+
|
44
|
+
it 'diplays table' do
|
45
|
+
expect(subject.render(renderer)).to eq <<-EOS.normalize
|
46
|
+
+--+--+--+
|
47
|
+
|h1|h2|h3|
|
48
|
+
+--+--+--+
|
49
|
+
|a1|a2|a3|
|
50
|
+
|b1|b2|b3|
|
51
|
+
+--+--+--+
|
52
|
+
EOS
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
context 'when vertical' do
|
58
|
+
let(:orientation) { :vertical }
|
59
|
+
|
60
|
+
it { expect(subject.orientation).to be_kind_of TTY::Table::Orientation }
|
61
|
+
|
62
|
+
it { expect(subject.orientation.name).to eql :vertical }
|
63
|
+
|
64
|
+
it { expect(subject.header).to be_empty }
|
65
|
+
|
66
|
+
context 'with header' do
|
67
|
+
it 'rotates original rows' do
|
68
|
+
rotated_rows = [['h1','a1'],['h2','a2'],['h3','a3'], ['h1','b1'],['h2','b2'],['h3','b3']]
|
69
|
+
expect(subject.to_a).to eql rotated_rows
|
70
|
+
end
|
71
|
+
|
72
|
+
context 'without border' do
|
73
|
+
it 'displays table' do
|
74
|
+
expect(subject.to_s).to eq <<-EOS.normalize
|
75
|
+
h1 a1
|
76
|
+
h2 a2
|
77
|
+
h3 a3
|
78
|
+
h1 b1
|
79
|
+
h2 b2
|
80
|
+
h3 b3
|
81
|
+
EOS
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
context 'with border' do
|
86
|
+
let(:renderer) { :ascii }
|
87
|
+
|
88
|
+
it 'diplays table' do
|
89
|
+
expect(subject.render(renderer)).to eq <<-EOS.normalize
|
90
|
+
+--+--+
|
91
|
+
|h1|a1|
|
92
|
+
|h2|a2|
|
93
|
+
|h3|a3|
|
94
|
+
|h1|b1|
|
95
|
+
|h2|b2|
|
96
|
+
|h3|b3|
|
97
|
+
+--+--+
|
98
|
+
EOS
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
context 'without header' do
|
104
|
+
let(:header) { nil }
|
105
|
+
|
106
|
+
it 'rotates original rows' do
|
107
|
+
rotated_rows = [
|
108
|
+
['1','a1'],['2','a2'],['3','a3'],
|
109
|
+
['1','b1'],['2','b2'],['3','b3']
|
110
|
+
]
|
111
|
+
expect(subject.to_a).to eql rotated_rows
|
112
|
+
end
|
113
|
+
|
114
|
+
context 'without border' do
|
115
|
+
it 'displays table' do
|
116
|
+
expect(subject.to_s).to eq <<-EOS.normalize
|
117
|
+
1 a1
|
118
|
+
2 a2
|
119
|
+
3 a3
|
120
|
+
1 b1
|
121
|
+
2 b2
|
122
|
+
3 b3
|
123
|
+
EOS
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
context 'with border' do
|
128
|
+
let(:renderer) { :ascii }
|
129
|
+
|
130
|
+
it 'diplays table' do
|
131
|
+
expect(subject.render(renderer)).to eq <<-EOS.normalize
|
132
|
+
+-+--+
|
133
|
+
|1|a1|
|
134
|
+
|2|a2|
|
135
|
+
|3|a3|
|
136
|
+
|1|b1|
|
137
|
+
|2|b2|
|
138
|
+
|3|b3|
|
139
|
+
+-+--+
|
140
|
+
EOS
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end # orientation
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table::Padder, '#parse' do
|
6
|
+
let(:object) { described_class }
|
7
|
+
|
8
|
+
subject { object.parse(value).padding }
|
9
|
+
|
10
|
+
context 'when self' do
|
11
|
+
let(:value) { described_class.new([]) }
|
12
|
+
|
13
|
+
it { expect(subject).to eq([]) }
|
14
|
+
end
|
15
|
+
|
16
|
+
context 'when number' do
|
17
|
+
let(:value) { 5 }
|
18
|
+
|
19
|
+
it { expect(subject).to eq([5,5,5,5]) }
|
20
|
+
end
|
21
|
+
|
22
|
+
context 'when nil' do
|
23
|
+
let(:value) { nil }
|
24
|
+
|
25
|
+
it { expect(subject).to eq([]) }
|
26
|
+
end
|
27
|
+
|
28
|
+
context 'when 2-element array' do
|
29
|
+
let(:value) { [2,3] }
|
30
|
+
|
31
|
+
it { expect(subject).to eq([2,3,2,3]) }
|
32
|
+
end
|
33
|
+
|
34
|
+
context 'when 4-element array' do
|
35
|
+
let(:value) { [1,2,3,4] }
|
36
|
+
|
37
|
+
it { expect(subject).to eq([1,2,3,4]) }
|
38
|
+
end
|
39
|
+
|
40
|
+
context 'when unkown' do
|
41
|
+
let(:value) { :unkown }
|
42
|
+
|
43
|
+
it { expect { subject }.to raise_error }
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table::Padder, '.to_s' do
|
6
|
+
let(:object) { described_class }
|
7
|
+
let(:value) { [1,2,3,4] }
|
8
|
+
|
9
|
+
subject { object.parse(value) }
|
10
|
+
|
11
|
+
it 'prints string representation' do
|
12
|
+
expect(subject.to_s).to eq('#<TTY::Table::Padder padding=[1, 2, 3, 4]>')
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,120 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe TTY::Table, 'padding' 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
|
+
|
10
|
+
it 'sets specific padding' do
|
11
|
+
expect(table.render(:ascii) { |renderer|
|
12
|
+
renderer.multiline = true
|
13
|
+
renderer.padding.right = 2
|
14
|
+
renderer.padding.top = 1
|
15
|
+
}).to eq <<-EOS.normalize
|
16
|
+
+----+----+----+
|
17
|
+
| | | |
|
18
|
+
|h1 |h2 |h3 |
|
19
|
+
+----+----+----+
|
20
|
+
| | | |
|
21
|
+
|a1 |a2 |a3 |
|
22
|
+
| | | |
|
23
|
+
|b1 |b2 |b3 |
|
24
|
+
+----+----+----+
|
25
|
+
EOS
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'sets padding for all' do
|
29
|
+
expect(table.render(:ascii) { |renderer|
|
30
|
+
renderer.multiline = true
|
31
|
+
renderer.padding= [1,2,1,2]
|
32
|
+
}).to eq <<-EOS.normalize
|
33
|
+
+------+------+------+
|
34
|
+
| | | |
|
35
|
+
| h1 | h2 | h3 |
|
36
|
+
| | | |
|
37
|
+
+------+------+------+
|
38
|
+
| | | |
|
39
|
+
| a1 | a2 | a3 |
|
40
|
+
| | | |
|
41
|
+
| | | |
|
42
|
+
| b1 | b2 | b3 |
|
43
|
+
| | | |
|
44
|
+
+------+------+------+
|
45
|
+
EOS
|
46
|
+
end
|
47
|
+
|
48
|
+
context 'with column width' do
|
49
|
+
let(:column_widths) { [4,4,4] }
|
50
|
+
|
51
|
+
it 'sets padding for all' do
|
52
|
+
expect(table.render(:ascii) { |renderer|
|
53
|
+
renderer.column_widths = column_widths
|
54
|
+
renderer.multiline = true
|
55
|
+
renderer.padding= [1,2,1,2]
|
56
|
+
}).to eq <<-EOS.normalize
|
57
|
+
+--------+--------+--------+
|
58
|
+
| | | |
|
59
|
+
| h1 | h2 | h3 |
|
60
|
+
| | | |
|
61
|
+
+--------+--------+--------+
|
62
|
+
| | | |
|
63
|
+
| a1 | a2 | a3 |
|
64
|
+
| | | |
|
65
|
+
| | | |
|
66
|
+
| b1 | b2 | b3 |
|
67
|
+
| | | |
|
68
|
+
+--------+--------+--------+
|
69
|
+
EOS
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
context 'with multi line text' do
|
74
|
+
let(:header) { ['head1', 'head2'] }
|
75
|
+
let(:rows) { [["Multi\nLine\nContent", "Text\nthat\nwraps",],
|
76
|
+
["Some\nother\ntext", 'Simple']] }
|
77
|
+
|
78
|
+
context 'when wrapped' do
|
79
|
+
it 'sets padding for all' do
|
80
|
+
expect(table.render(:ascii) { |renderer|
|
81
|
+
renderer.multiline = true
|
82
|
+
renderer.padding= [1,2,1,2]
|
83
|
+
}).to eq <<-EOS.normalize
|
84
|
+
+-----------+----------+
|
85
|
+
| | |
|
86
|
+
| head1 | head2 |
|
87
|
+
| | |
|
88
|
+
+-----------+----------+
|
89
|
+
| | |
|
90
|
+
| Multi | Text |
|
91
|
+
| Line | that |
|
92
|
+
| Content | wraps |
|
93
|
+
| | |
|
94
|
+
| | |
|
95
|
+
| Some | Simple |
|
96
|
+
| other | |
|
97
|
+
| text | |
|
98
|
+
| | |
|
99
|
+
+-----------+----------+
|
100
|
+
EOS
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
context 'when escaped' do
|
105
|
+
it 'sets padding for all' do
|
106
|
+
expect(table.render(:ascii) { |renderer|
|
107
|
+
renderer.multiline = false
|
108
|
+
renderer.padding= [0,2,0,2]
|
109
|
+
}).to eq <<-EOS.normalize
|
110
|
+
+------------------------+---------------------+
|
111
|
+
| head1 | head2 |
|
112
|
+
+------------------------+---------------------+
|
113
|
+
| Multi\\nLine\\nContent | Text\\nthat\\nwraps |
|
114
|
+
| Some\\nother\\ntext | Simple |
|
115
|
+
+------------------------+---------------------+
|
116
|
+
EOS
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|