Project

General

Profile

Download (2.18 KB) Statistics
| Branch: | Tag: | Revision:
require 'test_helper'

class Api::V2::OperatingsystemsControllerTest < ActionController::TestCase


os = {
:name => "awsome_os",
:major => "1",
:minor => "2"
}

test "should get index" do
get :index, { }
assert_response :success
assert_not_nil assigns(:operatingsystems)
end

test "should show os" do
get :show, { :id => operatingsystems(:redhat).to_param }
assert_response :success
assert_not_nil assigns(:operatingsystem)
show_response = ActiveSupport::JSON.decode(@response.body)
assert !show_response.empty?

end

test "should create os" do
assert_difference('Operatingsystem.count') do
post :create, { :operatingsystem => os }
end
assert_response :success
assert_not_nil assigns(:operatingsystem)
end


test "should not create os without version" do
assert_difference('Operatingsystem.count', 0) do
post :create, { :operatingsystem => os.except(:major) }
end
assert_response :unprocessable_entity
end

test "should update os" do
put :update, { :id => operatingsystems(:redhat).to_param, :operatingsystem => { :name => "new_name" } }
assert_response :success
end

test "should destroy os" do
assert_difference('Operatingsystem.count', -1) do
delete :destroy, { :id => operatingsystems(:no_hosts_os).to_param }
end
assert_response :success
end

test "should update associated architectures by ids" do
os = operatingsystems(:redhat)
assert_difference('os.architectures.count') do
put :update, { :id => operatingsystems(:redhat).to_param, :operatingsystem => { },
:architectures => [{ :id => architectures(:x86_64).id }, { :id => architectures(:sparc).id } ]
}
end
assert_response :success
end

test "should update associated architectures by name" do
os = operatingsystems(:redhat)
assert_difference('os.architectures.count') do
put :update, { :id => operatingsystems(:redhat).to_param, :operatingsystem => { },
:architectures => [{ :name => architectures(:x86_64).name }, { :name => architectures(:sparc).name } ]
}
end
assert_response :success
end

end
(24-24/43)