Merge: Basename fix
[nit.git] / tests / test_json_deserialization.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import test_deserialization
16 import json::serialization
17 #alt1# import test_deserialization_serial
18
19 var entities = new TestEntities
20
21 var tests = entities.without_generics#alt1##alt2#
22 #alt1#var tests = entities.with_generics
23 #alt2#var tests = entities.with_generics
24
25 for o in tests do
26 var stream = new StringWriter
27 var serializer = new JsonSerializer(stream)
28 #alt2#serializer.plain_json = true
29 serializer.serialize(o)
30
31 var deserializer = new JsonDeserializer(stream.to_s)#alt2#
32 var deserialized = deserializer.deserialize#alt2#
33
34 print "# Nit:\n{o}\n"
35 print "# Json:\n{stream}\n"
36 print "# Back in Nit:\n{deserialized or else "null"}\n"#alt2#
37 end