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/api/v3/queries/create_query_spec.rb

171 lines
4.8 KiB

#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2021 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 "POST /api/v3/queries", type: :request do
let(:user) { FactoryBot.create :admin }
let(:status) { FactoryBot.create :status }
let(:project) { FactoryBot.create :project }
let(:params) do
{
name: "Dummy Query",
showHierarchies: false,
filters: [
{
name: "Status",
_links: {
filter: {
href: "/api/v3/queries/filters/status"
},
operator: {
"href": "/api/v3/queries/operators/="
},
schema: {
"href": "/api/v3/queries/filter_instance_schemas/status"
},
values: [
{
href: "/api/v3/statuses/#{status.id}"
}
]
}
}
],
_links: {
project: {
href: "/api/v3/projects/#{project.id}"
},
columns: [
{
href: "/api/v3/queries/columns/id"
},
{
href: "/api/v3/queries/columns/subject"
},
{
href: "/api/v3/queries/columns/status"
},
{
href: "/api/v3/queries/columns/assignee"
}
],
sortBy: [
{
href: "/api/v3/queries/sort_bys/id-desc"
},
{
href: "/api/v3/queries/sort_bys/assignee-asc"
}
],
groupBy: {
href: "/api/v3/queries/group_bys/assignee"
}
}
}
end
before do
login_as user
end
describe "creating a query" do
before do
header "Content-Type", "application/json"
post "/api/v3/queries", params.to_json
end
it 'should return 201 (created)' do
expect(last_response.status).to eq(201)
end
it 'should render the created query' do
json = JSON.parse(last_response.body)
expect(json["_type"]).to eq "Query"
expect(json["name"]).to eq "Dummy Query"
end
it 'should create the query correctly' do
query = Query.find_by(name: params[:name])
expect(query).to be_present
expect(query.group_by_column.name).to eq :assigned_to
expect(query.sort_criteria).to eq [["id", "desc"], ["assigned_to", "asc"]]
expect(query.columns.map(&:name)).to eq %i[id subject status assigned_to]
expect(query.user).to eq user
expect(query.project).to eq project
expect(query.filters.size).to eq 1
filter = query.filters.first
expect(filter.name).to eq :status_id
expect(filter.operator).to eq "="
expect(filter.values).to eq [status.id.to_s]
end
end
context "with invalid parameters" do
def post!
header "Content-Type", "application/json"
post "/api/v3/queries", params.to_json
end
def json
JSON.parse last_response.body
end
it "yields a 422 error given an unknown project" do
params[:_links][:project][:href] = "/api/v3/projects/#{project.id}42"
post!
expect(last_response.status).to eq 422
expect(json["message"]).to eq "Project not found"
end
it "yields a 422 error given an unknown operator" do
params[:filters][0][:_links][:operator][:href] = "/api/v3/queries/operators/wut"
post!
expect(last_response.status).to eq 422
expect(json["message"]).to eq "Status Operator is not set to one of the allowed values."
end
it "yields a 422 error given an unknown filter" do
params[:filters][0][:_links][:filter][:href] = "/api/v3/queries/filters/statuz"
post!
expect(last_response.status).to eq 422
expect(json["message"]).to eq "Statuz does not exist."
end
end
end