HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.5.9/spec/ruby/library/net/http/httpheader/shared/set_form_data.rb
describe :net_httpheader_set_form_data, shared: true do
  before :each do
    @headers = NetHTTPHeaderSpecs::Example.new
  end

  describe "when passed params" do
    it "automatically set the 'Content-Type' to 'application/x-www-form-urlencoded'" do
      @headers.send(@method, "cmd" => "search", "q" => "ruby", "max" => "50")
      @headers["Content-Type"].should == "application/x-www-form-urlencoded"
    end

    it "sets self's body based on the passed form parameters" do
      @headers.send(@method, "cmd" => "search", "q" => "ruby", "max" => "50")
      @headers.body.split("&").sort.should == ["cmd=search", "max=50", "q=ruby"]
    end
  end

  describe "when passed params, separator" do
    it "sets self's body based on the passed form parameters and the passed separator" do
      @headers.send(@method, {"cmd" => "search", "q" => "ruby", "max" => "50"}, "&")
      @headers.body.split("&").sort.should == ["cmd=search", "max=50", "q=ruby"]

      @headers.send(@method, {"cmd" => "search", "q" => "ruby", "max" => "50"}, ";")
      @headers.body.split(";").sort.should == ["cmd=search", "max=50", "q=ruby"]
    end
  end
end