forked from rails/activeresource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabstract_unit.rb
155 lines (143 loc) · 6.19 KB
/
abstract_unit.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# frozen_string_literal: true
require "rubygems" unless defined? Gem
require "bundler/setup"
lib = File.expand_path("#{File.dirname(__FILE__)}/../lib")
$:.unshift(lib) unless $:.include?("lib") || $:.include?(lib)
require "minitest/autorun"
require "active_resource"
require "active_support"
require "active_support/test_case"
require "setter_trap"
require "active_support/logger"
ActiveSupport::TestCase.test_order = :random if ActiveSupport::TestCase.respond_to?(:test_order=)
ActiveResource::Base.logger = ActiveSupport::Logger.new("#{File.dirname(__FILE__)}/debug.log")
ActiveResource::Base.include_root_in_json = true
module ActiveResource::Test
def self.rails_5_1?
ActiveSupport.gem_version >= Gem::Version.new("5.1.x")
end
end
def setup_response
matz_hash = { "person" => { id: 1, name: "Matz" } }
@default_request_headers = { "Content-Type" => "application/json" }
@matz = matz_hash.to_json
@matz_xml = matz_hash.to_xml
@david = { person: { id: 2, name: "David" } }.to_json
@greg = { person: { id: 3, name: "Greg" } }.to_json
@addy = { address: { id: 1, street: "12345 Street", country: "Australia" } }.to_json
@rick = { person: { name: "Rick", age: 25 } }.to_json
@joe = { person: { id: 6, name: "Joe", likes_hats: true } }.to_json
@people = { people: [ { person: { id: 1, name: "Matz" } }, { person: { id: 2, name: "David" } }] }.to_json
@people_david = { people: [ { person: { id: 2, name: "David" } }] }.to_json
@addresses = { addresses: [{ address: { id: 1, street: "12345 Street", country: "Australia" } }] }.to_json
@post = { id: 1, title: "Hello World", body: "Lorem Ipsum" }.to_json
@posts = [{ id: 1, title: "Hello World", body: "Lorem Ipsum" }, { id: 2, title: "Second Post", body: "Lorem Ipsum" }].to_json
@comments = [{ id: 1, post_id: 1, content: "Interesting post" }, { id: 2, post_id: 1, content: "I agree" }].to_json
# - deep nested resource -
# - Luis (Customer)
# - JK (Customer::Friend)
# - Mateo (Customer::Friend::Brother)
# - Edith (Customer::Friend::Brother::Child)
# - Martha (Customer::Friend::Brother::Child)
# - Felipe (Customer::Friend::Brother)
# - Bryan (Customer::Friend::Brother::Child)
# - Luke (Customer::Friend::Brother::Child)
# - Eduardo (Customer::Friend)
# - Sebas (Customer::Friend::Brother)
# - Andres (Customer::Friend::Brother::Child)
# - Jorge (Customer::Friend::Brother::Child)
# - Elsa (Customer::Friend::Brother)
# - Natacha (Customer::Friend::Brother::Child)
# - Milena (Customer::Friend::Brother)
#
@luis = {
customer: {
id: 1,
name: "Luis",
friends: [{
name: "JK",
brothers: [
{
name: "Mateo",
children: [{ name: "Edith" }, { name: "Martha" }]
}, {
name: "Felipe",
children: [{ name: "Bryan" }, { name: "Luke" }]
}
]
}, {
name: "Eduardo",
brothers: [
{
name: "Sebas",
children: [{ name: "Andres" }, { name: "Jorge" }]
}, {
name: "Elsa",
children: [{ name: "Natacha" }]
}, {
name: "Milena",
children: []
}
]
}],
enemies: [{ name: "Joker" }],
mother: { name: "Ingeborg" }
}
}.to_json
@startup_sound = {
sound: {
name: "Mac Startup Sound", author: { name: "Jim Reekes" }
}
}.to_json
@product = { id: 1, name: "Rails book" }.to_json
@inventory = { status: "Sold Out", total: 10, used: 10 }.to_json
ActiveResource::HttpMock.respond_to do |mock|
mock.get "/people/1.json", {}, @matz
mock.get "/people/1.xml", {}, @matz_xml
mock.get "/people/2.xml", {}, @david
mock.get "/people/Greg.json", {}, @greg
mock.get "/people/6.json", {}, @joe
mock.get "/people/4.json", { "key" => "value" }, nil, 404
mock.put "/people/1.json", {}, nil, 204
mock.delete "/people/1.json", {}, nil, 200
mock.delete "/people/2.xml", {}, nil, 400
mock.get "/people/99.json", {}, nil, 404
mock.post "/people.json", {}, @rick, 201, "Location" => "/people/5.xml"
mock.get "/people.json", {}, @people
mock.get "/people/1/addresses.json", {}, @addresses
mock.get "/people/1/addresses/1.json", {}, @addy
mock.get "/people/1/addresses/2.xml", {}, nil, 404
mock.get "/people/2/addresses.json", {}, nil, 404
mock.get "/people/2/addresses/1.xml", {}, nil, 404
mock.get "/people/Greg/addresses/1.json", {}, @addy
mock.put "/people/1/addresses/1.json", {}, nil, 204
mock.delete "/people/1/addresses/1.json", {}, nil, 200
mock.post "/people/1/addresses.json", {}, nil, 201, "Location" => "/people/1/addresses/5"
mock.get "/people/1/addresses/99.json", {}, nil, 404
mock.get "/people//addresses.xml", {}, nil, 404
mock.get "/people//addresses/1.xml", {}, nil, 404
mock.put "/people//addresses/1.xml", {}, nil, 404
mock.delete "/people//addresses/1.xml", {}, nil, 404
mock.post "/people//addresses.xml", {}, nil, 404
mock.head "/people/1.json", {}, nil, 200
mock.head "/people/Greg.json", {}, nil, 200
mock.head "/people/99.json", {}, nil, 404
mock.head "/people/1/addresses/1.json", {}, nil, 200
mock.head "/people/1/addresses/2.json", {}, nil, 404
mock.head "/people/2/addresses/1.json", {}, nil, 404
mock.head "/people/Greg/addresses/1.json", {}, nil, 200
# customer
mock.get "/customers/1.json", {}, @luis
# sound
mock.get "/sounds/1.json", {}, @startup_sound
# post
mock.get "/posts.json", {}, @posts
mock.get "/posts/1.json", {}, @post
mock.get "/posts/1/comments.json", {}, @comments
# products
mock.get "/products/1.json", {}, @product
mock.get "/products/1/inventory.json", {}, @inventory
end
Person.user = nil
Person.password = nil
end