mirror of
https://github.com/tristanpenman/valijson.git
synced 2024-12-12 18:20:27 +01:00
a30ef97465
This patch adds support for a new Cmake option, VALIJSON_USE_EXCEPTIONS. If specified and set to `0`, Valijson will disable all exception throwing, add the `-fno-exceptions` compiler flag, and print to std::err and abort where exceptions would have been thrown. NOTE: to set the value of a CMake option, the easiest way is to modify the appropriate source line in the <build folder>/CMakeCache.txt file. Bug: #106
84 lines
2.9 KiB
C++
84 lines
2.9 KiB
C++
#include <gtest/gtest.h>
|
|
|
|
#include <valijson/adapters/nlohmann_json_adapter.hpp>
|
|
|
|
class TestNlohmannJsonAdapter : public testing::Test
|
|
{
|
|
|
|
};
|
|
|
|
TEST_F(TestNlohmannJsonAdapter, BasicArrayIteration)
|
|
{
|
|
const unsigned int numElements = 10;
|
|
|
|
// Create a Json document that consists of an array of numbers
|
|
nlohmann::json document;
|
|
|
|
for (unsigned int i = 0; i < numElements; i++) {
|
|
document.push_back(static_cast<double>(i));
|
|
}
|
|
|
|
// Ensure that wrapping the document preserves the array and does not allow
|
|
// it to be cast to other types
|
|
valijson::adapters::NlohmannJsonAdapter adapter(document);
|
|
#if VALIJSON_USE_EXCEPTIONS
|
|
ASSERT_NO_THROW( adapter.getArray() );
|
|
ASSERT_ANY_THROW( adapter.getBool() );
|
|
ASSERT_ANY_THROW( adapter.getDouble() );
|
|
ASSERT_ANY_THROW( adapter.getObject() );
|
|
ASSERT_ANY_THROW( adapter.getString() );
|
|
#endif
|
|
|
|
// Ensure that the array contains the expected number of elements
|
|
EXPECT_EQ( numElements, adapter.getArray().size() );
|
|
|
|
// Ensure that the elements are returned in the order they were inserted
|
|
unsigned int expectedValue = 0;
|
|
for (const valijson::adapters::NlohmannJsonAdapter value : adapter.getArray()) {
|
|
ASSERT_TRUE( value.isNumber() );
|
|
EXPECT_EQ( double(expectedValue), value.getDouble() );
|
|
expectedValue++;
|
|
}
|
|
|
|
// Ensure that the correct number of elements were iterated over
|
|
EXPECT_EQ(numElements, expectedValue);
|
|
}
|
|
|
|
TEST_F(TestNlohmannJsonAdapter, BasicObjectIteration)
|
|
{
|
|
const unsigned int numElements = 10;
|
|
|
|
// Create a DropBoxJson document that consists of an object that maps numeric
|
|
// strings their corresponding numeric values
|
|
nlohmann::json document;
|
|
for (uint32_t i = 0; i < numElements; i++) {
|
|
document[std::to_string(i)] = static_cast<double>(i);
|
|
}
|
|
|
|
// Ensure that wrapping the document preserves the object and does not
|
|
// allow it to be cast to other types
|
|
valijson::adapters::NlohmannJsonAdapter adapter(document);
|
|
#if VALIJSON_USE_EXCEPTIONS
|
|
ASSERT_NO_THROW( adapter.getObject() );
|
|
ASSERT_ANY_THROW( adapter.getArray() );
|
|
ASSERT_ANY_THROW( adapter.getBool() );
|
|
ASSERT_ANY_THROW( adapter.getDouble() );
|
|
ASSERT_ANY_THROW( adapter.getString() );
|
|
#endif
|
|
|
|
// Ensure that the object contains the expected number of members
|
|
EXPECT_EQ( numElements, adapter.getObject().size() );
|
|
|
|
// Ensure that the members are returned in the order they were inserted
|
|
unsigned int expectedValue = 0;
|
|
for (const valijson::adapters::NlohmannJsonAdapter::ObjectMember member : adapter.getObject()) {
|
|
ASSERT_TRUE( member.second.isNumber() );
|
|
EXPECT_EQ( std::to_string(expectedValue), member.first );
|
|
EXPECT_EQ( double(expectedValue), member.second.getDouble() );
|
|
expectedValue++;
|
|
}
|
|
|
|
// Ensure that the correct number of elements were iterated over
|
|
EXPECT_EQ( numElements, expectedValue );
|
|
}
|