kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.5 KiB
89 lines
2.5 KiB
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2022 the OpenProject GmbH
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# 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.
|
|
#
|
|
# See COPYRIGHT and LICENSE files for more details.
|
|
#++
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Projects::Activity, type: :model do
|
|
let(:project) do
|
|
create(:project)
|
|
end
|
|
|
|
let(:initial_time) { Time.now }
|
|
|
|
let(:budget) do
|
|
create(:budget,
|
|
project:)
|
|
end
|
|
|
|
let(:budget2) do
|
|
create(:budget,
|
|
project:)
|
|
end
|
|
|
|
let(:work_package) do
|
|
create(:work_package,
|
|
project:)
|
|
end
|
|
|
|
def latest_activity
|
|
Project.with_latest_activity.find(project.id).latest_activity_at
|
|
end
|
|
|
|
describe '.with_latest_activity' do
|
|
it 'is the latest budget update' do
|
|
budget.update_attribute(:updated_at, initial_time - 10.seconds)
|
|
budget2.update_attribute(:updated_at, initial_time - 20.seconds)
|
|
budget.reload
|
|
budget2.reload
|
|
|
|
expect(latest_activity).to eql budget.updated_at
|
|
end
|
|
|
|
it 'takes the time stamp of the latest activity across models' do
|
|
work_package.update_attribute(:updated_at, initial_time - 10.seconds)
|
|
budget.update_attribute(:updated_at, initial_time - 20.seconds)
|
|
|
|
work_package.reload
|
|
budget.reload
|
|
|
|
# Order:
|
|
# work_package
|
|
# budget
|
|
|
|
expect(latest_activity).to eql work_package.updated_at
|
|
|
|
work_package.update_attribute(:updated_at, budget.updated_at - 10.seconds)
|
|
|
|
# Order:
|
|
# budget
|
|
# work_package
|
|
|
|
expect(latest_activity).to eql budget.updated_at
|
|
end
|
|
end
|
|
end
|
|
|