3 class OldRelationsControllerTest < ActionDispatch::IntegrationTest
6 { :path => "/relation/1/history/2", :method => :get },
7 { :controller => "old_relations", :action => "show", :id => "1", :version => "2" }
11 def test_visible_with_one_version
12 relation = create(:relation, :with_history)
13 get old_relation_path(relation, 1)
14 assert_response :success
15 assert_template "old_relations/show"
16 assert_template :layout => "map"
17 assert_select "h4", /^Version/ do
18 assert_select "a[href='#{old_relation_path relation, 1}']", :count => 0
20 assert_select ".secondary-actions a[href='#{relation_version_path relation, 1}']", :count => 1
21 assert_select ".secondary-actions a[href='#{relation_path relation}']", :count => 1
22 assert_select ".secondary-actions a[href='#{relation_history_path relation}']", :count => 1
25 def test_visible_with_two_versions
26 relation = create(:relation, :with_history, :version => 2)
27 get old_relation_path(relation, 1)
28 assert_response :success
29 assert_template "old_relations/show"
30 assert_template :layout => "map"
31 assert_select "h4", /^Version/ do
32 assert_select "a[href='#{old_relation_path relation, 1}']", :count => 0
34 assert_select ".secondary-actions a[href='#{relation_version_path relation, 1}']", :count => 1
35 assert_select ".secondary-actions a[href='#{relation_path relation}']", :count => 1
36 assert_select ".secondary-actions a[href='#{relation_history_path relation}']", :count => 1
37 assert_select ".secondary-actions a[href='#{old_relation_path relation, 2}']", :count => 1
39 get old_relation_path(relation, 2)
40 assert_response :success
41 assert_template "old_relations/show"
42 assert_template :layout => "map"
43 assert_select "h4", /^Version/ do
44 assert_select "a[href='#{old_relation_path relation, 2}']", :count => 0
46 assert_select ".secondary-actions a[href='#{relation_version_path relation, 2}']", :count => 1
47 assert_select ".secondary-actions a[href='#{relation_path relation}']", :count => 1
48 assert_select ".secondary-actions a[href='#{relation_history_path relation}']", :count => 1
49 assert_select ".secondary-actions a[href='#{old_relation_path relation, 1}']", :count => 1
52 def test_visible_with_members
53 relation = create(:relation, :with_history)
54 create(:old_relation_member, :old_relation => relation.old_relations.first)
55 get old_relation_path(relation, 1)
56 assert_response :success
57 assert_template "old_relations/show"
58 assert_template :layout => "map"
62 relation = create(:relation, :with_history, :deleted, :version => 2)
63 relation_v1 = relation.old_relations.find_by(:version => 1)
64 relation_v1.redact!(create(:redaction))
65 get old_relation_path(relation, 1)
66 assert_response :success
67 assert_template "old_relations/show"
68 assert_template :layout => "map"
69 assert_select ".secondary-actions a[href='#{relation_path relation}']", :count => 1
70 assert_select ".secondary-actions a[href='#{old_relation_path relation, 1}']", :count => 0
71 assert_select ".secondary-actions a[href='#{relation_version_path relation, 1}']", :count => 0
75 get old_relation_path(0, 0)
76 assert_response :not_found
77 assert_template "old_relations/not_found"
78 assert_template :layout => "map"
79 assert_select "#sidebar_content", /relation #0 version 0 could not be found/