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
|
#include <config.h>
#include "../../apt-private/private-cachefile.cc"
#include "../../apt-private/private-json-hooks.cc"
#include "common.h"
#include <string>
TEST(JsonTest, JsonString)
{
std::ostringstream os;
// Check for escaping backslash and quotation marks, and ensure that we do not change number formatting
JsonWriter(os).value("H al\"l\\o").value(17);
EXPECT_EQ("\"H al\\u0022l\\u005Co\"17", os.str());
for (int i = 0; i <= 0x1F; i++)
{
os.str("");
JsonWriter(os).encodeString(os, std::string("X") + char(i) + "Z");
std::string exp;
strprintf(exp, "\"X\\u%04XZ\"", i);
EXPECT_EQ(exp, os.str());
}
}
TEST(JsonTest, JsonObject)
{
std::ostringstream os;
JsonWriter(os).beginObject().name("key").value("value").endObject();
EXPECT_EQ("{\"key\":\"value\"}", os.str());
}
TEST(JsonTest, JsonArrayAndValues)
{
std::ostringstream os;
JsonWriter(os).beginArray().value(0).value("value").value(1).value(true).endArray();
EXPECT_EQ("[0,\"value\",1,true]", os.str());
}
TEST(JsonTest, JsonStackRegression)
{
std::ostringstream os;
JsonWriter w(os);
// Nest those things deeply such that we transition states:
// object -> array -> object; -> array -> object
// Older versions never popped back and got stuck on array state.
w.beginObject();
w.name("a").beginArray().beginObject().endObject().endArray();
w.name("b").beginArray().beginObject().endObject().endArray();
w.endObject();
EXPECT_EQ("{\"a\":[{}],\"b\":[{}]}", os.str());
}
TEST(JsonTest, JsonNull)
{
std::ostringstream os;
JsonWriter(os).value(nullptr);
EXPECT_EQ("null", os.str());
}
|