summaryrefslogtreecommitdiffhomepage
path: root/test/workbook/worksheet/tc_data_bar.rb
blob: 03af393b49c4981fa0537626f88347a99e5bdc35 (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
# frozen_string_literal: true

require 'tc_helper'

class TestDataBar < Test::Unit::TestCase
  def setup
    @data_bar = Axlsx::DataBar.new color: "FF638EC6"
  end

  def test_defaults
    assert_equal(10, @data_bar.minLength)
    assert_equal(90, @data_bar.maxLength)
    assert(@data_bar.showValue)
  end

  def test_override_default_cfvos
    data_bar = Axlsx::DataBar.new({ color: 'FF00FF00' }, { type: :min, val: "20" })

    assert_equal("20", data_bar.value_objects.first.val)
    assert_equal("0", data_bar.value_objects.last.val)
  end

  def test_minLength
    assert_raise(ArgumentError) { @data_bar.minLength = :invalid_type }
    assert_nothing_raised { @data_bar.minLength = 0 }
    assert_equal(0, @data_bar.minLength)
  end

  def test_maxLength
    assert_raise(ArgumentError) { @data_bar.maxLength = :invalid_type }
    assert_nothing_raised { @data_bar.maxLength = 0 }
    assert_equal(0, @data_bar.maxLength)
  end

  def test_showValue
    assert_raise(ArgumentError) { @data_bar.showValue = :invalid_type }
    assert_nothing_raised { @data_bar.showValue = false }
    refute(@data_bar.showValue)
  end

  def test_to_xml_string
    doc = Nokogiri::XML.parse(@data_bar.to_xml_string)

    assert_equal(1, doc.xpath(".//dataBar[@minLength=10][@maxLength=90][@showValue=1]").size)
    assert_equal(2, doc.xpath(".//dataBar//cfvo").size)
    assert_equal(1, doc.xpath(".//dataBar//color").size)
  end
end