2019-03-16 15:03:47 +00:00
|
|
|
# frozen_string_literal: true
|
2019-03-15 01:32:57 +00:00
|
|
|
|
2011-07-06 16:57:04 +00:00
|
|
|
# Redmine - project management software
|
2020-03-03 00:24:10 +00:00
|
|
|
# Copyright (C) 2006-2020 Jean-Philippe Lang
|
2011-07-06 16:57:04 +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.
|
2011-08-31 23:16:38 +00:00
|
|
|
#
|
2011-07-06 16:57:04 +00:00
|
|
|
# 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.
|
2011-08-31 23:16:38 +00:00
|
|
|
#
|
2011-07-06 16:57:04 +00:00
|
|
|
# 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 File.expand_path('../../../test_helper', __FILE__)
|
|
|
|
|
|
2013-01-22 18:26:04 +00:00
|
|
|
class Redmine::ApiTest::QueriesTest < Redmine::ApiTest::Base
|
2011-09-25 00:16:49 +00:00
|
|
|
fixtures :projects, :trackers, :issue_statuses, :issues,
|
|
|
|
|
:enumerations, :users, :issue_categories,
|
|
|
|
|
:projects_trackers,
|
|
|
|
|
:roles,
|
|
|
|
|
:member_roles,
|
|
|
|
|
:members,
|
|
|
|
|
:enabled_modules,
|
|
|
|
|
:queries
|
2011-07-06 16:57:04 +00:00
|
|
|
|
2013-05-18 08:57:27 +00:00
|
|
|
test "GET /queries.xml should return queries" do
|
|
|
|
|
get '/queries.xml'
|
2011-08-31 23:16:38 +00:00
|
|
|
|
2013-05-18 08:57:27 +00:00
|
|
|
assert_response :success
|
2020-01-27 03:54:25 +00:00
|
|
|
assert_equal 'application/xml', @response.media_type
|
2015-01-17 17:02:55 +00:00
|
|
|
assert_select 'queries[type=array] query id', :text => '4' do
|
2014-11-22 09:38:21 +00:00
|
|
|
assert_select '~ name', :text => 'Public query for all projects'
|
|
|
|
|
end
|
2011-07-06 16:57:04 +00:00
|
|
|
end
|
|
|
|
|
end
|