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
|
# frozen_string_literal: true
require 'tc_helper'
class TestPieSeries < Test::Unit::TestCase
def setup
p = Axlsx::Package.new
@ws = p.workbook.add_worksheet name: "hmmm"
chart = @ws.add_chart Axlsx::Pie3DChart, title: "fishery"
@series = chart.add_series data: [0, 1, 2], labels: ["zero", "one", "two"], title: "bob", colors: ["FF0000", "00FF00", "0000FF"]
end
def test_initialize
assert_equal("bob", @series.title.text, "series title has been applied")
assert_equal(@series.labels.class, Axlsx::AxDataSource)
assert_equal(@series.data.class, Axlsx::NumDataSource)
assert_nil(@series.explosion, "series shape has been applied")
end
def test_explosion
assert_raise(ArgumentError, "require valid explosion") { @series.explosion = :lots }
assert_nothing_raised("allow valid explosion") { @series.explosion = 20 }
assert_equal(20, @series.explosion)
# issue 58 - explosion caused to_xml_string to fail - now tested
assert_nothing_raised("allow to_xml_string") { @series.to_xml_string }
end
def test_to_xml_string
doc = Nokogiri::XML(@series.to_xml_string)
assert(doc.xpath("//srgbClr[@val='#{@series.colors[0]}']"))
end
# TODO: test unique serialization parts
end
|