-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_serialization.feature
297 lines (285 loc) · 7.42 KB
/
json_serialization.feature
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
Feature: Serializing data to JSON
Scenario: Simple object data
Given an object model defined as:
"""
class SimpleObjectModel < SonJay::ObjectModel
properties do
property :id
property :name
property :published
property :featured
property :owner
end
end
"""
And a model instance defined as:
"""
instance = SimpleObjectModel.new
"""
When the instance's property values are assigned as:
"""
instance.id = 55
instance.name = "Polygon"
instance.published = true
instance.featured = false
instance.owner = nil
"""
And the model is serialized to JSON as:
"""
json = instance.to_json
"""
Then the resulting JSON is equivalent to:
"""
{
"id" : 55 ,
"name" : "Polygon" ,
"published" : true ,
"featured" : false ,
"owner" : null
}
"""
Scenario: Composite object data
Given an object model defined as:
"""
class ThingModel < SonJay::ObjectModel
properties do
property :name
property :details, :model => DetailModel
end
end
"""
And an object model defined as:
"""
class DetailModel < SonJay::ObjectModel
properties do
property :color
property :size
end
end
"""
And a model instance defined as:
"""
instance = ThingModel.new
"""
When the instance's property values are assigned as:
"""
instance.name = "Cherry"
instance.details.color = "red"
instance.details.size = "small"
"""
And the model is serialized to JSON as:
"""
json = instance.to_json
"""
Then the resulting JSON is equivalent to:
"""
{
"name" : "Cherry" ,
"details" :
{
"color" : "red" ,
"size" : "small"
}
}
"""
Scenario: Object data with a value-array property
Given an object model defined as:
"""
class ContestantModel < SonJay::ObjectModel
properties do
property :name
property :scores, model: []
end
end
"""
And a model instance defined as:
"""
instance = ContestantModel.new
"""
When the instance's property values are assigned as:
"""
instance.name = "Pat"
instance.scores = [ 9, 5, 7 ]
"""
And the model is serialized to JSON as:
"""
json = instance.to_json
"""
Then the resulting JSON is equivalent to:
"""
{
"name" : "Pat" ,
"scores" : [ 9, 5, 7 ]
}
"""
Scenario: Object data with a nested value-array property
Given an object model defined as:
"""
class TicTacToeModel < SonJay::ObjectModel
properties do
property :rows, model: [[]]
end
end
"""
And a model instance defined as:
"""
instance = TicTacToeModel.new
"""
When the instance's property values are assigned as:
"""
instance.rows.additional.concat %w[ X O X ]
instance.rows.additional.concat %w[ O X X ]
instance.rows.additional.concat %w[ X O O ]
"""
And the model is serialized to JSON as:
"""
json = instance.to_json
"""
Then the resulting JSON is equivalent to:
"""
{
"rows" : [
[ "X", "O", "X" ] ,
[ "O", "X", "X" ] ,
[ "X", "O", "O" ]
]
}
"""
Scenario: Object data with an object-array property
Given an object model defined as:
"""
class ListModel < SonJay::ObjectModel
properties do
property :name
property :items, :model => [ ItemModel ]
end
end
"""
And an object model defined as:
"""
class ItemModel < SonJay::ObjectModel
properties do
property :description
property :priority
end
end
"""
And a model instance defined as:
"""
instance = ListModel.new
"""
When the instance's property values are assigned as:
"""
instance.name = "Shopping"
item = instance.items.additional
item.description = 'Potato Chips'
item.priority = 'Low'
item = instance.items.additional
item.description = 'Ice Cream'
item.priority = 'High'
"""
And the model is serialized to JSON as:
"""
json = instance.to_json
"""
Then the resulting JSON is equivalent to:
"""
{
"name" : "Shopping" ,
"items" :
[
{
"description" : "Potato Chips" ,
"priority" : "Low"
} ,
{
"description" : "Ice Cream" ,
"priority" : "High"
}
]
}
"""
Scenario: Object data with a nested object-array property
Given an object model defined as:
"""
class TableModel < SonJay::ObjectModel
properties do
property :rows, :model => [[ CellModel ]]
end
end
"""
And an object model defined as:
"""
class CellModel < SonJay::ObjectModel
properties do
property :is_head
property :value
end
end
"""
And a model instance defined as:
"""
instance = TableModel.new
"""
When the instance's property values are assigned as:
"""
row_cells = instance.rows.additional
row_cells.additional.tap{ |c| c.is_head=1 ; c.value='Date' }
row_cells.additional.tap{ |c| c.is_head=1 ; c.value='Sightings' }
row_cells = instance.rows.additional
row_cells.additional.tap{ |c| c.is_head=1 ; c.value='Jan 1' }
row_cells.additional.tap{ |c| c.is_head=0 ; c.value=3 }
row_cells = instance.rows.additional
row_cells.additional.tap{ |c| c.is_head=1 ; c.value='Jan 3' }
row_cells.additional.tap{ |c| c.is_head=0 ; c.value=2 }
"""
And the model is serialized to JSON as:
"""
json = instance.to_json
"""
Then the resulting JSON is equivalent to:
"""
{
"rows" :
[
[ {"is_head": 1, "value": "Date"} , {"is_head": 1, "value": "Sightings"} ] ,
[ {"is_head": 1, "value": "Jan 1"} , {"is_head": 0, "value": 3} ] ,
[ {"is_head": 1, "value": "Jan 3"} , {"is_head": 0, "value": 2} ]
]
}
"""
Scenario: Object data with extra properties
Given an object model defined as:
"""
class SimpleObjectModel < SonJay::ObjectModel
allow_extras
properties do
property :id
property :name
end
end
"""
And a model instance defined as:
"""
instance = SimpleObjectModel.new
"""
When the instance's property values are assigned as:
"""
instance['id'] = 55
instance.name = "Polygon"
instance['published'] = true
instance['featured'] = false
"""
And the model is serialized to JSON as:
"""
json = instance.to_json
"""
Then the resulting JSON is equivalent to:
"""
{
"id" : 55 ,
"name" : "Polygon" ,
"published" : true ,
"featured" : false
}
"""