summaryrefslogtreecommitdiffhomepage
path: root/test/workbook/tc_workbook.rb
blob: 51fe3976e31bd323da0167489c1edbfa5afedf5d (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
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
# frozen_string_literal: true

require 'tc_helper'

class TestWorkbook < Test::Unit::TestCase
  def setup
    p = Axlsx::Package.new
    @wb = p.workbook
  end

  def teardown; end

  def test_worksheet_users_xml_space
    sheet = @wb.add_worksheet(name: 'foo')
    ws_xml = Nokogiri::XML(sheet.to_xml_string)

    assert(ws_xml.xpath("//xmlns:worksheet/@xml:space='preserve'"))

    @wb.xml_space = :default
    ws_xml = Nokogiri::XML(sheet.to_xml_string)

    assert(ws_xml.xpath("//xmlns:worksheet/@xml:space='default'"))
  end

  def test_xml_space
    assert_equal(:preserve, @wb.xml_space)
    @wb.xml_space = :default

    assert_equal(:default, @wb.xml_space)
    assert_raise(ArgumentError) { @wb.xml_space = :none }
  end

  def test_no_autowidth
    assert(@wb.use_autowidth)
    assert_raise(ArgumentError) { @wb.use_autowidth = 0.1 }
    assert_nothing_raised { @wb.use_autowidth = false }
    refute(@wb.use_autowidth)
  end

  def test_is_reversed
    assert_nil(@wb.is_reversed)
    assert_raise(ArgumentError) { @wb.is_reversed = 0.1 }
    assert_nothing_raised { @wb.is_reversed = true }
    assert(@wb.use_autowidth)
  end

  def test_sheet_by_name_retrieval
    @wb.add_worksheet(name: 'foo')
    @wb.add_worksheet(name: 'bar')
    @wb.add_worksheet(name: "testin'")

    assert_equal('foo', @wb.sheet_by_name('foo').name)
    assert_equal("testin&apos;", @wb.sheet_by_name("testin'").name)
  end

  def test_worksheet_empty_name
    assert_raise(ArgumentError) { @wb.add_worksheet(name: '') }
  end

  def test_date1904
    assert_equal(Axlsx::Workbook.date1904, @wb.date1904)
    @wb.date1904 = :false

    assert_equal(Axlsx::Workbook.date1904, @wb.date1904)
    Axlsx::Workbook.date1904 = :true

    assert_equal(Axlsx::Workbook.date1904, @wb.date1904)
  end

  def test_add_defined_name
    @wb.add_defined_name 'Sheet1!1:1', name: '_xlnm.Print_Titles', hidden: true

    assert_equal(1, @wb.defined_names.size)
  end

  def test_add_view
    @wb.add_view visibility: :hidden, window_width: 800

    assert_equal(1, @wb.views.size)
  end

  def test_shared_strings
    assert_nil(@wb.use_shared_strings)
    assert_raise(ArgumentError) { @wb.use_shared_strings = 'bpb' }
    assert_nothing_raised { @wb.use_shared_strings = :true }
  end

  def test_add_worksheet
    assert_empty(@wb.worksheets, "worbook has no worksheets by default")
    ws = @wb.add_worksheet(name: "bob")

    assert_equal(1, @wb.worksheets.size, "add_worksheet adds a worksheet!")
    assert_equal(@wb.worksheets.first, ws, "the worksheet returned is the worksheet added")
    assert_equal("bob", ws.name, "name option gets passed to worksheet")
  end

  def test_insert_worksheet
    @wb.add_worksheet(name: 'A')
    @wb.add_worksheet(name: 'B')
    ws3 = @wb.insert_worksheet(0, name: 'C')

    assert_equal(ws3.name, @wb.worksheets.first.name)
  end

  def test_relationships
    # current relationship size is 1 due to style relation
    assert_equal(1, @wb.relationships.size)
    @wb.add_worksheet

    assert_equal(2, @wb.relationships.size)
    @wb.use_shared_strings = true

    assert_equal(3, @wb.relationships.size)
  end

  def test_to_xml
    schema = Nokogiri::XML::Schema(File.open(Axlsx::SML_XSD))
    doc = Nokogiri::XML(@wb.to_xml_string)
    errors = []
    schema.validate(doc).each do |error|
      errors.push error
      puts error.message
    end

    assert_empty(errors, "error free validation")
  end

  def test_to_xml_reversed
    @wb.is_reversed = true
    @wb.add_worksheet(name: 'first')
    second = @wb.add_worksheet(name: 'second')
    doc = Nokogiri::XML(@wb.to_xml_string)

    assert_equal second.name, doc.xpath('//xmlns:workbook/xmlns:sheets/*[1]/@name').to_s
  end

  def test_range_requires_valid_sheet
    ws = @wb.add_worksheet name: 'fish'
    ws.add_row [1, 2, 3]
    ws.add_row [4, 5, 6]
    assert_raise(ArgumentError, "no sheet name part") { @wb["A1:C2"] }
    assert_equal(6, @wb['fish!A1:C2'].size)
  end

  def test_to_xml_adds_worksheet_when_worksheets_is_empty
    assert_empty(@wb.worksheets)
    @wb.to_xml_string

    assert_equal(1, @wb.worksheets.size)
  end

  def test_to_xml_string_defined_names
    @wb.add_worksheet do |sheet|
      sheet.add_row [1, "two"]
      sheet.auto_filter = "A1:B1"
    end
    doc = Nokogiri::XML(@wb.to_xml_string)

    assert_equal(doc.xpath('//xmlns:workbook/xmlns:definedNames/xmlns:definedName').inner_text, @wb.worksheets[0].auto_filter.defined_name)
  end

  def test_to_xml_string_book_views
    @wb.add_worksheet do |sheet|
      sheet.add_row [1, "two"]
    end
    @wb.add_view active_tab: 0, first_sheet: 0
    doc = Nokogiri::XML(@wb.to_xml_string)

    assert_equal(1, doc.xpath('//xmlns:workbook/xmlns:bookViews/xmlns:workbookView[@activeTab=0]').size)
  end

  def test_to_xml_uses_correct_rIds_for_pivotCache
    ws = @wb.add_worksheet
    pivot_table = ws.add_pivot_table('G5:G6', 'A1:D5')
    doc = Nokogiri::XML(@wb.to_xml_string)

    assert_equal pivot_table.cache_definition.rId, doc.xpath("//xmlns:pivotCache").first["r:id"]
  end

  def test_worksheet_name_is_intact_after_serialized_into_xml
    sheet = @wb.add_worksheet(name: '_Example')
    wb_xml = Nokogiri::XML(@wb.to_xml_string)

    assert_equal sheet.name, wb_xml.xpath('//xmlns:workbook/xmlns:sheets/*[1]/@name').to_s
  end

  def test_escape_formulas
    Axlsx::escape_formulas = false
    p = Axlsx::Package.new
    @wb = p.workbook

    assert_false @wb.escape_formulas
    assert_false @wb.add_worksheet.escape_formulas
    assert_false @wb.add_worksheet(escape_formulas: false).escape_formulas
    assert @wb.add_worksheet(escape_formulas: true).escape_formulas

    Axlsx::escape_formulas = true
    p = Axlsx::Package.new
    @wb = p.workbook

    assert @wb.escape_formulas
    assert @wb.add_worksheet.escape_formulas
    assert_false @wb.add_worksheet(escape_formulas: false).escape_formulas
    assert @wb.add_worksheet(escape_formulas: true).escape_formulas

    @wb.escape_formulas = false

    assert_false @wb.escape_formulas
    assert_false @wb.add_worksheet.escape_formulas
    assert_false @wb.add_worksheet(escape_formulas: false).escape_formulas
    assert @wb.add_worksheet(escape_formulas: true).escape_formulas

    @wb.escape_formulas = true
    p = Axlsx::Package.new
    @wb = p.workbook

    assert @wb.escape_formulas
    assert @wb.add_worksheet.escape_formulas
    assert_false @wb.add_worksheet(escape_formulas: false).escape_formulas
    assert @wb.add_worksheet(escape_formulas: true).escape_formulas
  ensure
    Axlsx.instance_variable_set(:@escape_formulas, nil)
  end
end