Sha256: 6f1a9483c6d29109648d288edcb84b1e85aeab7792cc24cb2b769443ba080037

Contents?: true

Size: 1.3 KB

Versions: 8

Compression:

Stored size: 1.3 KB

Contents

require 'lib/usher'

route_set = Usher.new

describe "Usher grapher" do

  before(:each) do
    route_set.reset!
  end

  it "should find a simple path" do
    route_set.add_route('/:a/:b/:c')
    route_set.generate_url(nil, {:a => 'A', :b => 'B', :c => 'C'}).should == '/A/B/C'
  end

  it "should pick a more specific route" do
    route_set.add_route('/:a/:b')
    route_set.add_route('/:a/:b/:c')
    route_set.generate_url(nil, {:a => 'A', :b => 'B', :c => 'C'}).should == '/A/B/C'
  end

  it "should fail to generate a route when none matches" do
    route_set.add_route('/:a/:b')
    proc {route_set.generate_url(nil, {:c => 'C', :d => 'D'}) }.should raise_error Usher::UnrecognizedException
  end

  it "should find the most specific route and append extra parts on as a query string" do
    route_set.add_route('/:a/:b/:c')
    route_set.add_route('/:a/:b')
    route_set.generate_url(nil, {:a => 'A', :b => 'B', :d => 'C'}).should == '/A/B?d=C'
  end
  
  it "should do a validity check against the incoming variables when asked to" do
    route_set.add_route('/:a/:b', :b => /\d+/)
    route_set.generate_url(nil, {:a => 'A', :b => 'B'}).should == '/A/B'
    proc{ route_set.generate_url(nil, {:a => 'A', :b => 'B'}, :check_variables => true).should == '/A/B?d=C'}.should raise_error Usher::ValidationException
  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
joshbuddy-usher-0.3.3 spec/grapher_spec.rb
joshbuddy-usher-0.3.4 spec/grapher_spec.rb
joshbuddy-usher-0.3.5 spec/grapher_spec.rb
joshbuddy-usher-0.3.6 spec/grapher_spec.rb
joshbuddy-usher-0.4.0 spec/grapher_spec.rb
joshbuddy-usher-0.4.1 spec/private/grapher_spec.rb
joshbuddy-usher-0.4.2 spec/private/grapher_spec.rb
joshbuddy-usher-0.4.3 spec/private/grapher_spec.rb