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.
84 lines
2.8 KiB
84 lines
2.8 KiB
6 years ago
|
#-- copyright
|
||
|
# OpenProject is a project management system.
|
||
|
# Copyright (C) 2012-2018 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.
|
||
|
#
|
||
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
||
|
# Copyright (C) 2006-2017 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 docs/COPYRIGHT.rdoc for more details.
|
||
|
#++
|
||
|
|
||
|
require 'spec_helper'
|
||
|
|
||
6 years ago
|
describe Grids::Query, type: :model do
|
||
6 years ago
|
include OpenProject::StaticRouting::UrlHelpers
|
||
|
|
||
|
shared_let(:project) { FactoryBot.create(:project) }
|
||
|
shared_let(:other_project) { FactoryBot.create(:project) }
|
||
|
shared_let(:show_board_views_role) { FactoryBot.create(:role, permissions: [:show_board_views]) }
|
||
|
shared_let(:other_role) { FactoryBot.create(:role, permissions: []) }
|
||
|
shared_let(:current_user) do
|
||
|
FactoryBot.create(:user).tap do |user|
|
||
|
FactoryBot.create(:member, user: user, project: project, roles: [show_board_views_role])
|
||
|
FactoryBot.create(:member, user: user, project: other_project, roles: [other_role])
|
||
|
end
|
||
|
end
|
||
|
let!(:board_grid) do
|
||
|
FactoryBot.create(:board_grid, project: project)
|
||
|
end
|
||
|
let!(:other_board_grid) do
|
||
|
FactoryBot.create(:board_grid, project: other_project)
|
||
|
end
|
||
6 years ago
|
let(:instance) { described_class.new }
|
||
|
|
||
|
before do
|
||
6 years ago
|
login_as(current_user)
|
||
6 years ago
|
end
|
||
|
|
||
|
context 'without a filter' do
|
||
|
describe '#results' do
|
||
6 years ago
|
it 'is the same as getting all the boards visible to the user' do
|
||
|
expect(instance.results).to match_array [board_grid]
|
||
6 years ago
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
6 years ago
|
context 'with a scope filter' do
|
||
|
context 'filtering for a projects/:project_id/boards' do
|
||
|
before do
|
||
|
instance.where('scope', '=', [project_work_package_boards_path(project)])
|
||
6 years ago
|
end
|
||
|
|
||
6 years ago
|
describe '#results' do
|
||
|
it 'yields boards assigned to the project' do
|
||
|
expect(instance.results).to match_array [board_grid]
|
||
|
end
|
||
6 years ago
|
end
|
||
|
|
||
6 years ago
|
describe '#valid?' do
|
||
|
it 'is true' do
|
||
|
expect(instance).to be_valid
|
||
|
end
|
||
6 years ago
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|