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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
#
# Author:: Daniel DeLeo (<dan@chef.io>)
# Copyright:: Copyright (c) Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require "webrick"
require "webrick/https"
require "rack"
require "singleton"
require "open-uri"
require "chef/config"
module TinyServer
class Manager
# 5 == debug, 3 == warning
LOGGER = WEBrick::Log.new(STDOUT, 3)
DEFAULT_OPTIONS = {
Port: 9000,
Host: "localhost",
Logger: LOGGER,
# SSLEnable: options[:ssl],
# SSLCertName: [ [ 'CN', WEBrick::Utils::getservername ] ],
AccessLog: [], # Remove this option to enable the access log when debugging.
}.freeze
def initialize(**options)
@options = DEFAULT_OPTIONS.merge(options)
@creator = caller.first
end
attr_reader :options
attr_reader :creator
attr_reader :server
def start(timeout = 5)
raise "Server already started!" if server
# Create the server (but don't start yet)
start_queue = Queue.new
@server = create_server(StartCallback: proc { start_queue << true })
@server_thread = Thread.new do
# Ensure any exceptions will cause the main rspec thread to fail too
Thread.current.abort_on_exception = true
server.start
end
# Wait for the StartCallback to tell us we've started
Timeout.timeout(timeout) do
start_queue.pop
end
end
def stop(timeout = 5)
if server
server.shutdown
@server = nil
end
if server_thread
begin
# Wait for a normal shutdown
server_thread.join(timeout)
rescue
# If it wouldn't shut down normally, kill it.
server_thread.kill
server_thread.join(timeout)
end
@server_thread = nil
end
end
private
attr_reader :server_thread
def create_server(**extra_options)
server = WEBrick::HTTPServer.new(**options, **extra_options)
server.mount("/", Rack::Handler::WEBrick, API.instance)
server
end
end
class API
include Singleton
GET = "GET".freeze
PUT = "PUT".freeze
POST = "POST".freeze
DELETE = "DELETE".freeze
attr_reader :routes
def initialize
clear
end
def clear
@routes = { GET => [], PUT => [], POST => [], DELETE => [] }
end
def get(path, response_code, data = nil, headers = nil, &block)
@routes[GET] << Route.new(path, Response.new(response_code, data, headers, &block))
end
def put(path, response_code, data = nil, headers = nil, &block)
@routes[PUT] << Route.new(path, Response.new(response_code, data, headers, &block))
end
def post(path, response_code, data = nil, headers = nil, &block)
@routes[POST] << Route.new(path, Response.new(response_code, data, headers, &block))
end
def delete(path, response_code, data = nil, headers = nil, &block)
@routes[DELETE] << Route.new(path, Response.new(response_code, data, headers, &block))
end
def call(env)
if response = response_for_request(env)
response.call
else
debug_info = { message: "no data matches the request for #{env["REQUEST_URI"]}",
available_routes: @routes, request: env }
# Uncomment me for glorious debugging
# pp :not_found => debug_info
[404, { "Content-Type" => "application/json" }, [ Chef::JSONCompat.to_json(debug_info) ]]
end
end
def response_for_request(env)
if route = @routes[env["REQUEST_METHOD"]].find { |route| route.matches_request?(env["REQUEST_URI"]) }
route.response
end
end
end
class Route
attr_reader :response
def initialize(path_spec, response)
@path_spec, @response = path_spec, response
end
def matches_request?(uri)
uri = URI.parse(uri).request_uri
@path_spec === uri
end
def to_s
"#{@path_spec} => (#{@response})"
end
end
class Response
HEADERS = { "Content-Type" => "application/json" }.freeze
def initialize(response_code = 200, data = nil, headers = nil, &block)
@response_code, @data = response_code, data
@response_headers = headers ? HEADERS.merge(headers) : HEADERS
@block = block_given? ? block : nil
end
def call
data = @data || @block.call
[@response_code, @response_headers, Array(data)]
end
def to_s
"#{@response_code} => #{(@data || @block)}"
end
end
end
|