mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
525 B
26 lines
525 B
16 years ago
|
#!/usr/bin/env ruby
|
||
|
require 'net/http'
|
||
|
require File.dirname(__FILE__) + "/common"
|
||
|
|
||
|
pid = fork do
|
||
|
exec($node, $tf.path)
|
||
|
end
|
||
|
|
||
|
begin
|
||
|
wait_for_server("localhost", 8000)
|
||
|
connection = Net::HTTP.new("localhost", 8000)
|
||
|
|
||
|
response, body = connection.get("/")
|
||
|
ensure
|
||
|
`kill -9 #{pid}`
|
||
|
end
|
||
|
|
||
|
__END__
|
||
|
var server = new HTTPServer("localhost", 8000, function (request) {
|
||
|
log("request");
|
||
|
request.respond("HTTP/1.1 200 OK\r\n");
|
||
|
request.respond("Content-Length: 0\r\n");
|
||
|
request.respond("\r\n");
|
||
|
request.respond(null);
|
||
|
});
|