OpenProject is the leading open source project management software.
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.
openproject/spec/requests/custom_field_cache_spec.rb

95 lines
3.1 KiB

#-- copyright
# OpenProject Reporting Plugin
#
# Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 3.
#
# 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.
#++
require 'spec_helper'
require File.join(File.dirname(__FILE__), '..', 'support', 'custom_field_filter')
describe 'Custom field filter and group by caching', type: :request do
let(:project) { FactoryGirl.create(:valid_project) }
let(:user) { FactoryGirl.create(:admin) }
let(:custom_field) { FactoryGirl.build(:work_package_custom_field) }
let(:custom_field2) { FactoryGirl.build(:work_package_custom_field) }
before do
allow(User).to receive(:current).and_return(user)
custom_field.save!
end
include OpenProject::Reporting::SpecHelper::CustomFieldFilterHelper
def expect_group_by_all_to_include(custom_field)
expect(CostQuery::GroupBy.all).to include(group_by_class_name_string(custom_field).constantize)
end
def expect_filter_all_to_include(custom_field)
expect(CostQuery::Filter.all).to include(filter_class_name_string(custom_field).constantize)
end
def expect_group_by_all_to_not_exist(custom_field)
# can not check for whether the element is included in CostQuery::GroupBy if it does not exist
expect { group_by_class_name_string(custom_field).constantize }.to raise_error NameError
end
def expect_filter_all_to_not_exist(custom_field)
# can not check for whether the element is included in CostQuery::GroupBy if it does not exist
expect { group_by_class_name_string(custom_field).constantize }.to raise_error NameError
end
def visit_cost_reports_index
get "projects/#{project.id}/cost_reports"
end
it 'removes the filter/group_by if the custom field is removed' do
custom_field2.save!
visit_cost_reports_index
expect_group_by_all_to_include(custom_field)
expect_group_by_all_to_include(custom_field2)
expect_filter_all_to_include(custom_field)
expect_filter_all_to_include(custom_field2)
custom_field2.destroy
visit_cost_reports_index
expect_group_by_all_to_include(custom_field)
expect_group_by_all_to_not_exist(custom_field2)
expect_filter_all_to_include(custom_field)
expect_filter_all_to_not_exist(custom_field2)
end
it 'removes the filter/group_by if the last custom field is removed' do
visit_cost_reports_index
expect_group_by_all_to_include(custom_field)
expect_filter_all_to_include(custom_field)
custom_field.destroy
visit_cost_reports_index
expect_group_by_all_to_not_exist(custom_field)
expect_filter_all_to_not_exist(custom_field)
end
end