Sha256: b46502227e9fdb7199fe5c8aa1b2c3d049d5c76ff47922a4378e01c59e46589f

Contents?: true

Size: 1.98 KB

Versions: 13

Compression:

Stored size: 1.98 KB

Contents

require 'tc_helper.rb'

class TestRelationships < Test::Unit::TestCase
  
  def test_instances_with_different_attributes_have_unique_ids
    rel_1 = Axlsx::Relationship.new(Object.new, Axlsx::WORKSHEET_R, 'target')
    rel_2 = Axlsx::Relationship.new(Object.new, Axlsx::COMMENT_R, 'foobar')
    assert_not_equal rel_1.Id, rel_2.Id
  end
  
  def test_instances_with_same_attributes_share_id
    source_obj = Object.new
    instance = Axlsx::Relationship.new(source_obj, Axlsx::WORKSHEET_R, 'target')
    assert_equal instance.Id, Axlsx::Relationship.new(source_obj, Axlsx::WORKSHEET_R, 'target').Id
  end
  
  def test_target_is_only_considered_for_same_attributes_check_if_target_mode_is_external
    source_obj = Object.new
    rel_1 = Axlsx::Relationship.new(source_obj, Axlsx::WORKSHEET_R, 'target')
    rel_2 = Axlsx::Relationship.new(source_obj, Axlsx::WORKSHEET_R, '../target')
    assert_equal rel_1.Id, rel_2.Id
    
    rel_3 = Axlsx::Relationship.new(source_obj, Axlsx::HYPERLINK_R, 'target', :target_mode => :External)
    rel_4 = Axlsx::Relationship.new(source_obj, Axlsx::HYPERLINK_R, '../target', :target_mode => :External)
    assert_not_equal rel_3.Id, rel_4.Id
  end
  
  def test_type
    assert_raise(ArgumentError) { Axlsx::Relationship.new nil, 'type', 'target' }
    assert_nothing_raised { Axlsx::Relationship.new nil, Axlsx::WORKSHEET_R, 'target' }
    assert_nothing_raised { Axlsx::Relationship.new nil, Axlsx::COMMENT_R, 'target' }
  end

  def test_target_mode
    assert_raise(ArgumentError) { Axlsx::Relationship.new nil, 'type', 'target', :target_mode => "FISH" }
    assert_nothing_raised { Axlsx::Relationship.new( nil, Axlsx::WORKSHEET_R, 'target', :target_mode => :External) }
  end

  def test_ampersand_escaping_in_target
    r = Axlsx::Relationship.new(nil, Axlsx::HYPERLINK_R, "http://example.com?foo=1&bar=2", :target_mod => :External)
    doc = Nokogiri::XML(r.to_xml_string)
    assert_equal(doc.xpath("//Relationship[@Target='http://example.com?foo=1&bar=2']").size, 1)
  end
end

Version data entries

13 entries across 13 versions & 6 rubygems

Version Path
bonio-axlsx-2.2.3 test/rels/tc_relationship.rb
caxlsx-2.0.2 test/rels/tc_relationship.rb
caxlsx-3.0.0 test/rels/tc_relationship.rb
axlsx-alt-3.0.1 test/rels/tc_relationship.rb
axlsx-alt-3.0.0 test/rels/tc_relationship.rb
axlsx-3.0.0.pre test/rels/tc_relationship.rb
bonio-axlsx-2.2.2 test/rels/tc_relationship.rb
bonio-axlsx-2.2.1 test/rels/tc_relationship.rb
dg-axlsx-2.1.0 test/rels/tc_relationship.rb
axlsx-2.1.0.pre test/rels/tc_relationship.rb
l_axlsx-2.0.1 test/rels/tc_relationship.rb
axlsx-2.0.1 test/rels/tc_relationship.rb
axlsx-2.0.0 test/rels/tc_relationship.rb