Sha256: 9a96a772adb3fad7cb3080c5c0f463da8299184148c87782cc6a4746f4b05be3

Contents?: true

Size: 1.82 KB

Versions: 35

Compression:

Stored size: 1.82 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

35 entries across 35 versions & 1 rubygems

Version Path
active_scaffold-3.5.5 test/data_structures/action_links_test.rb
active_scaffold-3.5.4 test/data_structures/action_links_test.rb
active_scaffold-3.5.3 test/data_structures/action_links_test.rb
active_scaffold-3.5.2 test/data_structures/action_links_test.rb
active_scaffold-3.5.1 test/data_structures/action_links_test.rb
active_scaffold-3.5.0 test/data_structures/action_links_test.rb
active_scaffold-3.4.43 test/data_structures/action_links_test.rb
active_scaffold-3.4.42 test/data_structures/action_links_test.rb
active_scaffold-3.4.41.1 test/data_structures/action_links_test.rb
active_scaffold-3.4.41 test/data_structures/action_links_test.rb
active_scaffold-3.4.40 test/data_structures/action_links_test.rb
active_scaffold-3.4.39 test/data_structures/action_links_test.rb
active_scaffold-3.4.38 test/data_structures/action_links_test.rb
active_scaffold-3.4.37 test/data_structures/action_links_test.rb
active_scaffold-3.4.36 test/data_structures/action_links_test.rb
active_scaffold-3.4.35 test/data_structures/action_links_test.rb
active_scaffold-3.4.34 test/data_structures/action_links_test.rb
active_scaffold-3.4.33 test/data_structures/action_links_test.rb
active_scaffold-3.4.32 test/data_structures/action_links_test.rb
active_scaffold-3.4.31 test/data_structures/action_links_test.rb