178 lines
5 KiB
Ruby
178 lines
5 KiB
Ruby
require "test_helper"
|
|
|
|
class RedactionsControllerTest < ActionDispatch::IntegrationTest
|
|
##
|
|
# test all routes which lead to this controller
|
|
def test_routes
|
|
assert_routing(
|
|
{ :path => "/redactions", :method => :get },
|
|
{ :controller => "redactions", :action => "index" }
|
|
)
|
|
assert_routing(
|
|
{ :path => "/redactions/new", :method => :get },
|
|
{ :controller => "redactions", :action => "new" }
|
|
)
|
|
assert_routing(
|
|
{ :path => "/redactions", :method => :post },
|
|
{ :controller => "redactions", :action => "create" }
|
|
)
|
|
assert_routing(
|
|
{ :path => "/redactions/1", :method => :get },
|
|
{ :controller => "redactions", :action => "show", :id => "1" }
|
|
)
|
|
assert_routing(
|
|
{ :path => "/redactions/1/edit", :method => :get },
|
|
{ :controller => "redactions", :action => "edit", :id => "1" }
|
|
)
|
|
assert_routing(
|
|
{ :path => "/redactions/1", :method => :put },
|
|
{ :controller => "redactions", :action => "update", :id => "1" }
|
|
)
|
|
assert_routing(
|
|
{ :path => "/redactions/1", :method => :delete },
|
|
{ :controller => "redactions", :action => "destroy", :id => "1" }
|
|
)
|
|
end
|
|
|
|
def test_index
|
|
create(:redaction)
|
|
|
|
get redactions_path
|
|
assert_response :success
|
|
assert_template :index
|
|
assert_select "ul#redaction_list", 1 do
|
|
assert_select "li", Redaction.count
|
|
end
|
|
end
|
|
|
|
def test_new
|
|
get new_redaction_path
|
|
assert_response :redirect
|
|
assert_redirected_to login_path(:referer => new_redaction_path)
|
|
end
|
|
|
|
def test_new_moderator
|
|
session_for(create(:moderator_user))
|
|
|
|
get new_redaction_path
|
|
assert_response :success
|
|
assert_template :new
|
|
end
|
|
|
|
def test_new_non_moderator
|
|
session_for(create(:user))
|
|
|
|
get new_redaction_path
|
|
assert_response :redirect
|
|
assert_redirected_to :controller => "errors", :action => "forbidden"
|
|
end
|
|
|
|
def test_create_moderator
|
|
session_for(create(:moderator_user))
|
|
|
|
post redactions_path(:redaction => { :title => "Foo", :description => "Description here." })
|
|
assert_response :redirect
|
|
assert_redirected_to(redaction_path(Redaction.find_by(:title => "Foo")))
|
|
end
|
|
|
|
def test_create_moderator_invalid
|
|
session_for(create(:moderator_user))
|
|
|
|
post redactions_path(:redaction => { :title => "Foo", :description => "" })
|
|
assert_response :success
|
|
assert_template :new
|
|
end
|
|
|
|
def test_create_non_moderator
|
|
session_for(create(:user))
|
|
|
|
post redactions_path(:redaction => { :title => "Foo", :description => "Description here." })
|
|
assert_response :redirect
|
|
assert_redirected_to :controller => "errors", :action => "forbidden"
|
|
end
|
|
|
|
def test_destroy_moderator_empty
|
|
session_for(create(:moderator_user))
|
|
|
|
# create an empty redaction
|
|
redaction = create(:redaction)
|
|
|
|
delete redaction_path(:id => redaction)
|
|
assert_response :redirect
|
|
assert_redirected_to(redactions_path)
|
|
end
|
|
|
|
def test_destroy_moderator_non_empty
|
|
session_for(create(:moderator_user))
|
|
|
|
# create elements in the redaction
|
|
redaction = create(:redaction)
|
|
create(:old_node, :redaction => redaction)
|
|
|
|
delete redaction_path(:id => redaction)
|
|
assert_response :redirect
|
|
assert_redirected_to(redaction_path(redaction))
|
|
assert_match(/^Redaction is not empty/, flash[:error])
|
|
end
|
|
|
|
def test_delete_non_moderator
|
|
session_for(create(:user))
|
|
|
|
delete redaction_path(:id => create(:redaction))
|
|
assert_response :redirect
|
|
assert_redirected_to :controller => "errors", :action => "forbidden"
|
|
end
|
|
|
|
def test_edit
|
|
redaction = create(:redaction)
|
|
|
|
get edit_redaction_path(:id => redaction)
|
|
assert_response :redirect
|
|
assert_redirected_to login_path(:referer => edit_redaction_path(redaction))
|
|
end
|
|
|
|
def test_edit_moderator
|
|
session_for(create(:moderator_user))
|
|
|
|
get edit_redaction_path(:id => create(:redaction))
|
|
assert_response :success
|
|
end
|
|
|
|
def test_edit_non_moderator
|
|
session_for(create(:user))
|
|
|
|
get edit_redaction_path(:id => create(:redaction))
|
|
assert_response :redirect
|
|
assert_redirected_to :controller => "errors", :action => "forbidden"
|
|
end
|
|
|
|
def test_update_moderator
|
|
session_for(create(:moderator_user))
|
|
|
|
redaction = create(:redaction)
|
|
|
|
put redaction_path(:id => redaction, :redaction => { :title => "Foo", :description => "Description here." })
|
|
assert_response :redirect
|
|
assert_redirected_to(redaction_path(redaction))
|
|
end
|
|
|
|
def test_update_moderator_invalid
|
|
session_for(create(:moderator_user))
|
|
|
|
redaction = create(:redaction)
|
|
|
|
put redaction_path(:id => redaction, :redaction => { :title => "Foo", :description => "" })
|
|
assert_response :success
|
|
assert_template :edit
|
|
end
|
|
|
|
def test_updated_non_moderator
|
|
session_for(create(:user))
|
|
|
|
redaction = create(:redaction)
|
|
|
|
put redaction_path(:id => redaction, :redaction => { :title => "Foo", :description => "Description here." })
|
|
assert_response :redirect
|
|
assert_redirected_to :controller => "errors", :action => "forbidden"
|
|
end
|
|
end
|