3 class ProjectsControllerTest < ActionController::TestCase
4 test "invited user is asked to sign user agreements on front page" do
5 get :index, {}, session_for(:inactive)
6 assert_response :redirect
7 assert_match(/^#{Regexp.escape(user_agreements_url)}\b/,
8 @response.redirect_url,
9 "Inactive user was not redirected to user_agreements page")
12 test "uninvited user is asked to wait for activation" do
13 get :index, {}, session_for(:inactive_uninvited)
14 assert_response :redirect
15 assert_match(/^#{Regexp.escape(inactive_users_url)}\b/,
16 @response.redirect_url,
17 "Uninvited user was not redirected to inactive user page")
21 [:project_viewer, false]].each do |which_user, should_show|
22 test "create subproject button #{'not ' unless should_show} shown to #{which_user}" do
23 readonly_project_uuid = api_fixture('groups')['aproject']['uuid']
25 id: readonly_project_uuid
26 }, session_for(which_user)
27 buttons = css_select('[data-method=post]').select do |el|
28 el.attributes['href'].match /project.*owner_uuid.*#{readonly_project_uuid}/
31 assert_not_empty(buttons, "did not offer to create a subproject")
33 assert_empty(buttons.collect(&:to_s),
34 "offered to create a subproject in a non-writable project")
39 test "sharing a project with a user and group" do
40 uuid_list = [api_fixture("groups")["future_project_viewing_group"]["uuid"],
41 api_fixture("users")["future_project_user"]["uuid"]]
43 id: api_fixture("groups")["asubproject"]["uuid"],
47 assert_response :success
48 assert_equal(uuid_list, json_response["success"])
51 test "user with project read permission can't add permissions" do
52 share_uuid = api_fixture("users")["spectator"]["uuid"]
54 id: api_fixture("groups")["aproject"]["uuid"],
57 session_for(:project_viewer))
59 assert(json_response["errors"].andand.
60 any? { |msg| msg.start_with?("#{share_uuid}: ") },
61 "JSON response missing properly formatted sharing error")
64 def user_can_manage(user_sym, group_key)
65 get(:show, {id: api_fixture("groups")[group_key]["uuid"]},
66 session_for(user_sym))
67 is_manager = assigns(:user_is_manager)
68 assert_not_nil(is_manager, "user_is_manager flag not set")
70 assert_empty(assigns(:share_links),
71 "non-manager has share links set")
76 test "admin can_manage aproject" do
77 assert user_can_manage(:admin, "aproject")
80 test "owner can_manage aproject" do
81 assert user_can_manage(:active, "aproject")
84 test "owner can_manage asubproject" do
85 assert user_can_manage(:active, "asubproject")
88 test "viewer can't manage aproject" do
89 refute user_can_manage(:project_viewer, "aproject")
92 test "viewer can't manage asubproject" do
93 refute user_can_manage(:project_viewer, "asubproject")
96 test 'projects#show tab infinite scroll partial obeys limit' do
97 get_contents_rows(limit: 1, filters: [['uuid','is_a',['arvados#job']]])
98 assert_response :success
99 assert_equal(1, json_response['content'].scan('<tr').count,
100 "Did not get exactly one row")
103 ['', ' asc', ' desc'].each do |direction|
104 test "projects#show tab partial orders correctly by #{direction}" do
105 _test_tab_content_order direction
109 def _test_tab_content_order direction
110 get_contents_rows(limit: 100,
111 order: "created_at#{direction}",
112 filters: [['uuid','is_a',['arvados#job',
113 'arvados#pipelineInstance']]])
114 assert_response :success
115 not_grouped_by_kind = nil
119 json_response['content'].scan /<tr[^>]+>/ do |tr_tag|
121 tr_tag.scan(/\ data-object-created-at=\"(.*?)\"/).each do |t,|
123 correct_operator = / desc$/ =~ direction ? :>= : :<=
124 assert_operator(last_timestamp, correct_operator, t,
125 "Rows are not sorted by created_at#{direction}")
128 found_timestamps += 1
130 assert_equal(1, found_timestamps,
131 "Content row did not have exactly one timestamp")
133 # Confirm that the test for timestamp ordering couldn't have
134 # passed merely because the test fixtures have convenient
135 # timestamps (e.g., there is only one pipeline and one job in
136 # the project being tested, or there are no pipelines at all in
137 # the project being tested):
138 tr_tag.scan /\ data-kind=\"(.*?)\"/ do |kind|
139 if last_kind and last_kind != kind and found_kind[kind]
140 # We saw this kind before, then a different kind, then
141 # this kind again. That means objects are not grouped by
143 not_grouped_by_kind = true
145 found_kind[kind] ||= 0
146 found_kind[kind] += 1
150 assert_equal(true, not_grouped_by_kind,
151 "Could not confirm that results are not grouped by kind")
154 def get_contents_rows params
156 id: api_fixture('users')['active']['uuid'],
157 partial: :contents_rows,
160 encoded_params = Hash[params.map { |k,v|
161 [k, (v.is_a?(Array) || v.is_a?(Hash)) ? v.to_json : v]
163 get :show, encoded_params, session_for(:active)