Sha256: d5c89449245cdaeb172b41fda4ca022ba5a29b111f61a724707d390f43e91306

Contents?: true

Size: 1.69 KB

Versions: 16

Compression:

Stored size: 1.69 KB

Contents

// Copyright (c) 2016-2020 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#include "test.hpp"

#include "nlohmann/from_value.hpp"
#include "nlohmann/json.hpp"
#include "nlohmann/to_value.hpp"

#include <tao/json/events/from_string.hpp>
#include <tao/json/events/to_string.hpp>

namespace tao::json
{
   void unit_test()
   {
      tao::json::nlohmann::to_value<::nlohmann::json > value_consumer;
      tao::json::events::from_string( value_consumer, "[ null, true, false, 42, 43.0, \"foo\", [ 1, 2, 3 ], { \"a\" : \"b\", \"c\" : \"d\" } ]" );

      const auto& v = value_consumer.value;

      TEST_ASSERT( v.type() == ::nlohmann::json::value_t::array );
      TEST_ASSERT( v.size() == 8 );
      TEST_ASSERT( v[ 0 ] == nullptr );
      TEST_ASSERT( v[ 1 ].get< bool >() == true );
      TEST_ASSERT( v[ 2 ].get< bool >() == false );
      TEST_ASSERT( v[ 3 ] == 42 );
      TEST_ASSERT( v[ 4 ] == 43.0 );
      TEST_ASSERT( v[ 5 ] == "foo" );
      TEST_ASSERT( v[ 6 ].type() == ::nlohmann::json::value_t::array );
      TEST_ASSERT( v[ 6 ].size() == 3 );
      TEST_ASSERT( v[ 6 ][ 0 ] == 1 );
      TEST_ASSERT( v[ 6 ][ 1 ] == 2 );
      TEST_ASSERT( v[ 6 ][ 2 ] == 3 );
      TEST_ASSERT( v[ 7 ].type() == ::nlohmann::json::value_t::object );
      TEST_ASSERT( v[ 7 ].size() == 2 );
      TEST_ASSERT( v[ 7 ].at( "a" ) == "b" );
      TEST_ASSERT( v[ 7 ].at( "c" ) == "d" );

      tao::json::events::to_string output_consumer;
      tao::json::nlohmann::from_value( output_consumer, v );

      TEST_ASSERT( output_consumer.value() == "[null,true,false,42,43.0,\"foo\",[1,2,3],{\"a\":\"b\",\"c\":\"d\"}]" );
   }

}  // namespace tao::json

#include "main.hpp"

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
couchbase-3.0.0.alpha.4-x86_64-linux ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.4-x86_64-darwin-19 ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.4-universal-darwin-19 ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.4 ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.3-x86_64-linux ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.3-x86_64-darwin-19 ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.3-universal-darwin-19 ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.3 ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.2-x86_64-linux ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.2-x86_64-darwin-19 ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.2-universal-darwin-19 ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.2 ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.1-x86_64-linux ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.1-x86_64-darwin-19 ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.1-universal-darwin-19 ext/third_party/json/contrib/nlohmann.cpp
couchbase-3.0.0.alpha.1 ext/third_party/json/contrib/nlohmann.cpp