mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
85 lines
3.7 KiB
Ruby
85 lines
3.7 KiB
Ruby
![]() |
require File.expand_path('../../../../spec_helper', __FILE__)
|
||
|
require 'cgi'
|
||
|
require File.expand_path('../fixtures/common', __FILE__)
|
||
|
|
||
|
describe "CGI::HtmlExtension#text_field" do
|
||
|
before :each do
|
||
|
@html = CGISpecs.cgi_new
|
||
|
end
|
||
|
|
||
|
describe "when passed no arguments" do
|
||
|
it "returns an text-'input'-element without a name" do
|
||
|
output = @html.text_field
|
||
|
output.should equal_element("INPUT", {"NAME" => "", "TYPE" => "text", "SIZE" => "40"}, "", not_closed: true)
|
||
|
end
|
||
|
|
||
|
it "ignores a passed block" do
|
||
|
output = @html.text_field { "test" }
|
||
|
output.should equal_element("INPUT", {"NAME" => "", "TYPE" => "text", "SIZE" => "40"}, "", not_closed: true)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe "when passed name" do
|
||
|
it "returns an text-'input'-element with the passed name" do
|
||
|
output = @html.text_field("test")
|
||
|
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "text", "SIZE" => "40"}, "", not_closed: true)
|
||
|
end
|
||
|
|
||
|
it "ignores a passed block" do
|
||
|
output = @html.text_field("test") { "test" }
|
||
|
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "text", "SIZE" => "40"}, "", not_closed: true)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe "when passed name, value" do
|
||
|
it "returns an text-'input'-element with the passed name and value" do
|
||
|
output = @html.text_field("test", "some value")
|
||
|
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "text", "VALUE" => "some value", "SIZE" => "40"}, "", not_closed: true)
|
||
|
end
|
||
|
|
||
|
it "ignores a passed block" do
|
||
|
output = @html.text_field("test", "some value") { "test" }
|
||
|
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "text", "VALUE" => "some value", "SIZE" => "40"}, "", not_closed: true)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe "when passed name, value, size" do
|
||
|
it "returns an text-'input'-element with the passed name, value and size" do
|
||
|
output = @html.text_field("test", "some value", 60)
|
||
|
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "text", "VALUE" => "some value", "SIZE" => "60"}, "", not_closed: true)
|
||
|
end
|
||
|
|
||
|
it "ignores a passed block" do
|
||
|
output = @html.text_field("test", "some value", 60) { "test" }
|
||
|
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "text", "VALUE" => "some value", "SIZE" => "60"}, "", not_closed: true)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe "when passed name, value, size, maxlength" do
|
||
|
it "returns an text-'input'-element with the passed name, value, size and maxlength" do
|
||
|
output = @html.text_field("test", "some value", 60, 12)
|
||
|
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "text", "VALUE" => "some value", "SIZE" => "60", "MAXLENGTH" => 12}, "", not_closed: true)
|
||
|
end
|
||
|
|
||
|
it "ignores a passed block" do
|
||
|
output = @html.text_field("test", "some value", 60, 12) { "test" }
|
||
|
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "text", "VALUE" => "some value", "SIZE" => "60", "MAXLENGTH" => 12}, "", not_closed: true)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe "when passed Hash" do
|
||
|
it "returns a checkbox-'input'-element using the passed Hash for attributes" do
|
||
|
output = @html.text_field("NAME" => "test", "VALUE" => "some value")
|
||
|
output.should equal_element("INPUT", { "NAME" => "test", "VALUE" => "some value", "TYPE" => "text" }, "", not_closed: true)
|
||
|
|
||
|
output = @html.text_field("TYPE" => "hidden")
|
||
|
output.should equal_element("INPUT", {"TYPE" => "text"}, "", not_closed: true)
|
||
|
end
|
||
|
|
||
|
it "ignores a passed block" do
|
||
|
output = @html.text_field("NAME" => "test", "VALUE" => "some value") { "test" }
|
||
|
output.should equal_element("INPUT", { "NAME" => "test", "VALUE" => "some value", "TYPE" => "text" }, "", not_closed: true)
|
||
|
end
|
||
|
end
|
||
|
end
|