2019-03-16 15:03:47 +00:00
|
|
|
# frozen_string_literal: true
|
2019-03-15 01:32:57 +00:00
|
|
|
|
2012-12-03 22:23:23 +00:00
|
|
|
# Redmine - project management software
|
2024-02-26 22:55:54 +00:00
|
|
|
# Copyright (C) 2006- Jean-Philippe Lang
|
2012-12-03 22:23:23 +00:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
2023-01-01 07:13:39 +00:00
|
|
|
require_relative '../test_helper'
|
2010-08-27 14:05:54 +00:00
|
|
|
|
2016-07-14 09:35:49 +00:00
|
|
|
class ActivitiesControllerTest < Redmine::ControllerTest
|
2010-08-27 14:05:54 +00:00
|
|
|
def test_project_index
|
2019-11-24 05:27:29 +00:00
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:id => 1,
|
|
|
|
|
:with_subprojects => 0
|
|
|
|
|
}
|
2019-11-24 05:27:29 +00:00
|
|
|
)
|
2010-08-27 14:05:54 +00:00
|
|
|
assert_response :success
|
2011-05-16 00:09:58 +00:00
|
|
|
|
2012-12-22 09:35:35 +00:00
|
|
|
assert_select 'h3', :text => /#{2.days.ago.to_date.day}/
|
|
|
|
|
assert_select 'dl dt.issue-edit a', :text => /(#{IssueStatus.find(2).name})/
|
2010-08-27 14:05:54 +00:00
|
|
|
end
|
2011-05-16 00:09:58 +00:00
|
|
|
|
2024-02-26 21:14:47 +00:00
|
|
|
def test_index_subproject_checkbox_should_check_descendants_visibility
|
|
|
|
|
@request.session[:user_id] = 2
|
|
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
|
|
|
|
:id => 5,
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
assert_response :success
|
|
|
|
|
|
|
|
|
|
assert_select '#sidebar input#with_subprojects'
|
|
|
|
|
|
|
|
|
|
project = Project.find(6)
|
|
|
|
|
project.is_public = false
|
|
|
|
|
project.save
|
|
|
|
|
|
|
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
|
|
|
|
:id => 5,
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
assert_response :success
|
|
|
|
|
|
|
|
|
|
assert_select '#sidebar input#with_subprojects', :count => 0
|
|
|
|
|
end
|
|
|
|
|
|
2011-11-29 19:57:07 +00:00
|
|
|
def test_project_index_with_invalid_project_id_should_respond_404
|
2019-11-24 05:27:29 +00:00
|
|
|
get(:index, :params => {:id => 299})
|
2024-05-18 05:56:55 +00:00
|
|
|
assert_response :not_found
|
2011-11-29 19:57:07 +00:00
|
|
|
end
|
|
|
|
|
|
2010-08-27 14:05:54 +00:00
|
|
|
def test_previous_project_index
|
2019-06-25 07:35:14 +00:00
|
|
|
@request.session[:user_id] = 1
|
2019-11-24 05:27:29 +00:00
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:id => 1,
|
|
|
|
|
:from => 2.days.ago.to_date
|
|
|
|
|
}
|
2019-11-24 05:27:29 +00:00
|
|
|
)
|
2010-08-27 14:05:54 +00:00
|
|
|
assert_response :success
|
2011-05-16 00:09:58 +00:00
|
|
|
|
2019-06-25 07:35:14 +00:00
|
|
|
assert_select 'h3', :text => /#{User.current.time_to_date(3.days.ago).day}/
|
2014-12-20 14:22:50 +00:00
|
|
|
assert_select 'dl dt.issue a', :text => /Cannot print recipes/
|
2010-08-27 14:05:54 +00:00
|
|
|
end
|
2011-05-16 00:09:58 +00:00
|
|
|
|
2010-08-27 14:05:54 +00:00
|
|
|
def test_global_index
|
2012-06-19 00:43:10 +00:00
|
|
|
@request.session[:user_id] = 1
|
2010-08-27 14:05:54 +00:00
|
|
|
get :index
|
|
|
|
|
assert_response :success
|
2011-05-16 00:09:58 +00:00
|
|
|
|
2012-06-19 00:43:10 +00:00
|
|
|
i5 = Issue.find(5)
|
|
|
|
|
d5 = User.find(1).time_to_date(i5.created_on)
|
2012-12-22 09:35:35 +00:00
|
|
|
|
|
|
|
|
assert_select 'h3', :text => /#{d5.day}/
|
|
|
|
|
assert_select 'dl dt.issue a', :text => /Subproject issue/
|
2010-08-27 14:05:54 +00:00
|
|
|
end
|
2011-05-16 00:09:58 +00:00
|
|
|
|
2010-08-27 14:05:54 +00:00
|
|
|
def test_user_index
|
2012-06-11 04:42:54 +00:00
|
|
|
@request.session[:user_id] = 1
|
2019-11-24 05:27:29 +00:00
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:user_id => 2
|
|
|
|
|
}
|
2019-11-24 05:27:29 +00:00
|
|
|
)
|
2010-08-27 14:05:54 +00:00
|
|
|
assert_response :success
|
2011-05-16 00:09:58 +00:00
|
|
|
|
2014-11-20 19:38:40 +00:00
|
|
|
assert_select 'h2 a[href="/users/2"]', :text => 'John Smith'
|
2021-02-21 01:45:16 +00:00
|
|
|
assert_select '#sidebar select#user_id option[value="2"][selected=selected]'
|
2012-06-09 10:32:34 +00:00
|
|
|
|
2012-06-11 04:42:54 +00:00
|
|
|
i1 = Issue.find(1)
|
|
|
|
|
d1 = User.find(1).time_to_date(i1.created_on)
|
|
|
|
|
|
2012-12-22 09:35:35 +00:00
|
|
|
assert_select 'h3', :text => /#{d1.day}/
|
2014-12-20 14:22:50 +00:00
|
|
|
assert_select 'dl dt.issue a', :text => /Cannot print recipes/
|
2010-08-27 14:05:54 +00:00
|
|
|
end
|
2011-05-16 00:09:58 +00:00
|
|
|
|
2011-11-29 19:57:07 +00:00
|
|
|
def test_user_index_with_invalid_user_id_should_respond_404
|
2019-11-24 05:27:29 +00:00
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:user_id => 299
|
|
|
|
|
}
|
2019-11-24 05:27:29 +00:00
|
|
|
)
|
2024-05-18 05:56:55 +00:00
|
|
|
assert_response :not_found
|
2011-11-29 19:57:07 +00:00
|
|
|
end
|
|
|
|
|
|
2021-09-06 18:40:14 +00:00
|
|
|
def test_user_index_with_non_visible_user_id_should_respond_404
|
|
|
|
|
Role.anonymous.update! :users_visibility => 'members_of_visible_projects'
|
|
|
|
|
user = User.generate!
|
|
|
|
|
|
|
|
|
|
@request.session[:user_id] = nil
|
|
|
|
|
get :index, :params => {
|
|
|
|
|
:user_id => user.id
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-18 05:56:55 +00:00
|
|
|
assert_response :not_found
|
2021-09-06 18:40:14 +00:00
|
|
|
end
|
|
|
|
|
|
2010-08-27 14:05:54 +00:00
|
|
|
def test_index_atom_feed
|
2020-12-22 11:52:16 +00:00
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
|
|
|
|
:format => 'atom',
|
|
|
|
|
:with_subprojects => 0
|
|
|
|
|
}
|
|
|
|
|
)
|
2010-08-27 14:05:54 +00:00
|
|
|
assert_response :success
|
2012-01-14 16:08:51 +00:00
|
|
|
|
2012-12-22 09:35:35 +00:00
|
|
|
assert_select 'feed' do
|
2020-12-22 11:52:16 +00:00
|
|
|
assert_select 'link[rel=self][href=?]', 'http://test.host/activity.atom?with_subprojects=0'
|
|
|
|
|
assert_select 'link[rel=alternate][href=?]', 'http://test.host/activity?with_subprojects=0'
|
2012-12-22 09:35:35 +00:00
|
|
|
assert_select 'entry' do
|
2020-12-22 11:52:16 +00:00
|
|
|
assert_select 'link[href=?]', 'http://test.host/issues/11'
|
2012-12-22 09:35:35 +00:00
|
|
|
end
|
|
|
|
|
end
|
2012-01-14 16:08:51 +00:00
|
|
|
end
|
|
|
|
|
|
2021-04-12 09:10:41 +00:00
|
|
|
def test_index_atom_feed_should_respect_feeds_limit_setting
|
|
|
|
|
with_settings :feeds_limit => '20' do
|
|
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
|
|
|
|
:format => 'atom'
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
assert_response :success
|
|
|
|
|
|
|
|
|
|
assert_select 'feed' do
|
|
|
|
|
assert_select 'entry', :count => 20
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2012-01-14 16:08:51 +00:00
|
|
|
def test_index_atom_feed_with_explicit_selection
|
2020-12-22 11:52:16 +00:00
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
|
|
|
|
:format => 'atom',
|
|
|
|
|
:with_subprojects => 0,
|
|
|
|
|
:show_changesets => 1,
|
|
|
|
|
:show_documents => 1,
|
|
|
|
|
:show_files => 1,
|
|
|
|
|
:show_issues => 1,
|
|
|
|
|
:show_messages => 1,
|
|
|
|
|
:show_news => 1,
|
|
|
|
|
:show_time_entries => 1,
|
|
|
|
|
:show_wiki_edits => 1
|
|
|
|
|
}
|
|
|
|
|
)
|
2012-01-14 16:08:51 +00:00
|
|
|
assert_response :success
|
|
|
|
|
|
2012-12-22 09:35:35 +00:00
|
|
|
assert_select 'feed' do
|
2020-12-22 11:52:16 +00:00
|
|
|
assert_select 'link[rel=self][href=?]', 'http://test.host/activity.atom?show_changesets=1&show_documents=1&show_files=1&show_issues=1&show_messages=1&show_news=1&show_time_entries=1&show_wiki_edits=1&with_subprojects=0'
|
|
|
|
|
assert_select 'link[rel=alternate][href=?]', 'http://test.host/activity?show_changesets=1&show_documents=1&show_files=1&show_issues=1&show_messages=1&show_news=1&show_time_entries=1&show_wiki_edits=1&with_subprojects=0'
|
2012-12-22 09:35:35 +00:00
|
|
|
assert_select 'entry' do
|
2020-12-22 11:52:16 +00:00
|
|
|
assert_select 'link[href=?]', 'http://test.host/issues/11'
|
2012-12-22 09:35:35 +00:00
|
|
|
end
|
|
|
|
|
end
|
2010-08-27 14:05:54 +00:00
|
|
|
end
|
2011-11-29 19:57:07 +00:00
|
|
|
|
|
|
|
|
def test_index_atom_feed_with_one_item_type
|
2014-10-22 17:37:16 +00:00
|
|
|
with_settings :default_language => 'en' do
|
2019-11-24 05:27:29 +00:00
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:format => 'atom',
|
|
|
|
|
:show_issues => '1'
|
|
|
|
|
}
|
2019-11-24 05:27:29 +00:00
|
|
|
)
|
2014-10-22 17:37:16 +00:00
|
|
|
assert_response :success
|
|
|
|
|
assert_select 'title', :text => /Issues/
|
|
|
|
|
end
|
2011-11-29 19:57:07 +00:00
|
|
|
end
|
2012-10-03 21:36:19 +00:00
|
|
|
|
2014-12-05 12:38:48 +00:00
|
|
|
def test_index_atom_feed_with_user
|
2019-11-24 05:27:29 +00:00
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:user_id => 2,
|
|
|
|
|
:format => 'atom'
|
|
|
|
|
}
|
2019-11-24 05:27:29 +00:00
|
|
|
)
|
2014-12-05 12:38:48 +00:00
|
|
|
assert_response :success
|
|
|
|
|
assert_select 'title', :text => "Redmine: #{User.find(2).name}"
|
|
|
|
|
end
|
|
|
|
|
|
2020-12-14 01:25:34 +00:00
|
|
|
def test_index_atom_feed_with_subprojects
|
|
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
|
|
|
|
:format => 'atom',
|
|
|
|
|
:id => 'ecookbook',
|
|
|
|
|
:with_subprojects => 1,
|
|
|
|
|
:show_issues => 1
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
assert_response :success
|
|
|
|
|
|
|
|
|
|
assert_select 'feed' do
|
|
|
|
|
# eCookbook
|
|
|
|
|
assert_select 'title', text: 'Bug #1: Cannot print recipes'
|
|
|
|
|
# eCookbook Subproject 1
|
|
|
|
|
assert_select 'title', text: 'eCookbook Subproject 1 - Bug #5 (New): Subproject issue'
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2012-10-03 21:36:19 +00:00
|
|
|
def test_index_should_show_private_notes_with_permission_only
|
2016-07-18 21:26:30 +00:00
|
|
|
journal = Journal.create!(:journalized => Issue.find(2), :notes => 'Private notes', :private_notes => true)
|
2012-10-03 21:36:19 +00:00
|
|
|
@request.session[:user_id] = 2
|
|
|
|
|
|
|
|
|
|
get :index
|
|
|
|
|
assert_response :success
|
2016-07-18 21:26:30 +00:00
|
|
|
assert_select 'dl', :text => /Private notes/
|
2012-10-03 21:36:19 +00:00
|
|
|
|
|
|
|
|
Role.find(1).remove_permission! :view_private_notes
|
|
|
|
|
get :index
|
|
|
|
|
assert_response :success
|
2016-07-18 21:26:30 +00:00
|
|
|
assert_select 'dl', :text => /Private notes/, :count => 0
|
2012-10-03 21:36:19 +00:00
|
|
|
end
|
2015-10-15 19:06:22 +00:00
|
|
|
|
|
|
|
|
def test_index_with_submitted_scope_should_save_as_preference
|
|
|
|
|
@request.session[:user_id] = 2
|
2019-11-24 05:27:29 +00:00
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
2017-05-31 17:32:34 +00:00
|
|
|
:show_issues => '1',
|
|
|
|
|
:show_messages => '1',
|
|
|
|
|
:submit => 'Apply'
|
|
|
|
|
}
|
2019-11-24 05:27:29 +00:00
|
|
|
)
|
2015-10-15 19:06:22 +00:00
|
|
|
assert_response :success
|
|
|
|
|
assert_equal %w(issues messages), User.find(2).pref.activity_scope.sort
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_index_scope_should_default_to_user_preference
|
|
|
|
|
pref = User.find(2).pref
|
|
|
|
|
pref.activity_scope = %w(issues news)
|
|
|
|
|
pref.save!
|
|
|
|
|
@request.session[:user_id] = 2
|
|
|
|
|
|
|
|
|
|
get :index
|
|
|
|
|
assert_response :success
|
2016-07-18 21:26:30 +00:00
|
|
|
|
|
|
|
|
assert_select '#activity_scope_form' do
|
|
|
|
|
assert_select 'input[checked=checked]', 2
|
|
|
|
|
assert_select 'input[name=show_issues][checked=checked]'
|
|
|
|
|
assert_select 'input[name=show_news][checked=checked]'
|
|
|
|
|
end
|
2015-10-15 19:06:22 +00:00
|
|
|
end
|
2017-01-04 21:13:28 +00:00
|
|
|
|
|
|
|
|
def test_index_should_not_show_next_page_link
|
|
|
|
|
@request.session[:user_id] = 2
|
|
|
|
|
|
|
|
|
|
get :index
|
|
|
|
|
assert_response :success
|
|
|
|
|
assert_select '.pagination a', :text => /Previous/
|
|
|
|
|
assert_select '.pagination a', :text => /Next/, :count => 0
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_index_up_to_yesterday_should_show_next_page_link
|
|
|
|
|
@request.session[:user_id] = 2
|
2019-11-24 05:27:29 +00:00
|
|
|
get(
|
|
|
|
|
:index,
|
|
|
|
|
:params => {
|
|
|
|
|
:from => (User.find(2).today - 1)
|
2017-05-31 17:32:34 +00:00
|
|
|
}
|
2019-11-24 05:27:29 +00:00
|
|
|
)
|
2017-01-04 21:13:28 +00:00
|
|
|
assert_response :success
|
|
|
|
|
assert_select '.pagination a', :text => /Previous/
|
|
|
|
|
assert_select '.pagination a', :text => /Next/
|
|
|
|
|
end
|
2010-08-27 14:05:54 +00:00
|
|
|
end
|