screw-unit-server 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +5 -0
- data/README.markdown +347 -0
- data/Rakefile +70 -0
- data/bin/screw_unit +6 -0
- data/bin/screw_unit_server +10 -0
- data/core/EXAMPLE.html +68 -0
- data/core/LICENSE +22 -0
- data/core/README.markdown +307 -0
- data/core/TODO +2 -0
- data/core/example/models/cat.js +5 -0
- data/core/example/models/man.js +17 -0
- data/core/example/spec/matchers/have.js +8 -0
- data/core/example/spec/models/cat_spec.js +31 -0
- data/core/example/spec/models/man_spec.js +34 -0
- data/core/example/spec/spec_helper.js +5 -0
- data/core/example/spec/suite.html +25 -0
- data/core/lib/jquery-1.2.3.js +3408 -0
- data/core/lib/jquery.fn.js +29 -0
- data/core/lib/jquery.print.js +108 -0
- data/core/lib/screw.assets.js +36 -0
- data/core/lib/screw.behaviors.js +91 -0
- data/core/lib/screw.builder.js +80 -0
- data/core/lib/screw.css +90 -0
- data/core/lib/screw.events.js +38 -0
- data/core/lib/screw.matchers.js +65 -0
- data/core/lib/screw.server.js +21 -0
- data/core/spec/behaviors_spec.js +178 -0
- data/core/spec/matchers_spec.js +93 -0
- data/core/spec/print_spec.js +119 -0
- data/core/spec/spec_helper.js +0 -0
- data/core/spec/suite.html +18 -0
- data/init.rb +0 -0
- data/lib/screw_unit.rb +26 -0
- data/lib/screw_unit/resources.rb +2 -0
- data/lib/screw_unit/resources/spec.rb +37 -0
- data/spec/functional/functional_spec.rb +14 -0
- data/spec/functional/functional_spec_helper.rb +55 -0
- data/spec/functional_suite.rb +10 -0
- data/spec/spec_suite.rb +3 -0
- data/spec/unit/js_test_core/specs/spec_dir_spec.rb +43 -0
- data/spec/unit/js_test_core/specs/spec_file_spec.rb +43 -0
- data/spec/unit/unit_spec_helper.rb +120 -0
- data/spec/unit_suite.rb +10 -0
- data/vendor/js-test-core/CHANGES +9 -0
- data/vendor/js-test-core/README +12 -0
- data/vendor/js-test-core/Rakefile +72 -0
- data/vendor/js-test-core/lib/js_test_core.rb +30 -0
- data/vendor/js-test-core/lib/js_test_core/client.rb +50 -0
- data/vendor/js-test-core/lib/js_test_core/rack.rb +2 -0
- data/vendor/js-test-core/lib/js_test_core/rack/commonlogger.rb +5 -0
- data/vendor/js-test-core/lib/js_test_core/rails_server.rb +22 -0
- data/vendor/js-test-core/lib/js_test_core/resources.rb +11 -0
- data/vendor/js-test-core/lib/js_test_core/resources/dir.rb +52 -0
- data/vendor/js-test-core/lib/js_test_core/resources/file.rb +32 -0
- data/vendor/js-test-core/lib/js_test_core/resources/file_not_found.rb +15 -0
- data/vendor/js-test-core/lib/js_test_core/resources/runners.rb +15 -0
- data/vendor/js-test-core/lib/js_test_core/resources/runners/firefox_runner.rb +75 -0
- data/vendor/js-test-core/lib/js_test_core/resources/specs/spec_dir.rb +50 -0
- data/vendor/js-test-core/lib/js_test_core/resources/specs/spec_file.rb +17 -0
- data/vendor/js-test-core/lib/js_test_core/resources/suite.rb +24 -0
- data/vendor/js-test-core/lib/js_test_core/resources/suite_finish.rb +19 -0
- data/vendor/js-test-core/lib/js_test_core/resources/web_root.rb +62 -0
- data/vendor/js-test-core/lib/js_test_core/selenium.rb +2 -0
- data/vendor/js-test-core/lib/js_test_core/selenium/selenium_driver.rb +5 -0
- data/vendor/js-test-core/lib/js_test_core/server.rb +111 -0
- data/vendor/js-test-core/lib/js_test_core/thin.rb +3 -0
- data/vendor/js-test-core/lib/js_test_core/thin/backends/js_test_core_server.rb +9 -0
- data/vendor/js-test-core/lib/js_test_core/thin/js_test_core_connection.rb +42 -0
- data/vendor/js-test-core/spec/example_core/JsTestCore.css +0 -0
- data/vendor/js-test-core/spec/example_core/JsTestCore.js +0 -0
- data/vendor/js-test-core/spec/example_public/favicon.ico +0 -0
- data/vendor/js-test-core/spec/example_public/javascripts/foo.js +3 -0
- data/vendor/js-test-core/spec/example_public/robots.txt +0 -0
- data/vendor/js-test-core/spec/example_public/stylesheets/example.css +3 -0
- data/vendor/js-test-core/spec/example_specs/failing_spec.js +5 -0
- data/vendor/js-test-core/spec/example_specs/foo/failing_spec.js +6 -0
- data/vendor/js-test-core/spec/example_specs/foo/passing_spec.js +6 -0
- data/vendor/js-test-core/spec/spec_suite.rb +2 -0
- data/vendor/js-test-core/spec/specs/failing_spec.js +0 -0
- data/vendor/js-test-core/spec/unit/js_test_core/client_spec.rb +137 -0
- data/vendor/js-test-core/spec/unit/js_test_core/rails_server_spec.rb +45 -0
- data/vendor/js-test-core/spec/unit/js_test_core/resources/dir_spec.rb +42 -0
- data/vendor/js-test-core/spec/unit/js_test_core/resources/file_not_found_spec.rb +26 -0
- data/vendor/js-test-core/spec/unit/js_test_core/resources/file_spec.rb +88 -0
- data/vendor/js-test-core/spec/unit/js_test_core/resources/runner_spec.rb +24 -0
- data/vendor/js-test-core/spec/unit/js_test_core/resources/runners/firefox_runner_spec.rb +197 -0
- data/vendor/js-test-core/spec/unit/js_test_core/resources/specs/spec_dir_spec.rb +79 -0
- data/vendor/js-test-core/spec/unit/js_test_core/resources/specs/spec_file_spec.rb +42 -0
- data/vendor/js-test-core/spec/unit/js_test_core/resources/suite_finish_spec.rb +94 -0
- data/vendor/js-test-core/spec/unit/js_test_core/resources/suite_spec.rb +44 -0
- data/vendor/js-test-core/spec/unit/js_test_core/resources/web_root_spec.rb +103 -0
- data/vendor/js-test-core/spec/unit/js_test_core/server_spec.rb +131 -0
- data/vendor/js-test-core/spec/unit/thin/js_test_core_connection_spec.rb +92 -0
- data/vendor/js-test-core/spec/unit/unit_spec_helper.rb +125 -0
- data/vendor/js-test-core/spec/unit_suite.rb +10 -0
- metadata +186 -0
@@ -0,0 +1,111 @@
|
|
1
|
+
module JsTestCore
|
2
|
+
class Server
|
3
|
+
class << self
|
4
|
+
attr_accessor :instance
|
5
|
+
|
6
|
+
def run(spec_root_path, implementation_root_path, public_path, server_options = {})
|
7
|
+
server_options[:Host] ||= DEFAULT_HOST
|
8
|
+
server_options[:Port] ||= DEFAULT_PORT
|
9
|
+
@instance = new(spec_root_path, implementation_root_path, public_path, server_options[:Host], server_options[:Port])
|
10
|
+
instance.run server_options
|
11
|
+
end
|
12
|
+
|
13
|
+
def spec_root_path; instance.spec_root_path; end
|
14
|
+
def implementation_root_path; instance.implementation_root_path; end
|
15
|
+
def public_path; instance.public_path; end
|
16
|
+
def core_path; instance.core_path; end
|
17
|
+
def test_dir_class; instance.test_dir_class; end
|
18
|
+
def test_file_class; instance.test_file_class; end
|
19
|
+
def connection; instance.connection; end
|
20
|
+
def request; instance.request; end
|
21
|
+
def response; instance.response; end
|
22
|
+
def root_url; instance.root_url; end
|
23
|
+
end
|
24
|
+
|
25
|
+
attr_reader :host, :port, :spec_root_path, :implementation_root_path, :public_path
|
26
|
+
|
27
|
+
def initialize(spec_root_path, implementation_root_path, public_path, host=DEFAULT_HOST, port=DEFAULT_PORT)
|
28
|
+
dir = ::File.dirname(__FILE__)
|
29
|
+
@spec_root_path = ::File.expand_path(spec_root_path)
|
30
|
+
@implementation_root_path = ::File.expand_path(implementation_root_path)
|
31
|
+
@public_path = ::File.expand_path(public_path)
|
32
|
+
@host = host
|
33
|
+
@port = port
|
34
|
+
end
|
35
|
+
|
36
|
+
def run(options)
|
37
|
+
server = ::Thin::Server.new(options[:Host], options[:Port], self)
|
38
|
+
server.backend = ::Thin::Backends::JsTestCoreServer.new(options[:Host], options[:Port])
|
39
|
+
server.backend.server = server
|
40
|
+
server.start!
|
41
|
+
end
|
42
|
+
|
43
|
+
def call(env)
|
44
|
+
self.connection = env['js_test_core.connection']
|
45
|
+
self.request = Rack::Request.new(env)
|
46
|
+
self.response = Rack::Response.new
|
47
|
+
method = request.request_method.downcase.to_sym
|
48
|
+
get_resource(request).send(method, request, response)
|
49
|
+
response.finish
|
50
|
+
ensure
|
51
|
+
self.connection = nil
|
52
|
+
self.request = nil
|
53
|
+
self.response = nil
|
54
|
+
end
|
55
|
+
|
56
|
+
def connection
|
57
|
+
Thread.current[:connection]
|
58
|
+
end
|
59
|
+
|
60
|
+
def request
|
61
|
+
Thread.current[:request]
|
62
|
+
end
|
63
|
+
|
64
|
+
def response
|
65
|
+
Thread.current[:response]
|
66
|
+
end
|
67
|
+
|
68
|
+
def root_url
|
69
|
+
"http://#{host}:#{port}"
|
70
|
+
end
|
71
|
+
|
72
|
+
def core_path
|
73
|
+
JsTestCore.core_path
|
74
|
+
end
|
75
|
+
|
76
|
+
def test_dir_class
|
77
|
+
JsTestCore.adapter.test_dir_class
|
78
|
+
end
|
79
|
+
|
80
|
+
def test_file_class
|
81
|
+
JsTestCore.adapter.test_file_class
|
82
|
+
end
|
83
|
+
|
84
|
+
protected
|
85
|
+
def connection=(connection)
|
86
|
+
Thread.current[:connection] = connection
|
87
|
+
end
|
88
|
+
|
89
|
+
def request=(request)
|
90
|
+
Thread.current[:request] = request
|
91
|
+
end
|
92
|
+
|
93
|
+
def response=(response)
|
94
|
+
Thread.current[:response] = response
|
95
|
+
end
|
96
|
+
|
97
|
+
def path_parts(req)
|
98
|
+
request.path_info.split('/').reject { |part| part == "" }
|
99
|
+
end
|
100
|
+
|
101
|
+
def get_resource(request)
|
102
|
+
path_parts(request).inject(Resources::WebRoot.new(public_path)) do |resource, child_resource_name|
|
103
|
+
resource.locate(child_resource_name)
|
104
|
+
end
|
105
|
+
rescue Exception => e
|
106
|
+
detailed_exception = Exception.new("Error handling path #{request.path_info}\n#{e.message}")
|
107
|
+
detailed_exception.set_backtrace(e.backtrace)
|
108
|
+
raise detailed_exception
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
module Thin
|
2
|
+
class JsTestCoreConnection < Connection
|
3
|
+
def process
|
4
|
+
# Add client info to the request env
|
5
|
+
@request.remote_address = remote_address
|
6
|
+
|
7
|
+
env = @request.env
|
8
|
+
env['js_test_core.connection'] = self
|
9
|
+
@response.status, @response.headers, @response.body = @app.call(env)
|
10
|
+
send_data @response.head
|
11
|
+
if !@response.body.empty? || @response.headers.to_s.include?("Content-Length: 0")
|
12
|
+
send_body @response.body
|
13
|
+
end
|
14
|
+
rescue Exception => e
|
15
|
+
handle_error e
|
16
|
+
end
|
17
|
+
|
18
|
+
def send_body(rack_response)
|
19
|
+
rack_response.each do |chunk|
|
20
|
+
send_data chunk
|
21
|
+
end
|
22
|
+
# If no more request on that same connection, we close it.
|
23
|
+
close_connection_after_writing unless persistent?
|
24
|
+
rescue Exception => e
|
25
|
+
handle_error e
|
26
|
+
ensure
|
27
|
+
@request.close rescue nil
|
28
|
+
@response.close rescue nil
|
29
|
+
|
30
|
+
# Prepare the connection for another request if the client
|
31
|
+
# supports HTTP pipelining (persistent connection).
|
32
|
+
post_init if persistent?
|
33
|
+
end
|
34
|
+
|
35
|
+
def handle_error(error)
|
36
|
+
log "!! Unexpected error while processing request: #{error.message}"
|
37
|
+
log error.backtrace
|
38
|
+
log_error
|
39
|
+
close_connection rescue nil
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,137 @@
|
|
1
|
+
require File.expand_path("#{File.dirname(__FILE__)}/../unit_spec_helper")
|
2
|
+
|
3
|
+
module JsTestCore
|
4
|
+
describe Client do
|
5
|
+
describe '.run' do
|
6
|
+
describe 'when successful' do
|
7
|
+
before do
|
8
|
+
request = Object.new
|
9
|
+
mock(request).post("/runners/firefox", "selenium_host=localhost&selenium_port=4444")
|
10
|
+
response = Object.new
|
11
|
+
mock(response).body {""}
|
12
|
+
mock(Net::HTTP).start(DEFAULT_HOST, DEFAULT_PORT).yields(request) {response}
|
13
|
+
stub(Client).puts
|
14
|
+
end
|
15
|
+
|
16
|
+
it "returns true" do
|
17
|
+
Client.run.should be_true
|
18
|
+
end
|
19
|
+
|
20
|
+
it "prints 'SUCCESS'" do
|
21
|
+
mock(Client).puts("SUCCESS")
|
22
|
+
Client.run
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
describe 'when unsuccessful' do
|
27
|
+
before do
|
28
|
+
request = Object.new
|
29
|
+
mock(request).post("/runners/firefox", "selenium_host=localhost&selenium_port=4444")
|
30
|
+
response = Object.new
|
31
|
+
mock(response).body {"the failure message"}
|
32
|
+
mock(Net::HTTP).start(DEFAULT_HOST, DEFAULT_PORT).yields(request) {response}
|
33
|
+
stub(Client).puts
|
34
|
+
end
|
35
|
+
|
36
|
+
it "returns false" do
|
37
|
+
Client.run.should be_false
|
38
|
+
end
|
39
|
+
|
40
|
+
it "prints 'FAILURE' and the error message(s)" do
|
41
|
+
mock(Client).puts("FAILURE")
|
42
|
+
mock(Client).puts("the failure message")
|
43
|
+
Client.run
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe "arguments" do
|
48
|
+
attr_reader :request, :response
|
49
|
+
before do
|
50
|
+
@request = Object.new
|
51
|
+
@response = Object.new
|
52
|
+
mock(response).body {""}
|
53
|
+
mock(Net::HTTP).start(DEFAULT_HOST, DEFAULT_PORT).yields(request) {response}
|
54
|
+
stub(Client).puts
|
55
|
+
end
|
56
|
+
|
57
|
+
describe "when passed a custom spec_url" do
|
58
|
+
it "passes the spec_url as a post parameter" do
|
59
|
+
spec_url = 'http://foobar.com/foo'
|
60
|
+
mock(request).post(
|
61
|
+
"/runners/firefox",
|
62
|
+
"selenium_host=localhost&selenium_port=4444&spec_url=#{CGI.escape(spec_url)}"
|
63
|
+
)
|
64
|
+
Client.run(:spec_url => spec_url)
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
describe "when passed a custom selenium host" do
|
69
|
+
it "passes the selenium_host as a post parameter" do
|
70
|
+
selenium_host = 'test-runner'
|
71
|
+
mock(request).post(
|
72
|
+
"/runners/firefox",
|
73
|
+
"selenium_host=test-runner&selenium_port=4444"
|
74
|
+
)
|
75
|
+
Client.run(:selenium_host => selenium_host)
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
describe "when passed a custom selenium port" do
|
80
|
+
it "passes the selenium_port as a post parameter" do
|
81
|
+
selenium_port = 5000
|
82
|
+
mock(request).post(
|
83
|
+
"/runners/firefox",
|
84
|
+
"selenium_host=localhost&selenium_port=5000"
|
85
|
+
)
|
86
|
+
Client.run(:selenium_port => selenium_port)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
end
|
92
|
+
|
93
|
+
describe ".run_argv" do
|
94
|
+
attr_reader :request, :response
|
95
|
+
before do
|
96
|
+
@request = Object.new
|
97
|
+
@response = Object.new
|
98
|
+
mock(response).body {""}
|
99
|
+
mock(Net::HTTP).start(DEFAULT_HOST, DEFAULT_PORT).yields(request) {response}
|
100
|
+
stub(Client).puts
|
101
|
+
end
|
102
|
+
|
103
|
+
describe "when passed a custom spec_url" do
|
104
|
+
it "passes the spec_url as a post parameter" do
|
105
|
+
spec_url = 'http://foobar.com/foo'
|
106
|
+
mock(request).post(
|
107
|
+
"/runners/firefox",
|
108
|
+
"selenium_host=localhost&selenium_port=4444&spec_url=#{CGI.escape(spec_url)}"
|
109
|
+
)
|
110
|
+
Client.run_argv(['--spec_url', spec_url])
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
describe "when passed a custom selenium host" do
|
115
|
+
it "passes the selenium_host as a post parameter" do
|
116
|
+
selenium_host = 'test-runner'
|
117
|
+
mock(request).post(
|
118
|
+
"/runners/firefox",
|
119
|
+
"selenium_host=test-runner&selenium_port=4444"
|
120
|
+
)
|
121
|
+
Client.run_argv(['--selenium_host', selenium_host])
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
describe "when passed a custom selenium port" do
|
126
|
+
it "passes the selenium_port as a post parameter" do
|
127
|
+
selenium_port = 5000
|
128
|
+
mock(request).post(
|
129
|
+
"/runners/firefox",
|
130
|
+
"selenium_host=localhost&selenium_port=5000"
|
131
|
+
)
|
132
|
+
Client.run_argv(['--selenium_port', selenium_port.to_s])
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require File.expand_path("#{File.dirname(__FILE__)}/../unit_spec_helper")
|
2
|
+
|
3
|
+
module JsTestCore
|
4
|
+
describe RailsServer do
|
5
|
+
it "subclasses Server" do
|
6
|
+
RailsServer.superclass.should == Server
|
7
|
+
end
|
8
|
+
|
9
|
+
describe ".run" do
|
10
|
+
attr_reader :rails_root
|
11
|
+
before do
|
12
|
+
@rails_root = "/rails/root"
|
13
|
+
Server.instance = nil
|
14
|
+
end
|
15
|
+
|
16
|
+
it "initializes the RailsServer and runs the Thin Handler and sets Server.instance to the RailsServer instance" do
|
17
|
+
host = DEFAULT_HOST
|
18
|
+
port = DEFAULT_PORT
|
19
|
+
server_instance = nil
|
20
|
+
mock.proxy(RailsServer).new(
|
21
|
+
rails_root,
|
22
|
+
host,
|
23
|
+
port
|
24
|
+
) do |new_instance|
|
25
|
+
server_instance = new_instance
|
26
|
+
end
|
27
|
+
|
28
|
+
mock(EventMachine).run.yields
|
29
|
+
mock(EventMachine).start_server(host, port, ::Thin::JsTestCoreConnection)
|
30
|
+
RailsServer.run(rails_root)
|
31
|
+
Server.instance.should == server_instance
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
describe "#initialize" do
|
36
|
+
it "sets the server paths based on the passed in rails root" do
|
37
|
+
rails_root = "/rails/root"
|
38
|
+
server = RailsServer.new(rails_root)
|
39
|
+
server.spec_root_path.should == "#{rails_root}/spec/javascripts"
|
40
|
+
server.implementation_root_path.should == "#{rails_root}/public/javascripts"
|
41
|
+
server.public_path.should == "#{rails_root}/public"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require File.expand_path("#{File.dirname(__FILE__)}/../../unit_spec_helper")
|
2
|
+
|
3
|
+
module JsTestCore
|
4
|
+
module Resources
|
5
|
+
describe Dir do
|
6
|
+
attr_reader :dir, :absolute_path, :relative_path
|
7
|
+
|
8
|
+
describe "#locate" do
|
9
|
+
before do
|
10
|
+
@absolute_path = core_path
|
11
|
+
@relative_path = "/core"
|
12
|
+
@dir = Resources::Dir.new(absolute_path, relative_path)
|
13
|
+
end
|
14
|
+
|
15
|
+
describe "when passed a name of a real file" do
|
16
|
+
it "returns a Resources::File representing it" do
|
17
|
+
file = dir.locate("JsTestCore.css")
|
18
|
+
file.relative_path.should == "/core/JsTestCore.css"
|
19
|
+
file.absolute_path.should == "#{core_path}/JsTestCore.css"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
describe "#glob" do
|
25
|
+
before do
|
26
|
+
@absolute_path = spec_root_path
|
27
|
+
@relative_path = "/specs"
|
28
|
+
@dir = Resources::Dir.new(absolute_path, relative_path)
|
29
|
+
end
|
30
|
+
|
31
|
+
it "returns an array of matching Files under this directory with the correct relative paths" do
|
32
|
+
globbed_files = dir.glob("/**/*_spec.js")
|
33
|
+
|
34
|
+
globbed_files.size.should == 3
|
35
|
+
globbed_files.should contain_spec_file_with_correct_paths("/failing_spec.js")
|
36
|
+
globbed_files.should contain_spec_file_with_correct_paths("/foo/failing_spec.js")
|
37
|
+
globbed_files.should contain_spec_file_with_correct_paths("/foo/passing_spec.js")
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|