unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob 457afeeff055fe8c8e093693f892409617c1ae6a 1220 bytes (raw)
$ git show v4.2.1:test/unit/test_sni_hostnames.rb	# shows this blob on the CLI

 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
 
# -*- encoding: binary -*-
require "test/unit"
require "unicorn"

# this tests an implementation detail, it may change so this test
# can be removed later.
class TestSniHostnames < Test::Unit::TestCase
  include Unicorn::SSLServer

  def setup
    GC.start
  end

  def teardown
    GC.start
  end

  def test_host_name_detect_one
    app = Rack::Builder.new do
      map "http://sni1.example.com/" do
        use Rack::ContentLength
        use Rack::ContentType, "text/plain"
        run lambda { |env| [ 200, {}, [] ] }
      end
    end.to_app
    hostnames = rack_sni_hostnames(app)
    assert hostnames.include?("sni1.example.com")
  end

  def test_host_name_detect_multiple
    app = Rack::Builder.new do
      map "http://sni2.example.com/" do
        use Rack::ContentLength
        use Rack::ContentType, "text/plain"
        run lambda { |env| [ 200, {}, [] ] }
      end
      map "http://sni3.example.com/" do
        use Rack::ContentLength
        use Rack::ContentType, "text/plain"
        run lambda { |env| [ 200, {}, [] ] }
      end
    end.to_app
    hostnames = rack_sni_hostnames(app)
    assert hostnames.include?("sni2.example.com")
    assert hostnames.include?("sni3.example.com")
  end
end

git clone https://yhbt.net/unicorn.git