require File.join(File.dirname(__FILE__), '../test_helper.rb') class ActionLinkTest < Test::Unit::TestCase def setup @link = ActiveScaffold::DataStructures::ActionLink.new('foo') end def test_simple_attributes assert_equal 'foo', @link.action @link.action = 'bar' assert_equal 'bar', @link.action hash = {:a => :b} @link.parameters = hash assert_equal hash, @link.parameters @link.label = 'hello world' assert_equal 'hello world', @link.label assert !@link.confirm @link.confirm = true assert @link.confirm @link.label = 'Hello World' assert_equal 'hello_world_authorized?', @link.security_method @link.label = 'HelloWorld' assert_equal 'hello_world_authorized?', @link.security_method @link.security_method = 'blueberry_pie' assert_equal 'blueberry_pie', @link.security_method @link.type = :table assert_equal :table, @link.type @link.type = :record assert_equal :record, @link.type assert_equal :get, @link.method @link.method = :put assert_equal :put, @link.method end def test_position @link.position = true @link.type = :table assert_equal :top, @link.position @link.type = :record assert_equal :replace, @link.position @link.position = :before assert_equal :before, @link.position @link.position = false assert_equal false, @link.position end def test_presentation_style # default assert @link.inline? assert !@link.popup? assert !@link.page? @link.popup = true assert !@link.inline? assert @link.popup? assert !@link.page? @link.page = true assert !@link.inline? assert !@link.popup? assert @link.page? @link.inline = true assert @link.inline? assert !@link.popup? assert !@link.page? end end