tests: Added ad-hoc json parser test
authorLucas Bajolet <r4pass@hotmail.com>
Tue, 8 Dec 2015 19:20:23 +0000 (14:20 -0500)
committerLucas Bajolet <r4pass@hotmail.com>
Wed, 16 Dec 2015 15:58:29 +0000 (10:58 -0500)
Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

tests/json_example.json [new file with mode: 0644]
tests/sav/test_adhoc_json_parse.res [new file with mode: 0644]
tests/sav/test_adhoc_json_parse_args1.res [new file with mode: 0644]
tests/test_adhoc_json_parse.args [new file with mode: 0644]
tests/test_adhoc_json_parse.nit [new file with mode: 0644]

diff --git a/tests/json_example.json b/tests/json_example.json
new file mode 100644 (file)
index 0000000..892f1ce
--- /dev/null
@@ -0,0 +1 @@
+[{"precision":"zip","Latitude":37.7668,"Longitude":-122.3959,"Address":"","City":"SANFRANCISCO","State":"CA","Zip":"94107","Country":"US"},{"precision":"zip","Latitude":37.371991,"Longitude":-122.026020,"Address":"","City":"SUNNYVALE","State":"CA","Zip":"94085","Country":"US"}]
diff --git a/tests/sav/test_adhoc_json_parse.res b/tests/sav/test_adhoc_json_parse.res
new file mode 100644 (file)
index 0000000..63330b4
--- /dev/null
@@ -0,0 +1 @@
+Usage ./test_adhoc_json_parser file
diff --git a/tests/sav/test_adhoc_json_parse_args1.res b/tests/sav/test_adhoc_json_parse_args1.res
new file mode 100644 (file)
index 0000000..2e9d00b
--- /dev/null
@@ -0,0 +1,20 @@
+[{
+       "precision": "zip",
+       "Latitude": 37.767,
+       "Longitude": -122.396,
+       "Address": "",
+       "City": "SANFRANCISCO",
+       "State": "CA",
+       "Zip": "94107",
+       "Country": "US"
+}, {
+       "precision": "zip",
+       "Latitude": 37.372,
+       "Longitude": -122.026,
+       "Address": "",
+       "City": "SUNNYVALE",
+       "State": "CA",
+       "Zip": "94085",
+       "Country": "US"
+}]
+
diff --git a/tests/test_adhoc_json_parse.args b/tests/test_adhoc_json_parse.args
new file mode 100644 (file)
index 0000000..dd8ac38
--- /dev/null
@@ -0,0 +1 @@
+json_example.json
diff --git a/tests/test_adhoc_json_parse.nit b/tests/test_adhoc_json_parse.nit
new file mode 100644 (file)
index 0000000..68e4850
--- /dev/null
@@ -0,0 +1,27 @@
+# This file is part of NIT ( http://www.nitlanguage.org ).
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import json::string_parser
+import json
+
+if args.length < 1 then
+       print "Usage ./test_adhoc_json_parser file"
+       exit -1
+end
+var parse = args[0].to_path.read_all.parse_json
+if parse == null then
+       print "null"
+else
+       print parse.to_pretty_json
+end