diff options
| author | Jean-Philippe Moal <[email protected]> | 2013-10-09 16:38:35 +0200 |
|---|---|---|
| committer | Jean-Philippe Moal <[email protected]> | 2013-10-09 16:38:35 +0200 |
| commit | 3171fa568618e9d75ead1994ed6e3be90b693a47 (patch) | |
| tree | 2d7d5655f60386a70571eaa287f93045ae9c4317 /test | |
| parent | 3bf46a00d717d5e991166360bf4a2ece41cc3fbc (diff) | |
| download | caxlsx-3171fa568618e9d75ead1994ed6e3be90b693a47.tar.gz caxlsx-3171fa568618e9d75ead1994ed6e3be90b693a47.zip | |
Add support for bubble charts
Diffstat (limited to 'test')
| -rw-r--r-- | test/drawing/tc_bubble_chart.rb | 44 | ||||
| -rw-r--r-- | test/drawing/tc_bubble_series.rb | 21 | ||||
| -rw-r--r-- | test/drawing/tc_data_source.rb | 6 | ||||
| -rw-r--r-- | test/tc_package.rb | 7 |
4 files changed, 77 insertions, 1 deletions
diff --git a/test/drawing/tc_bubble_chart.rb b/test/drawing/tc_bubble_chart.rb new file mode 100644 index 00000000..7adad218 --- /dev/null +++ b/test/drawing/tc_bubble_chart.rb @@ -0,0 +1,44 @@ +require 'tc_helper.rb' + +class TestBubbleChart < Test::Unit::TestCase + def setup + @p = Axlsx::Package.new + @chart = nil + @p.workbook.add_worksheet do |sheet| + sheet.add_row ["First", 1, 5, 7, 9] + sheet.add_row ["", 1, 25, 49, 81] + sheet.add_row ["", 1, 42, 60, 75] + sheet.add_row ["Second", 5, 2, 14, 9] + sheet.add_row ["", 5, 10, 15, 20] + sheet.add_row ["", 5, 28, 92, 13] + sheet.add_chart(Axlsx::BubbleChart, :title => "example: Bubble Chart") do |chart| + chart.start_at 0, 4 + chart.end_at 10, 19 + chart.add_series :xData => sheet["B1:E1"], :yData => sheet["B2:E2"], :bubbleSize => sheet["B3:E3"], :title => sheet["A1"] + chart.add_series :xData => sheet["B4:E4"], :yData => sheet["B5:E5"], :bubbleSize => sheet["B6:E6"], :title => sheet["A3"] + @chart = chart + end + end + end + + def teardown + end + + def test_initialization + assert_equal(@chart.series_type, Axlsx::BubbleSeries, "series type incorrect") + assert(@chart.xValAxis.is_a?(Axlsx::ValAxis), "independant value axis not created") + assert(@chart.yValAxis.is_a?(Axlsx::ValAxis), "dependant value axis not created") + end + + def test_to_xml_string + schema = Nokogiri::XML::Schema(File.open(Axlsx::DRAWING_XSD)) + doc = Nokogiri::XML(@chart.to_xml_string) + errors = [] + schema.validate(doc).each do |error| + errors.push error + puts error.message + end + assert(errors.empty?, "error free validation") + end + +end diff --git a/test/drawing/tc_bubble_series.rb b/test/drawing/tc_bubble_series.rb new file mode 100644 index 00000000..4bad74b1 --- /dev/null +++ b/test/drawing/tc_bubble_series.rb @@ -0,0 +1,21 @@ +require 'tc_helper.rb' + +class TestBubbleSeries < Test::Unit::TestCase + + def setup + p = Axlsx::Package.new + @ws = p.workbook.add_worksheet :name=>"hmmm" + @chart = @ws.add_chart Axlsx::BubbleChart, :title => "Bubble Chart" + @series = @chart.add_series :xData=>[1,2,4], :yData=>[1,3,9], :bubbleSize=>[1,5,7], :title=>"GDP", :color => 'FF0000' + end + + def test_initialize + assert_equal(@series.title.text, "GDP", "series title has been applied") + end + + def test_to_xml_string + doc = Nokogiri::XML(@chart.to_xml_string) + assert_equal(doc.xpath("//a:srgbClr[@val='#{@series.color}']").size,4) + end + +end diff --git a/test/drawing/tc_data_source.rb b/test/drawing/tc_data_source.rb index 6b35e008..e9bed095 100644 --- a/test/drawing/tc_data_source.rb +++ b/test/drawing/tc_data_source.rb @@ -6,6 +6,12 @@ @data_source = Axlsx::NumDataSource.new :data => ["1", "2", "3"] end + def test_tag_name + assert_raise(ArgumentError) { @data_source.tag_name = :zVal } + assert_nothing_raised { @data_source.tag_name = :yVal } + assert_nothing_raised { @data_source.tag_name = :bubbleSize } + end + def test_to_xml_string_strLit str = '<?xml version="1.0" encoding="UTF-8"?>' str << '<c:chartSpace xmlns:c="' << Axlsx::XML_NS_C << '">' diff --git a/test/tc_package.rb b/test/tc_package.rb index 8f0caa46..0a33e248 100644 --- a/test/tc_package.rb +++ b/test/tc_package.rb @@ -53,6 +53,11 @@ class TestPackage < Test::Unit::TestCase chart.d_lbls.show_val = true end + ws.add_chart(Axlsx::BubbleChart, :title => 'bubble chart') do |chart| + chart.add_series :xData => [1,2,3,4], :yData => [4,3,2,1], :yData => [1,3,2,4] + chart.d_lbls.show_val = true + end + @fname = 'axlsx_test_serialization.xlsx' img = File.expand_path('../../examples/image1.jpeg', __FILE__) ws.add_image(:image_src => img, :noSelect => true, :noMove => true, :hyperlink=>"http://axlsx.blogspot.com") do |image| @@ -177,7 +182,7 @@ class TestPackage < Test::Unit::TestCase #no mystery parts - assert_equal(24, p.size) + assert_equal(25, p.size) end |
