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
|
# frozen_string_literal: true
require 'tc_helper'
class TestIconSet < Test::Unit::TestCase
def setup
@icon_set = Axlsx::IconSet.new
end
def test_defaults
assert_equal("3TrafficLights1", @icon_set.iconSet)
assert(@icon_set.percent)
refute(@icon_set.reverse)
assert(@icon_set.showValue)
assert_equal([0, 33, 67], @icon_set.interpolationPoints)
end
def test_icon_set
assert_raise(ArgumentError) { @icon_set.iconSet = "invalid_value" }
assert_nothing_raised { @icon_set.iconSet = "5Rating" }
assert_equal("5Rating", @icon_set.iconSet)
end
def test_interpolation_points
assert_raise(ArgumentError) { @icon_set.interpolationPoints = ["invalid_value"] }
assert_nothing_raised { @icon_set.interpolationPoints = [0, 60, 80] }
assert_equal([0, 60, 80], @icon_set.interpolationPoints)
end
def test_percent
assert_raise(ArgumentError) { @icon_set.percent = :invalid_type }
assert_nothing_raised { @icon_set.percent = false }
refute(@icon_set.percent)
end
def test_showValue
assert_raise(ArgumentError) { @icon_set.showValue = :invalid_type }
assert_nothing_raised { @icon_set.showValue = false }
refute(@icon_set.showValue)
end
def test_reverse
assert_raise(ArgumentError) { @icon_set.reverse = :invalid_type }
assert_nothing_raised { @icon_set.reverse = false }
refute(@icon_set.reverse)
end
def test_to_xml_string
doc = Nokogiri::XML.parse(@icon_set.to_xml_string)
assert_equal(1, doc.xpath(".//iconSet[@iconSet='3TrafficLights1'][@percent=1][@reverse=0][@showValue=1]").size)
assert_equal(3, doc.xpath(".//iconSet//cfvo").size)
end
def test_to_xml_string_with_interpolation_points
@icon_set.iconSet = '5Arrows'
@icon_set.interpolationPoints = [0, 20, 40, 60, 80]
doc = Nokogiri::XML.parse(@icon_set.to_xml_string)
assert_equal(1, doc.xpath(".//iconSet[@iconSet='5Arrows'][@percent=1][@reverse=0][@showValue=1]").size)
assert_equal(5, doc.xpath(".//iconSet//cfvo").size)
end
end
|