108 lines
4.3 KiB
Ruby
108 lines
4.3 KiB
Ruby
require "test_helper"
|
|
|
|
class OldRelationsControllerTest < ActionDispatch::IntegrationTest
|
|
def test_routes
|
|
assert_routing(
|
|
{ :path => "/relation/1/history/2", :method => :get },
|
|
{ :controller => "old_relations", :action => "show", :id => "1", :version => "2" }
|
|
)
|
|
end
|
|
|
|
def test_visible_with_one_version
|
|
relation = create(:relation, :with_history)
|
|
get old_relation_path(relation, 1)
|
|
assert_response :success
|
|
assert_template "old_relations/show"
|
|
assert_template :layout => "map"
|
|
assert_select "h4", /^Version/ do
|
|
assert_select "a[href='#{old_relation_path relation, 1}']", :count => 0
|
|
end
|
|
assert_select ".secondary-actions a[href='#{relation_version_path relation, 1}']", :count => 1
|
|
assert_select ".secondary-actions a[href='#{relation_path relation}']", :count => 1
|
|
assert_select ".secondary-actions a[href='#{relation_history_path relation}']", :count => 1
|
|
end
|
|
|
|
def test_visible_with_two_versions
|
|
relation = create(:relation, :with_history, :version => 2)
|
|
get old_relation_path(relation, 1)
|
|
assert_response :success
|
|
assert_template "old_relations/show"
|
|
assert_template :layout => "map"
|
|
assert_select "h4", /^Version/ do
|
|
assert_select "a[href='#{old_relation_path relation, 1}']", :count => 0
|
|
end
|
|
assert_select ".secondary-actions a[href='#{relation_version_path relation, 1}']", :count => 1
|
|
assert_select ".secondary-actions a[href='#{relation_path relation}']", :count => 1
|
|
assert_select ".secondary-actions a[href='#{relation_history_path relation}']", :count => 1
|
|
assert_select ".secondary-actions a[href='#{old_relation_path relation, 2}']", :count => 1
|
|
|
|
get old_relation_path(relation, 2)
|
|
assert_response :success
|
|
assert_template "old_relations/show"
|
|
assert_template :layout => "map"
|
|
assert_select "h4", /^Version/ do
|
|
assert_select "a[href='#{old_relation_path relation, 2}']", :count => 0
|
|
end
|
|
assert_select ".secondary-actions a[href='#{relation_version_path relation, 2}']", :count => 1
|
|
assert_select ".secondary-actions a[href='#{relation_path relation}']", :count => 1
|
|
assert_select ".secondary-actions a[href='#{relation_history_path relation}']", :count => 1
|
|
assert_select ".secondary-actions a[href='#{old_relation_path relation, 1}']", :count => 1
|
|
end
|
|
|
|
def test_visible_with_members
|
|
relation = create(:relation, :with_history)
|
|
create(:old_relation_member, :old_relation => relation.old_relations.first)
|
|
get old_relation_path(relation, 1)
|
|
assert_response :success
|
|
assert_template "old_relations/show"
|
|
assert_template :layout => "map"
|
|
end
|
|
|
|
def test_redacted
|
|
relation = create_redacted_relation
|
|
get old_relation_path(relation, 1)
|
|
assert_response :success
|
|
assert_template "old_relations/show"
|
|
assert_template :layout => "map"
|
|
assert_select ".secondary-actions a[href='#{relation_path relation}']", :count => 1
|
|
assert_select ".secondary-actions a[href='#{old_relation_path relation, 1}']", :count => 0
|
|
assert_select ".secondary-actions a[href='#{relation_version_path relation, 1}']", :count => 0
|
|
end
|
|
|
|
test "don't show redacted versions to anonymous users" do
|
|
relation = create_redacted_relation
|
|
get old_relation_path(relation, 1, :params => { :show_redactions => true })
|
|
assert_response :redirect
|
|
end
|
|
|
|
test "don't show redacted versions to regular users" do
|
|
session_for(create(:user))
|
|
relation = create_redacted_relation
|
|
get old_relation_path(relation, 1, :params => { :show_redactions => true })
|
|
assert_response :redirect
|
|
end
|
|
|
|
test "show redacted versions to moderators" do
|
|
session_for(create(:moderator_user))
|
|
relation = create_redacted_relation
|
|
get old_relation_path(relation, 1, :params => { :show_redactions => true })
|
|
assert_response :success
|
|
end
|
|
|
|
def test_not_found
|
|
get old_relation_path(0, 0)
|
|
assert_response :not_found
|
|
assert_template "old_relations/not_found"
|
|
assert_template :layout => "map"
|
|
assert_select "#sidebar_content", /relation #0 version 0 could not be found/
|
|
end
|
|
|
|
private
|
|
|
|
def create_redacted_relation
|
|
create(:relation, :with_history, :deleted, :version => 2) do |relation|
|
|
relation_v1 = relation.old_relations.find_by(:version => 1)
|
|
relation_v1.redact!(create(:redaction))
|
|
end
|
|
end
|
|
end
|