Move api element show and full tests
This commit is contained in:
parent
18f65b78eb
commit
9ef7f3a2e7
2 changed files with 29 additions and 29 deletions
|
@ -17,14 +17,6 @@ module Api
|
|||
{ :path => "/api/0.6/relations", :method => :post },
|
||||
{ :controller => "api/relations", :action => "create" }
|
||||
)
|
||||
assert_routing(
|
||||
{ :path => "/api/0.6/relation/1/full", :method => :get },
|
||||
{ :controller => "api/relations", :action => "full", :id => "1" }
|
||||
)
|
||||
assert_routing(
|
||||
{ :path => "/api/0.6/relation/1/full.json", :method => :get },
|
||||
{ :controller => "api/relations", :action => "full", :id => "1", :format => "json" }
|
||||
)
|
||||
assert_routing(
|
||||
{ :path => "/api/0.6/relation/1", :method => :get },
|
||||
{ :controller => "api/relations", :action => "show", :id => "1" }
|
||||
|
@ -33,6 +25,14 @@ module Api
|
|||
{ :path => "/api/0.6/relation/1.json", :method => :get },
|
||||
{ :controller => "api/relations", :action => "show", :id => "1", :format => "json" }
|
||||
)
|
||||
assert_routing(
|
||||
{ :path => "/api/0.6/relation/1/full", :method => :get },
|
||||
{ :controller => "api/relations", :action => "full", :id => "1" }
|
||||
)
|
||||
assert_routing(
|
||||
{ :path => "/api/0.6/relation/1/full.json", :method => :get },
|
||||
{ :controller => "api/relations", :action => "full", :id => "1", :format => "json" }
|
||||
)
|
||||
assert_routing(
|
||||
{ :path => "/api/0.6/relation/1", :method => :put },
|
||||
{ :controller => "api/relations", :action => "update", :id => "1" }
|
||||
|
@ -136,6 +136,19 @@ module Api
|
|||
assert_response :not_found
|
||||
end
|
||||
|
||||
def test_full
|
||||
# check the "full" mode
|
||||
get relation_full_path(:id => 999999)
|
||||
assert_response :not_found
|
||||
|
||||
get relation_full_path(:id => create(:relation, :deleted).id)
|
||||
assert_response :gone
|
||||
|
||||
get relation_full_path(:id => create(:relation).id)
|
||||
assert_response :success
|
||||
# FIXME: check whether this contains the stuff we want!
|
||||
end
|
||||
|
||||
##
|
||||
# check that all relations containing a particular node, and no extra
|
||||
# relations, are returned from the relations_for_node call.
|
||||
|
@ -201,19 +214,6 @@ module Api
|
|||
[relation_with_relation, second_relation])
|
||||
end
|
||||
|
||||
def test_full
|
||||
# check the "full" mode
|
||||
get relation_full_path(:id => 999999)
|
||||
assert_response :not_found
|
||||
|
||||
get relation_full_path(:id => create(:relation, :deleted).id)
|
||||
assert_response :gone
|
||||
|
||||
get relation_full_path(:id => create(:relation).id)
|
||||
assert_response :success
|
||||
# FIXME: check whether this contains the stuff we want!
|
||||
end
|
||||
|
||||
# -------------------------------------
|
||||
# Test simple relation creation.
|
||||
# -------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue