Project

General

Profile

« Previous | Next » 

Revision 46338cd7

Added by Daniel Lobato Garcia over 10 years ago

fixes #3515 - API handles not found objects with 404

View differences:

test/functional/api/v2/subnets_controller_test.rb
valid_attrs = { :name => 'QA2', :network => '10.35.2.27', :mask => '255.255.255.0' }
def test_index
test "index content is a JSON array" do
get :index
subnets = ActiveSupport::JSON.decode(@response.body)
assert subnets['results'].is_a?(Array)
assert_response :success
assert !subnets.empty?
end
test "should show individual record" do
......
assert_response :success
end
test "does not create subnet with non-existent domain" do
post :create, { :subnet => valid_attrs.merge( :domain_ids => [1, 2] ) }
assert_response :not_found
end
test "should update subnet" do
put :update, { :id => subnets(:one).to_param, :subnet => { } }
assert_response :success
......
assert_response :unprocessable_entity
end
def test_destroy_json
test "delete destroys subnet not in use" do
subnet = Subnet.first
subnet.hosts.clear
subnet.interfaces.clear

Also available in: Unified diff