-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcookbook_parsing_individual_members2_test.cpp
56 lines (48 loc) · 1.43 KB
/
cookbook_parsing_individual_members2_test.cpp
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
// Copyright (c) Darrell Wright
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Official repository: https://github.com/beached/daw_json_link
//
#include "defines.h"
#include "daw/json/daw_json_link.h"
#include <daw/daw_read_file.h>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <unordered_map>
int main( int argc, char **argv )
#if defined( DAW_USE_EXCEPTIONS )
try
#endif
{
if( argc <= 1 ) {
puts(
"Must supply path to cookbook_parsing_individual_members2.json file\n" );
exit( EXIT_FAILURE );
}
auto const file_data = daw::read_file( argv[1] ).value( );
auto const json_data =
std::string_view( file_data.data( ), file_data.size( ) );
using namespace daw::json;
std::vector<std::string_view> value =
from_json_array<std::string_view>( json_data, "member1" );
test_assert( value.size( ) == 4, "Unexpected value" );
test_assert( value[1] == "is", "Unexpected value" );
}
#if defined( DAW_USE_EXCEPTIONS )
catch( daw::json::json_exception const &jex ) {
std::cerr << "Exception thrown by parser: " << jex.reason( ) << '\n';
exit( 1 );
} catch( std::exception const &ex ) {
std::cerr << "Unknown exception thrown during testing: " << ex.what( )
<< '\n';
exit( 1 );
} catch( ... ) {
std::cerr << "Unknown exception thrown during testing\n";
throw;
}
#endif