2019-03-21 03:27:53 +00:00
|
|
|
# frozen_string_literal: true
|
2019-03-15 01:32:57 +00:00
|
|
|
|
2017-07-23 12:27:12 +00:00
|
|
|
# Redmine - project management software
|
2024-02-26 22:55:54 +00:00
|
|
|
# Copyright (C) 2006- Jean-Philippe Lang
|
2017-07-23 12:27:12 +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 '../application_system_test_case'
|
2017-07-23 12:27:12 +00:00
|
|
|
|
2017-07-23 12:35:32 +00:00
|
|
|
Capybara.default_max_wait_time = 2
|
|
|
|
|
|
|
|
|
|
class TimelogTest < ApplicationSystemTestCase
|
2017-07-23 12:27:12 +00:00
|
|
|
def test_changing_project_should_update_activities
|
|
|
|
|
project = Project.find(1)
|
|
|
|
|
TimeEntryActivity.create!(:name => 'Design', :project => project, :parent => TimeEntryActivity.find_by_name('Design'), :active => false)
|
|
|
|
|
|
|
|
|
|
log_user 'jsmith', 'jsmith'
|
|
|
|
|
visit '/time_entries/new'
|
|
|
|
|
within 'select#time_entry_activity_id' do
|
|
|
|
|
assert has_content?('Development')
|
|
|
|
|
assert has_content?('Design')
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
within 'form#new_time_entry' do
|
|
|
|
|
select 'eCookbook', :from => 'Project'
|
|
|
|
|
end
|
|
|
|
|
within 'select#time_entry_activity_id' do
|
|
|
|
|
assert has_content?('Development')
|
2023-10-24 19:06:43 +00:00
|
|
|
assert has_no_content?('Design')
|
2017-07-23 12:27:12 +00:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_bulk_edit
|
|
|
|
|
log_user 'jsmith', 'jsmith'
|
|
|
|
|
visit '/time_entries/bulk_edit?ids[]=1&ids[]=2&ids[]=3'
|
|
|
|
|
fill_in 'Hours', :with => '8.5'
|
|
|
|
|
select 'QA', :from => 'Activity'
|
|
|
|
|
page.first(:button, 'Submit').click
|
|
|
|
|
|
2025-05-11 11:03:09 +00:00
|
|
|
assert_text 'Successful update.'
|
|
|
|
|
|
2024-08-12 08:36:05 +00:00
|
|
|
entries = TimeEntry.where(:id => [1, 2, 3]).to_a
|
2017-07-23 12:27:12 +00:00
|
|
|
assert entries.all? {|entry| entry.hours == 8.5}
|
|
|
|
|
assert entries.all? {|entry| entry.activity.name == 'QA'}
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_bulk_edit_with_failure
|
|
|
|
|
log_user 'jsmith', 'jsmith'
|
|
|
|
|
visit '/time_entries/bulk_edit?ids[]=1&ids[]=2&ids[]=3'
|
|
|
|
|
fill_in 'Hours', :with => 'A'
|
|
|
|
|
page.first(:button, 'Submit').click
|
|
|
|
|
|
|
|
|
|
assert page.has_css?('#errorExplanation')
|
|
|
|
|
fill_in 'Hours', :with => '7'
|
|
|
|
|
page.first(:button, 'Submit').click
|
|
|
|
|
|
2023-10-24 19:06:43 +00:00
|
|
|
assert_current_path "/projects/ecookbook/time_entries"
|
2024-08-12 08:36:05 +00:00
|
|
|
entries = TimeEntry.where(:id => [1, 2, 3]).to_a
|
2017-07-23 12:27:12 +00:00
|
|
|
assert entries.all? {|entry| entry.hours == 7.0}
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_default_query_setting
|
2019-04-01 05:40:07 +00:00
|
|
|
with_settings :default_language => 'en', :force_default_language_for_anonymous => '1' do
|
|
|
|
|
# Display the list with the default settings
|
|
|
|
|
visit '/time_entries'
|
|
|
|
|
within 'table.time-entries thead' do
|
|
|
|
|
assert page.has_no_link?('Tracker')
|
|
|
|
|
assert page.has_text?('Comment')
|
|
|
|
|
end
|
2017-07-23 12:27:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Change the default columns
|
|
|
|
|
log_user 'admin', 'admin'
|
|
|
|
|
visit '/settings?tab=timelog'
|
|
|
|
|
# Remove a column
|
|
|
|
|
select 'Comment', :from => 'Selected Columns'
|
2017-07-23 12:41:31 +00:00
|
|
|
page.first('input[type=button].move-left').click
|
2017-07-23 12:27:12 +00:00
|
|
|
# Add a column
|
|
|
|
|
select 'Tracker', :from => 'Available Columns'
|
2017-07-23 12:41:31 +00:00
|
|
|
page.first('input[type=button].move-right').click
|
2017-07-23 12:27:12 +00:00
|
|
|
click_on 'Save'
|
2025-05-11 11:03:09 +00:00
|
|
|
assert_text 'Successful update.'
|
2017-07-23 12:27:12 +00:00
|
|
|
|
|
|
|
|
# Display the list with updated settings
|
|
|
|
|
visit '/time_entries'
|
|
|
|
|
within 'table.time-entries thead' do
|
|
|
|
|
assert page.has_link?('Tracker')
|
|
|
|
|
assert page.has_no_text?('Comment')
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|