Sha256: 96d2136a1a95aa28f9077d842f471bd62ea6f9fab8f25f8a3d4720b6dd56b837

Contents?: true

Size: 1.81 KB

Versions: 17

Compression:

Stored size: 1.81 KB

Contents

require 'test_helper'

class ActionLinksTest < MiniTest::Test
  def setup
    @links = ActiveScaffold::DataStructures::ActionLinks.new
  end

  def test_add_and_find
    # test adding with a shortcut
    @links.add 'foo/bar'

    assert_equal 1, @links.find_all{true}.size
    assert_equal 'foo/bar', @links.find_all{true}[0].action
    assert_equal 'foo/bar', @links['foo/bar'].action

    # test adding an ActionLink object directly
    @links.add ActiveScaffold::DataStructures::ActionLink.new('hello/world')

    assert_equal 2, @links.find_all{true}.size

    # test the << alias
    @links << 'a/b'

    assert_equal 3, @links.find_all{true}.size
  end

  def test_array_access
    @link1 = ActiveScaffold::DataStructures::ActionLink.new 'foo/bar'
    @link2 = ActiveScaffold::DataStructures::ActionLink.new 'hello_world'

    @links.add @link1
    @links.add @link2

    assert_equal @link1, @links[@link1.action]
    assert_equal @link2, @links[@link2.action]
  end

  def test_empty
    assert @links.empty?
    @links.add 'a'
    refute @links.empty?
  end

  def test_cloning
    @links.add 'foo/bar'
    @links_copy = @links.clone

    refute @links.equal?(@links_copy)
    refute @links['foo/bar'].equal?(@links_copy['foo/bar'])
  end

  def test_each
    @links.add 'foo', :type => :collection
    @links.add 'bar', :type => :member

    @links.collection.each do |link|
      assert_equal 'foo', link.action
    end
    @links.member.each do |link|
      assert_equal 'bar', link.action
    end
  end
  
  def test_delete
    @links.add 'foo'
    @links.add 'bar'

    @links.delete :foo
    assert @links['foo'].nil?
    begin
      @links.delete :foo
      @links.delete 'foo'
    rescue
      assert false, "deleting from action links when item doesn't exist should not throw an error"
    end
    refute @links['bar'].nil?
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
active_scaffold-3.4.17 test/data_structures/action_links_test.rb
active_scaffold-3.4.16 test/data_structures/action_links_test.rb
active_scaffold-3.4.14 test/data_structures/action_links_test.rb
active_scaffold-3.4.13 test/data_structures/action_links_test.rb
active_scaffold-3.4.12 test/data_structures/action_links_test.rb
active_scaffold-3.4.11 test/data_structures/action_links_test.rb
active_scaffold-3.4.10 test/data_structures/action_links_test.rb
active_scaffold-3.4.9 test/data_structures/action_links_test.rb
active_scaffold-3.4.8 test/data_structures/action_links_test.rb
active_scaffold-3.4.7 test/data_structures/action_links_test.rb
active_scaffold-3.4.5 test/data_structures/action_links_test.rb
active_scaffold-3.4.4 test/data_structures/action_links_test.rb
active_scaffold-3.4.3 test/data_structures/action_links_test.rb
active_scaffold-3.4.2 test/data_structures/action_links_test.rb
active_scaffold-3.4.1 test/data_structures/action_links_test.rb
active_scaffold-3.4.0.1 test/data_structures/action_links_test.rb
active_scaffold-3.4.0 test/data_structures/action_links_test.rb