File: json_test.cpp

package info (click to toggle)
mysql-workbench 6.3.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 113,932 kB
  • ctags: 87,814
  • sloc: ansic: 955,521; cpp: 427,465; python: 59,728; yacc: 59,129; xml: 54,204; sql: 7,091; objc: 965; makefile: 638; sh: 613; java: 237; perl: 30; ruby: 6; php: 1
file content (224 lines) | stat: -rw-r--r-- 6,529 bytes parent folder | download
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
/* 
 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
 *
 * 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; version 2 of the
 * License.
 * 
 * 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.
 * 
 * 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 St, Fifth Floor, Boston, MA
 * 02110-1301  USA
 */

#include "test.h"
#include "mforms/jsonview.h"
using namespace mforms;
using namespace JsonParser;

BEGIN_TEST_DATA_CLASS(mforms_json_test)
private:
  WBTester _tester; // Initializes the mforms stub with good values (among others).
END_TEST_DATA_CLASS;

TEST_MODULE(mforms_json_test, "mforms json paser testing");

//--------------------------------------------------------------------------------------------------

TEST_FUNCTION(1)
{
  std::string json = "{\"menu\":{\"id\":\"file\",\"value\":\"File\",\"popup\":{\"menuitem\":[{\"value\":\"New\",\"onclick\""
                     ":\"CreateNewDoc()\"},{\"value\":\"Open\",\"onclick\":\"OpenDoc()\"},{\"value\":\"Close\",\"onclick\":\""
                     "CloseDoc()\"},{\"value\":true,\"onclick\":null},{\"value\":false,\"onclick\":true}]}}}";
  // test reader
  JsonParser::JsonValue value;
  try
  {
    JsonParser::JsonReader::read(json, value);
  }
  catch (JsonParser::ParserException &ex)
  {
    g_message("Parse error: '%s'", ex.what());
    throw;
  }

  // test writer
  std::string str;
  JsonParser::JsonWriter::write(str, value);

  JsonParser::JsonValue value2;
  try
  {
    JsonParser::JsonReader::read(str, value2);
  }
  catch (JsonParser::ParserException &ex)
  {
    g_message("Parse error: '%s'", ex.what());
    throw;
  }
}

TEST_FUNCTION(5)
{
  std::string json = "{\"menu\":{\"header\":\"SVGViewer\",\"items\":[{\"id\":\"Open\"},{\"id\":\"OpenNew\""
                      ",\"label\":\"OpenNew\"},null,{\"id\":\"ZoomIn\",\"label\":\"ZoomIn\""
                      "},{\"id\":\"ZoomOut\",\"label\":\"ZoomOut\"},1,2,3,{\"id\":\"OriginalView\",\"label\":\""
                      "OriginalView\"},null,{\"id\":\"Quality\"},{\"id\":\"Pause\"},{\"id\":\"Mute\""
                      "},null,{\"id\":\"Find\",\"label\":\"Find...\"},{\"id\":\"FindAgain\",\"label\":\"FindAgain\"},{\""
                      "id\":\"Copy\"},{\"id\":\"CopyAgain\",\"label\":\"CopyAgain\"},{\"id\":\"CopySVG\",\"label\":\""
                      "CopySVG\"},{\"id\":\"ViewSVG\",\"label\":\"ViewSVG\"},{\"id\":\"ViewSource\",\"label\":\"ViewSource\""
                      "},{\"id\":\"SaveAs\",\"label\":\"SaveAs\"},null,{\"id\":\"Help\"},{\"id\":\"About\",\"label\":\"AboutAdobeCVGViewer...\"}]}}";
  // test reader
  JsonParser::JsonValue value;
  try
  {
    JsonParser::JsonReader::read(json, value);
  }
  catch (JsonParser::ParserException &ex)
  {
    g_message("Parse error: '%s'", ex.what());
    throw;
  }

  // test writer
  std::string str;
  JsonParser::JsonWriter::write(str, value);

  JsonParser::JsonValue value2;
  try
  {
    JsonParser::JsonReader::read(str, value2);
  }
  catch (JsonParser::ParserException &ex)
  {
    g_message("Parse error: '%s'", ex.what());
    throw;
  }
}

TEST_FUNCTION(10)
{
    /* json structure
    {
      "colorsArray" : [{
        "name":"red",
        "hexValue":"#f00"
        },
        {
        "name":"green",
        "hexValue":"#0f0"
        },
        {
        "name":"blue",
        "hexValue":"#00f"
        },
        {
        "name":"cyan",
        "hexValue":"#0ff"
        },
        {
        "name":"magenta",
        "hexValue":"#f0f"
        },
        {
        "name":"yellow",
        "hexValue":"#ff0"
        },
        {
        "name":"black",
        "hexValue":"#000"
        }
      ]
   }*/

  JsonArray jsonArray;
  JsonObject obj1;
  obj1["name"] = JsonValue("red");
  obj1["hexValue"] = JsonValue("#f00");
  JsonObject obj2;
  obj2["name"] = JsonValue("green");
  obj2["hexValue"] = JsonValue("#0f0");
  JsonObject obj3;
  obj3["name"] = JsonValue("blue");
  obj3["hexValue"] = JsonValue("#00f");

  jsonArray.pushBack(JsonValue(obj1));
  jsonArray.pushBack(JsonValue(obj2));
  jsonArray.pushBack(JsonValue(obj3));

  JsonObject object;
  object["colorsArray"] = JsonValue(jsonArray);
  JsonValue value(object);

  // try cast JsonObject to double
  bool exceptionThrown = false;
  try
  {
    double number = (double)value;
  }
  catch (const std::bad_cast &)
  { 
    exceptionThrown = true;
  }
  ensure_true("bad cast should be thrown", exceptionThrown);
  const JsonObject& objRoot = (const JsonObject&)value;

  // check getter
  JsonValue value1 = objRoot.get("colorsArray");
  
  //no exception should be thrown, only number should be null
  double number = value1.getDouble();
  ensure_true("Retured value should be equal 0", number == 0);

  JsonArray jsArray = (const JsonArray&)value1;
  ensure_true("It should be JsonArray and it should contains tree elements", jsArray.size() == 3);
  for (JsonArray::Iterator it = jsonArray.begin(); it != jsonArray.end(); ++it)
  {
    ensure_true("Array should contains JsonObjects", it->getType() == VObject);
    JsonObject value2 = (const JsonObject&)*it;
    ensure_true("Every object in array should contains two elemants", value2.size() == 2);
  }
}

TEST_FUNCTION(15)
{
  std::string missingComma = "[1, 2 3]";
  // test reader with inclomplete JSON
  bool exceptionThrown = false;
  JsonParser::JsonValue value;
  try
  {
    JsonParser::JsonReader::read(missingComma, value);
  }
  catch (JsonParser::ParserException &)
  {
    exceptionThrown = true;
  }
  ensure_true("Exception should be thrown", exceptionThrown);

  exceptionThrown = false;
  std::string badDocument = "[true, false, true, [ss]]s ssss";
  JsonParser::JsonValue value2;
  try
  {
    JsonParser::JsonReader::read(missingComma, value2);
  }
  catch (JsonParser::ParserException &)
  {
    exceptionThrown = true;
  }
  ensure_true("Exception should be thrown", exceptionThrown);
}

//--------------------------------------------------------------------------------------------------

END_TESTS;

//--------------------------------------------------------------------------------------------------
;