2019-03-16 15:03:47 +00:00
|
|
|
# frozen_string_literal: true
|
2019-03-15 01:32:57 +00:00
|
|
|
|
2010-12-03 11:25:21 +00:00
|
|
|
# Redmine - project management software
|
2024-02-26 22:55:54 +00:00
|
|
|
# Copyright (C) 2006- Jean-Philippe Lang
|
2010-12-03 11:25:21 +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-30 07:56:02 +00:00
|
|
|
#
|
2010-12-03 11:25:21 +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-30 07:56:02 +00:00
|
|
|
#
|
2010-12-03 11:25:21 +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.
|
|
|
|
|
|
2023-01-01 07:13:39 +00:00
|
|
|
require_relative '../../../../../test_helper'
|
2010-12-03 11:25:21 +00:00
|
|
|
|
2011-06-22 03:49:53 +00:00
|
|
|
class Redmine::Views::Builders::JsonTest < ActiveSupport::TestCase
|
2018-11-28 18:03:07 +00:00
|
|
|
def test_nil_and_false
|
|
|
|
|
assert_json_output({'value' => nil}) do |b|
|
|
|
|
|
b.value nil
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
assert_json_output({'value' => false}) do |b|
|
|
|
|
|
b.value false
|
|
|
|
|
end
|
|
|
|
|
end
|
2011-08-30 07:56:02 +00:00
|
|
|
|
2010-12-03 11:25:21 +00:00
|
|
|
def test_hash
|
|
|
|
|
assert_json_output({'person' => {'name' => 'Ryan', 'age' => 32}}) do |b|
|
|
|
|
|
b.person do
|
|
|
|
|
b.name 'Ryan'
|
|
|
|
|
b.age 32
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2011-08-30 07:56:02 +00:00
|
|
|
|
2010-12-03 13:52:07 +00:00
|
|
|
def test_hash_hash
|
|
|
|
|
assert_json_output({'person' => {'name' => 'Ryan', 'birth' => {'city' => 'London', 'country' => 'UK'}}}) do |b|
|
|
|
|
|
b.person do
|
|
|
|
|
b.name 'Ryan'
|
|
|
|
|
b.birth :city => 'London', :country => 'UK'
|
|
|
|
|
end
|
|
|
|
|
end
|
2011-08-30 07:56:02 +00:00
|
|
|
|
2010-12-04 10:41:31 +00:00
|
|
|
assert_json_output({'person' => {'id' => 1, 'name' => 'Ryan', 'birth' => {'city' => 'London', 'country' => 'UK'}}}) do |b|
|
|
|
|
|
b.person :id => 1 do
|
|
|
|
|
b.name 'Ryan'
|
|
|
|
|
b.birth :city => 'London', :country => 'UK'
|
|
|
|
|
end
|
|
|
|
|
end
|
2010-12-03 13:52:07 +00:00
|
|
|
end
|
2011-08-30 07:56:02 +00:00
|
|
|
|
2010-12-03 11:25:21 +00:00
|
|
|
def test_array
|
|
|
|
|
assert_json_output({'books' => [{'title' => 'Book 1', 'author' => 'B. Smith'}, {'title' => 'Book 2', 'author' => 'G. Cooper'}]}) do |b|
|
|
|
|
|
b.array :books do |b|
|
|
|
|
|
b.book :title => 'Book 1', :author => 'B. Smith'
|
|
|
|
|
b.book :title => 'Book 2', :author => 'G. Cooper'
|
|
|
|
|
end
|
|
|
|
|
end
|
2010-12-04 11:20:20 +00:00
|
|
|
|
|
|
|
|
assert_json_output({'books' => [{'title' => 'Book 1', 'author' => 'B. Smith'}, {'title' => 'Book 2', 'author' => 'G. Cooper'}]}) do |b|
|
|
|
|
|
b.array :books do |b|
|
|
|
|
|
b.book :title => 'Book 1' do
|
|
|
|
|
b.author 'B. Smith'
|
|
|
|
|
end
|
|
|
|
|
b.book :title => 'Book 2' do
|
|
|
|
|
b.author 'G. Cooper'
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2010-12-03 11:25:21 +00:00
|
|
|
end
|
2011-08-30 07:56:02 +00:00
|
|
|
|
2010-12-03 11:25:21 +00:00
|
|
|
def test_array_with_content_tags
|
2020-11-10 11:09:38 +00:00
|
|
|
assert_json_output(
|
|
|
|
|
{
|
|
|
|
|
'books' => [
|
|
|
|
|
{'value' => 'Book 1', 'author' => 'B. Smith'},
|
|
|
|
|
{'value' => 'Book 2', 'author' => 'G. Cooper'}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
) do |b|
|
2010-12-03 11:25:21 +00:00
|
|
|
b.array :books do |b|
|
|
|
|
|
b.book 'Book 1', :author => 'B. Smith'
|
|
|
|
|
b.book 'Book 2', :author => 'G. Cooper'
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2011-08-30 07:56:02 +00:00
|
|
|
|
2012-01-29 18:29:09 +00:00
|
|
|
def test_nested_arrays
|
|
|
|
|
assert_json_output({'books' => [{'authors' => ['B. Smith', 'G. Cooper']}]}) do |b|
|
|
|
|
|
b.array :books do |books|
|
|
|
|
|
books.book do |book|
|
|
|
|
|
book.array :authors do |authors|
|
|
|
|
|
authors.author 'B. Smith'
|
|
|
|
|
authors.author 'G. Cooper'
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-11-03 08:11:22 +00:00
|
|
|
def test_request_response
|
2020-11-10 11:09:38 +00:00
|
|
|
assert_json_output(
|
|
|
|
|
{
|
|
|
|
|
'request' => {
|
|
|
|
|
'get' => 'book'
|
|
|
|
|
},
|
|
|
|
|
'response' => {
|
|
|
|
|
'book' => {'title' => 'Book 1'}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
) do |b|
|
2018-11-03 08:11:22 +00:00
|
|
|
b.request do
|
|
|
|
|
b.get 'book'
|
|
|
|
|
end
|
|
|
|
|
b.response do
|
|
|
|
|
b.book title: 'Book 1'
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2024-08-21 00:46:15 +00:00
|
|
|
def assert_json_output(expected, &)
|
2017-07-23 11:26:04 +00:00
|
|
|
builder = Redmine::Views::Builders::Json.new(ActionDispatch::TestRequest.create, ActionDispatch::TestResponse.create)
|
2019-10-22 12:10:03 +00:00
|
|
|
yield(builder)
|
2010-12-03 11:25:21 +00:00
|
|
|
assert_equal(expected, ActiveSupport::JSON.decode(builder.output))
|
|
|
|
|
end
|
|
|
|
|
end
|