1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
# frozen_string_literal: true
require 'minitest/global_expectations/autorun'
begin
require 'rack/handler/thin'
require File.expand_path('../testrequest', __FILE__)
require 'timeout'
describe Rack::Handler::Thin do
include TestRequest::Helpers
before do
@app = Rack::Lint.new(TestRequest.new)
@server = nil
Thin::Logging.silent = true
@thread = Thread.new do
Rack::Handler::Thin.run(@app, Host: @host = 'localhost', Port: @port = 9204, tag: "tag") do |server|
@server = server
end
end
Thread.pass until @server && @server.running?
end
after do
@server.stop!
@thread.join
end
it "respond" do
GET("/")
response.wont_be :nil?
end
it "be a Thin" do
GET("/")
status.must_equal 200
response["SERVER_SOFTWARE"].must_match(/thin/)
response["HTTP_VERSION"].must_equal "HTTP/1.1"
response["SERVER_PROTOCOL"].must_equal "HTTP/1.1"
response["SERVER_PORT"].must_equal "9204"
response["SERVER_NAME"].must_equal "localhost"
end
it "have rack headers" do
GET("/")
response["rack.version"].must_equal [1, 0]
response["rack.multithread"].must_equal false
response["rack.multiprocess"].must_equal false
response["rack.run_once"].must_equal false
end
it "have CGI headers on GET" do
GET("/")
response["REQUEST_METHOD"].must_equal "GET"
response["REQUEST_PATH"].must_equal "/"
response["PATH_INFO"].must_equal "/"
response["QUERY_STRING"].must_equal ""
response["test.postdata"].must_equal ""
GET("/test/foo?quux=1")
response["REQUEST_METHOD"].must_equal "GET"
response["REQUEST_PATH"].must_equal "/test/foo"
response["PATH_INFO"].must_equal "/test/foo"
response["QUERY_STRING"].must_equal "quux=1"
end
it "have CGI headers on POST" do
POST("/", { "rack-form-data" => "23" }, { 'X-test-header' => '42' })
status.must_equal 200
response["REQUEST_METHOD"].must_equal "POST"
response["REQUEST_PATH"].must_equal "/"
response["QUERY_STRING"].must_equal ""
response["HTTP_X_TEST_HEADER"].must_equal "42"
response["test.postdata"].must_equal "rack-form-data=23"
end
it "support HTTP auth" do
GET("/test", { user: "ruth", passwd: "secret" })
response["HTTP_AUTHORIZATION"].must_equal "Basic cnV0aDpzZWNyZXQ="
end
it "set status" do
GET("/test?secret")
status.must_equal 403
response["rack.url_scheme"].must_equal "http"
end
it "set tag for server" do
@server.tag.must_equal 'tag'
end
end
rescue LoadError
$stderr.puts "Skipping Rack::Handler::Thin tests (Thin is required). `gem install thin` and try again."
end
|