aboutsummaryrefslogtreecommitdiff
path: root/spec/unit
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit')
-rw-r--r--spec/unit/zero/router/call_spec.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/spec/unit/zero/router/call_spec.rb b/spec/unit/zero/router/call_spec.rb
index 683eca8..923b747 100644
--- a/spec/unit/zero/router/call_spec.rb
+++ b/spec/unit/zero/router/call_spec.rb
@@ -44,6 +44,22 @@ describe Zero::Router, '#call' do
it_behaves_like "a sample app"
end
+ context 'with nested variable routes' do
+ let(:routes) do
+ { '/' => wrong_app, '/foo/:id' => app, '/foo/:id/bar' => wrong_app }
+ end
+ let(:env) { EnvGenerator.get('/foo/23') }
+ it_behaves_like "a sample app"
+ end
+
+ context 'with nested routes and variable in the middle' do
+ let(:routes) do
+ { '/' => wrong_app, '/foo/:id' => wrong_app, '/foo/:id/bar' => app }
+ end
+ let(:env) { EnvGenerator.get('/foo/23/bar') }
+ it_behaves_like "a sample app"
+ end
+
context 'with a route not found' do
let(:routes) {{ '/foo' => wrong_app, '/foo/bar/baz' => app }}
let(:env) { EnvGenerator.get('/foo/bar') }
@@ -72,4 +88,19 @@ describe Zero::Router, '#call' do
it_behaves_like 'a sample app'
end
+
+ context 'with parameters and nested routes' do
+ let(:routes) do
+ { '/' => wrong_app, '/foo/:id' => app, '/foo/:id/bar' => wrong_app }
+ end
+ let(:env) { EnvGenerator.get('/foo/bar') }
+ let(:app) do
+ lambda do |env|
+ [200, content_type, [Zero::Request.new(env).params['id']]]
+ end
+ end
+ let(:result) { ['bar'] }
+
+ it_behaves_like "a sample app"
+ end
end