$:.unshift(File.dirname(__FILE__) + '/../lib') require File.dirname(__FILE__) + '/../../../../config/environment' require 'test/unit' require 'rubygems' require 'breakpoint' require 'action_controller/test_process' ActionController::Base.logger = nil ActionController::Base.ignore_missing_templates = false ActionController::Routing::Routes.reload rescue nil silence_warnings do Post = Struct.new("Post", :title, :author_name, :body, :secret, :written_on, :cost) Post.class_eval do alias_method :title_before_type_cast, :title unless respond_to?(:title_before_type_cast) alias_method :body_before_type_cast, :body unless respond_to?(:body_before_type_cast) alias_method :author_name_before_type_cast, :author_name unless respond_to?(:author_name_before_type_cast) end end class LabeledFormHelperTest < Test::Unit::TestCase include ActionView::Helpers::UrlHelper include ActionView::Helpers::TagHelper include ActionView::Helpers::TextHelper include ActionView::Helpers::FormHelper include ActionView::Helpers::FormTagHelper include Technoweenie::LabeledFormHelper def setup @post = Post.new def @post.errors() Class.new{ def on(field) field == "author_name" end }.new end def @post.id; 123; end def @post.id_before_type_cast; 123; end @post.title = "Hello World" @post.author_name = "" @post.body = "Back to the hill and over it again!" @post.secret = 1 @post.written_on = Date.new(2004, 6, 15) @controller = Class.new do def url_for(options, *parameters_for_method_reference) "http://www.example.com" end end @controller = @controller.new end def test_label assert_dom_equal '', label_for('post', 'body') assert_dom_equal '', label_for('post', 'body', {:class => :foo}) assert_dom_equal '', label_for('post', 'body', {:class => :foo, :text => 'Text'}) end def test_labeled_form_for _erbout = '' labeled_form_for(:post, @post) do |f| _erbout.concat f.text_field(:title) _erbout.concat f.text_area(:body) _erbout.concat f.check_box(:secret) end expected = "
" + "


" + "

" + "


" + "

" + "


" + "" + "

" + "
" assert_dom_equal expected, _erbout end def test_labeled_form_for_with_single_argument _erbout = '' labeled_form_for(:post) do |f| _erbout.concat f.text_field(:title) _erbout.concat f.text_area(:body) _erbout.concat f.check_box(:secret) end expected = "
" + "


" + "

" + "


" + "

" + "


" + "" + "

" + "
" assert_dom_equal expected, _erbout end def test_labeled_form_for_and_fields_for _erbout = '' labeled_form_for(:post, @post) do |post_form| _erbout.concat post_form.text_field(:title) _erbout.concat post_form.text_area(:body) post_form.fields_for(:parent_post, @post) do |parent_fields| _erbout.concat parent_fields.check_box(:secret) end end expected = "
" + "


" + "

" + "


" + "

" + "


" + "" + "

" + "
" assert_dom_equal expected, _erbout end def test_labeled_fields_for _erbout = '' labeled_fields_for(:post, @post) do |f| _erbout.concat f.text_field(:title) _erbout.concat f.text_area(:body) _erbout.concat f.check_box(:secret) end expected = "


" + "

" + "


" + "

" + "


" + "" + "

" assert_dom_equal expected, _erbout end def test_labeled_fields_for_with_single_attribute _erbout = '' labeled_fields_for(:post) do |f| _erbout.concat f.text_field(:title) _erbout.concat f.text_area(:body) _erbout.concat f.check_box(:secret) end expected = "


" + "

" + "


" + "

" + "


" + "" + "

" assert_dom_equal expected, _erbout end # form tag helpers def test_label_tag assert_dom_equal %(), label_tag('title', 'Page Title') end def test_label_tag_with_class assert_dom_equal %(), label_tag('title', 'Page Title', :class => 'frm_txt') end end