reformatted sources

This commit is contained in:
gulliver 2022-12-11 17:04:37 +01:00
parent 79094c8a6d
commit a46efc9a78
1 changed files with 281 additions and 267 deletions

View File

@ -1,368 +1,382 @@
#include <catch2/catch_test_macros.hpp>
#include "crow/json.h" #include "crow/json.h"
#include "model.hpp" #include "model.hpp"
#include <catch2/catch_test_macros.hpp>
TEST_CASE( "PublicKey::to_json", "[to_json]" ) { TEST_CASE("PublicKey::to_json", "[to_json]") {
PublicKey k {"daaa63ddda38c189b8c49020c8276adbe0a695685a...", PublicKey k{"daaa63ddda38c189b8c49020c8276adbe0a695685a...", "65537"};
"65537" };
auto json = k.to_json(); auto json = k.to_json();
REQUIRE( json["modulus"].dump() == "\"" + k.modulus + "\"" ); REQUIRE(json["modulus"].dump() == "\"" + k.modulus + "\"");
REQUIRE( json["public_exponent"].dump() == "\"" + k.public_exponent+"\"" ); REQUIRE(json["public_exponent"].dump() == "\"" + k.public_exponent + "\"");
REQUIRE( json["type"].dump() == "\"rsa public key\"" ); REQUIRE(json["type"].dump() == "\"rsa public key\"");
REQUIRE( json.keys().size() == 3 ); REQUIRE(json.keys().size() == 3);
} }
TEST_CASE( "RequestCDDSerial::from_string", "[from_string]" ) { TEST_CASE("RequestCDDSerial::from_string", "[from_string]") {
// good case // good case
std::string good = std::string good = "{"
"{" "\"message_reference\": 100000,"
"\"message_reference\": 100000," "\"type\": \"request cdd serial\""
"\"type\": \"request cdd serial\"" "}";
"}";
auto res = RequestCDDSerial::from_string(good); auto res = RequestCDDSerial::from_string(good);
REQUIRE(res.has_value()==true); REQUIRE(res.has_value() == true);
REQUIRE(res->message_reference == 100000); REQUIRE(res->message_reference == 100000);
// bad cases // bad cases
res = RequestCDDSerial::from_string(""); res = RequestCDDSerial::from_string("");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
// invalid type // invalid type
res = RequestCDDSerial::from_string( "{" res = RequestCDDSerial::from_string("{"
"\"message_reference\": 100000," "\"message_reference\": 100000,"
"\"type\": \"request something wrong\"" "\"type\": \"request something wrong\""
"}"); "}");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
// invalid attribute name // invalid attribute name
res = RequestCDDSerial::from_string("{" res = RequestCDDSerial::from_string("{"
"\"x_message_reference\": 100000," "\"x_message_reference\": 100000,"
"}"); "}");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
} }
TEST_CASE( "RequestCDDC::from_string", "[from_string]" ) { TEST_CASE("RequestCDDC::from_string", "[from_string]") {
// good case // good case
auto res = RequestCDDC::from_string("{" auto res = RequestCDDC::from_string("{"
"\"cdd_serial\": 1," "\"cdd_serial\": 1,"
"\"message_reference\": 100001," "\"message_reference\": 100001,"
"\"type\": \"request cddc\"" "\"type\": \"request cddc\""
"}"); "}");
REQUIRE(res.has_value()==true); REQUIRE(res.has_value() == true);
REQUIRE(res->cdd_serial == 1); REQUIRE(res->cdd_serial == 1);
REQUIRE(res->message_reference == 100001); REQUIRE(res->message_reference == 100001);
// bad cases // bad cases
res = RequestCDDC::from_string(""); res = RequestCDDC::from_string("");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
// invalid type // invalid type
res = RequestCDDC::from_string( "{" res = RequestCDDC::from_string("{"
"\"cdd_serial\": 1," "\"cdd_serial\": 1,"
"\"message_reference\": 100001," "\"message_reference\": 100001,"
"\"type\": \"wrong type\"," "\"type\": \"wrong type\","
"}"); "}");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
// invalid attribute name // invalid attribute name
res = RequestCDDC::from_string("{" res = RequestCDDC::from_string("{"
"\"cdd_serial\": 1," "\"cdd_serial\": 1,"
"\"x_ message_reference\": 100001," "\"x_ message_reference\": 100001,"
"\"type\": \"request cddc\"," "\"type\": \"request cddc\","
"}"); "}");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
} }
TEST_CASE( "RequestMKCs::from_string", "[from_string]" ) { TEST_CASE("RequestMKCs::from_string", "[from_string]") {
// good case // good case
auto res = RequestMKCs::from_string( "{" auto res =
"\"denominations\": [1, 2, 5]," RequestMKCs::from_string("{"
"\"message_reference\": 100002," "\"denominations\": [1, 2, 5],"
"\"mint_key_ids\": []," "\"message_reference\": 100002,"
"\"type\": \"request mint key certificates\"" "\"mint_key_ids\": [],"
"}"); "\"type\": \"request mint key certificates\""
const std::vector<uint32_t> EXPECTED_DENOMINATIONS = {1,2,5}; "}");
const std::vector<uint32_t> EXPECTED_DENOMINATIONS = {1, 2, 5};
const std::vector<uint32_t> EXPECTED_MINT_KEY_IDS = {}; const std::vector<uint32_t> EXPECTED_MINT_KEY_IDS = {};
REQUIRE(res.has_value()==true); REQUIRE(res.has_value() == true);
REQUIRE(res->denominations == EXPECTED_DENOMINATIONS); REQUIRE(res->denominations == EXPECTED_DENOMINATIONS);
REQUIRE(res->message_reference == 100002); REQUIRE(res->message_reference == 100002);
REQUIRE(res->mint_key_ids == EXPECTED_MINT_KEY_IDS); REQUIRE(res->mint_key_ids == EXPECTED_MINT_KEY_IDS);
// bad cases // bad cases
res = RequestMKCs::from_string(""); res = RequestMKCs::from_string("");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
// invalid type // invalid type
res = RequestMKCs::from_string( "{" res = RequestMKCs::from_string("{"
"\"denominations\": [1, 2, 5]," "\"denominations\": [1, 2, 5],"
"\"message_reference\": 100002," "\"message_reference\": 100002,"
"\"mint_key_ids\": []," "\"mint_key_ids\": [],"
"\"type\": \"request wrong type\"" "\"type\": \"request wrong type\""
"}"); "}");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
// invalid attribute name // invalid attribute name
res = RequestMKCs::from_string("{" res =
"\"denominations\": [1, 2, 5]," RequestMKCs::from_string("{"
"\"x_message_reference\": 100002," // WRONG NAME "\"denominations\": [1, 2, 5],"
"\"mint_key_ids\": []," "\"x_message_reference\": 100002," // WRONG NAME
"\"type\": \"request wrong type\"" "\"mint_key_ids\": [],"
"}"); "\"type\": \"request wrong type\""
REQUIRE(res.has_value()==false); "}");
REQUIRE(res.has_value() == false);
// invalid attribute type (not an array as expected) // invalid attribute type (not an array as expected)
res = RequestMKCs::from_string("{" res = RequestMKCs::from_string("{"
"\"denominations\": 1," "\"denominations\": 1,"
"\"message_reference\": 100002," // WRONG NAME "\"message_reference\": 100002," // WRONG NAME
"\"mint_key_ids\": []," "\"mint_key_ids\": [],"
"\"type\": \"request wrong type\"" "\"type\": \"request wrong type\""
"}"); "}");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
} }
TEST_CASE( "Blind::from_json", "[from_string]" ) { TEST_CASE("Blind::from_json", "[from_string]") {
auto good = crow::json::load("{" auto good = crow::json::load(
"\"blinded_payload_hash\": \"924edb672c3345492f38341ff86b57181da4c673ef...\"," "{"
"\"mint_key_id\": \"1ceb977bb531c65f133ab8b0d60862b17369d96\"," "\"blinded_payload_hash\": "
"\"reference\": \"a0\"," "\"924edb672c3345492f38341ff86b57181da4c673ef...\","
"\"type\": \"blinded payload hash\"" "\"mint_key_id\": \"1ceb977bb531c65f133ab8b0d60862b17369d96\","
"}"); "\"reference\": \"a0\","
"\"type\": \"blinded payload hash\""
"}");
auto res = Blind::from_json(good); auto res = Blind::from_json(good);
REQUIRE(res.has_value()==true); REQUIRE(res.has_value() == true);
REQUIRE(res->blinded_payload_hash== REQUIRE(res->blinded_payload_hash ==
"924edb672c3345492f38341ff86b57181da4c673ef..."); "924edb672c3345492f38341ff86b57181da4c673ef...");
REQUIRE(res->mint_key_id=="1ceb977bb531c65f133ab8b0d60862b17369d96"); REQUIRE(res->mint_key_id == "1ceb977bb531c65f133ab8b0d60862b17369d96");
REQUIRE(res->reference=="a0"); REQUIRE(res->reference == "a0");
// bad cases // bad cases
// wrong_type["blinded_payload_hash"]= "924edb672c3345492f38341ff86b57181da4c673ef..."; // wrong_type["blinded_payload_hash"]=
// wrong_type["mint_key_id"]= "1ceb977bb531c65f133ab8b0d60862b17369d96"; // "924edb672c3345492f38341ff86b57181da4c673ef..."; wrong_type["mint_key_id"]=
// wrong_type["reference"] = "a0"; // "1ceb977bb531c65f133ab8b0d60862b17369d96"; wrong_type["reference"] = "a0";
// wrong_type["type"]= "wrong type"; // wrong_type["type"]= "wrong type";
// res = Blind::from_json(wrong_type); // res = Blind::from_json(wrong_type);
} }
TEST_CASE( "RequestMint::from_string", "[from_string]" ) { TEST_CASE("RequestMint::from_string", "[from_string]") {
// good case // good case
auto res = RequestMint::from_string( "{" auto res = RequestMint::from_string(
"\"blinds\": [" "{"
"{" "\"blinds\": ["
"\"blinded_payload_hash\": \"924edb672c3345492f38341ff86b57181da4c673ef...\"," "{"
"\"mint_key_id\": \"1ceb977bb531c65f133ab8b0d60862b17369d96\"," "\"blinded_payload_hash\": "
"\"reference\": \"a0\"," "\"924edb672c3345492f38341ff86b57181da4c673ef...\","
"\"type\": \"blinded payload hash\"" "\"mint_key_id\": \"1ceb977bb531c65f133ab8b0d60862b17369d96\","
"}," "\"reference\": \"a0\","
"{" "\"type\": \"blinded payload hash\""
"\"blinded_payload_hash\": \"95db92e1c46ebea5edec5e508a831263de6fb78b4c...\"," "},"
"\"mint_key_id\": \"f2864e5cd937dbaa4825e73a81062de162143682\"," "{"
"\"reference\": \"a1\"," "\"blinded_payload_hash\": "
"\"type\": \"blinded payload hash\"" "\"95db92e1c46ebea5edec5e508a831263de6fb78b4c...\","
"}," "\"mint_key_id\": \"f2864e5cd937dbaa4825e73a81062de162143682\","
"{" "\"reference\": \"a1\","
"\"blinded_payload_hash\": \"10afac98ac43eb40e996c621d5db4d2238348e3f74...\"," "\"type\": \"blinded payload hash\""
"\"mint_key_id\": \"897a16bf12bd9ba474ef7be0e3a53553a7b4ece8\"," "},"
"\"reference\": \"a2\"," "{"
"\"type\": \"blinded payload hash\"" "\"blinded_payload_hash\": "
"}" "\"10afac98ac43eb40e996c621d5db4d2238348e3f74...\","
"]," "\"mint_key_id\": \"897a16bf12bd9ba474ef7be0e3a53553a7b4ece8\","
"\"message_reference\": 100003," "\"reference\": \"a2\","
"\"transaction_reference\": \"b2221a58008a05a6c4647159c324c985\"," "\"type\": \"blinded payload hash\""
"\"type\": \"request mint\"" "}"
"}"); "],"
"\"message_reference\": 100003,"
"\"transaction_reference\": \"b2221a58008a05a6c4647159c324c985\","
"\"type\": \"request mint\""
"}");
REQUIRE(res.has_value()==true); REQUIRE(res.has_value() == true);
REQUIRE(res->message_reference==100003); REQUIRE(res->message_reference == 100003);
REQUIRE(res->transaction_reference == "b2221a58008a05a6c4647159c324c985"); REQUIRE(res->transaction_reference == "b2221a58008a05a6c4647159c324c985");
/// \todo check blinds /// \todo check blinds
// bad cases // bad cases
res = RequestMint::from_string(""); res = RequestMint::from_string("");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
// invalid type // invalid type
res = RequestMint::from_string( "{" res = RequestMint::from_string(
"\"blinds\": []," "{"
"\"message_reference\": 100003," "\"blinds\": [],"
"\"transaction_reference\": \"b2221a58008a05a6c4647159c324c985\"," "\"message_reference\": 100003,"
"\"type\": \"request wrong type\"" "\"transaction_reference\": \"b2221a58008a05a6c4647159c324c985\","
"}"); "\"type\": \"request wrong type\""
REQUIRE(res.has_value()==false); "}");
REQUIRE(res.has_value() == false);
// invalid attribute name // invalid attribute name
res = RequestMint::from_string("{" res = RequestMint::from_string(
"\"blinds\": []," "{"
"\"x_message_reference\": 100003," "\"blinds\": [],"
"\"transaction_reference\": \"b2221a58008a05a6c4647159c324c985\"," "\"x_message_reference\": 100003,"
"\"type\": \"request mint\"" "\"transaction_reference\": \"b2221a58008a05a6c4647159c324c985\","
"}"); "\"type\": \"request mint\""
REQUIRE(res.has_value()==false); "}");
REQUIRE(res.has_value() == false);
// invalid attribute type (not an array as expected) // invalid attribute type (not an array as expected)
res = RequestMint::from_string("{" res = RequestMint::from_string(
"\"blinds\": 1," "{"
"\"message_reference\": 100003," "\"blinds\": 1,"
"\"transaction_reference\": \"b2221a58008a05a6c4647159c324c985\"," "\"message_reference\": 100003,"
"\"type\": \"request mint\"" "\"transaction_reference\": \"b2221a58008a05a6c4647159c324c985\","
"}"); "\"type\": \"request mint\""
REQUIRE(res.has_value()==false); "}");
REQUIRE(res.has_value() == false);
} }
TEST_CASE( "RequestRenew::from_string", "[from_string]" ) { TEST_CASE("RequestRenew::from_string", "[from_string]") {
auto res = RequestRenew::from_string( auto res = RequestRenew::from_string(
"{" "{"
" \"blinds\": [" " \"blinds\": ["
" {" " {"
" \"blinded_payload_hash\": \"7ed0cda1c1b36f544514b12848b8436974b7b9f6c7...\"," " \"blinded_payload_hash\": "
" \"mint_key_id\": \"f2864e5cd937dbaa4825e73a81062de162143682\"," "\"7ed0cda1c1b36f544514b12848b8436974b7b9f6c7...\","
" \"reference\": \"b0\"," " \"mint_key_id\": \"f2864e5cd937dbaa4825e73a81062de162143682\","
" \"type\": \"blinded payload hash\"" " \"reference\": \"b0\","
" }" " \"type\": \"blinded payload hash\""
" ]," " }"
" \"coins\": [" " ],"
" {" " \"coins\": ["
" \"payload\": {" " {"
" \"cdd_location\": \"https://opencent.org\"," " \"payload\": {"
" \"denomination\": 1," " \"cdd_location\": \"https://opencent.org\","
" \"issuer_id\": \"23ed956e629ba35f0002eaf833ea436aea7db5c2\"," " \"denomination\": 1,"
" \"mint_key_id\": \"1ceb977bb531c65f133ab8b0d60862b17369d96\"," " \"issuer_id\": \"23ed956e629ba35f0002eaf833ea436aea7db5c2\","
" \"protocol_version\": \"https://opencoin.org/1.0\"," " \"mint_key_id\": \"1ceb977bb531c65f133ab8b0d60862b17369d96\","
" \"serial\": \"cd613e30d8f16adf91b7584a2265b1f5\"," " \"protocol_version\": \"https://opencoin.org/1.0\","
" \"type\": \"payload\"" " \"serial\": \"cd613e30d8f16adf91b7584a2265b1f5\","
" }," " \"type\": \"payload\""
" \"signature\": \"2ec0af339566b19fb9867b491ce58025dcefcab649...\"," " },"
" \"type\": \"coin\"" " \"signature\": \"2ec0af339566b19fb9867b491ce58025dcefcab649...\","
" }" " \"type\": \"coin\""
" ]," " }"
" \"message_reference\": 100004," " ],"
" \"transaction_reference\": \"ad45f23d3b1a11df587fd2803bab6c39\"," " \"message_reference\": 100004,"
" \"type\": \"request renew\"" " \"transaction_reference\": \"ad45f23d3b1a11df587fd2803bab6c39\","
"}"); " \"type\": \"request renew\""
REQUIRE(res.has_value()==true); "}");
REQUIRE(res.has_value() == true);
// invalid attribute name // invalid attribute name
res = RequestRenew::from_string("{" res = RequestRenew::from_string(
"\"blinds\": []," "{"
"\"coins\": []," "\"blinds\": [],"
"\"x_message_reference\": 100003," "\"coins\": [],"
"\"transaction_reference\": \"b2221a58008a05a6c4647159c324c985\"," "\"x_message_reference\": 100003,"
"\"type\": \"request mint\"" "\"transaction_reference\": \"b2221a58008a05a6c4647159c324c985\","
"}"); "\"type\": \"request mint\""
REQUIRE(res.has_value()==false); "}");
REQUIRE(res.has_value() == false);
// invalid attribute type (not an array as expected) // invalid attribute type (not an array as expected)
res = RequestRenew::from_string("{" res = RequestRenew::from_string(
"\"blinds\": 1," "{"
"\"coins\": []," "\"blinds\": 1,"
"\"message_reference\": 100003," "\"coins\": [],"
"\"transaction_reference\": \"b2221a58008a05a6c4647159c324c985\"," "\"message_reference\": 100003,"
"\"type\": \"request mint\"" "\"transaction_reference\": \"b2221a58008a05a6c4647159c324c985\","
"}"); "\"type\": \"request mint\""
REQUIRE(res.has_value()==false); "}");
REQUIRE(res.has_value() == false);
} }
TEST_CASE( "RequestResume::from_string", "[from_string]" ) { TEST_CASE("RequestResume::from_string", "[from_string]") {
// good case // good case
auto res = RequestResume::from_string( "{" auto res = RequestResume::from_string(
"\"message_reference\": 100005," "{"
"\"transaction_reference\": \"ad45f23d3b1a11df587fd2803bab6c39\"," "\"message_reference\": 100005,"
"\"type\": \"request resume\"" "\"transaction_reference\": \"ad45f23d3b1a11df587fd2803bab6c39\","
"}"); "\"type\": \"request resume\""
"}");
REQUIRE(res.has_value() == true);
REQUIRE(res->message_reference == 100005);
REQUIRE(res->transaction_reference == "ad45f23d3b1a11df587fd2803bab6c39");
REQUIRE(res.has_value()==true);
REQUIRE(res->message_reference==100005);
REQUIRE(res->transaction_reference=="ad45f23d3b1a11df587fd2803bab6c39");
// bad cases // bad cases
res = RequestResume::from_string(""); res = RequestResume::from_string("");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
// invalid type // invalid type
res = RequestResume::from_string( "{" res = RequestResume::from_string(
"\"message_reference\": 100005," "{"
"\"transaction_reference\": \"ad45f23d3b1a11df587fd2803bab6c39\"," "\"message_reference\": 100005,"
"\"type\": \"Wrong type\"" "\"transaction_reference\": \"ad45f23d3b1a11df587fd2803bab6c39\","
"}"); "\"type\": \"Wrong type\""
REQUIRE(res.has_value()==false); "}");
REQUIRE(res.has_value() == false);
// invalid attribute name // invalid attribute name
res = RequestResume::from_string("{" res = RequestResume::from_string("{"
"\"message_reference\": 100005," "\"message_reference\": 100005,"
"\"WRONG_ATTR_transaction_reference\": \"ad45f23d3b1a11df587fd2803bab6c39\"," "\"WRONG_ATTR_transaction_reference\": "
"\"type\": \"request resume\"" "\"ad45f23d3b1a11df587fd2803bab6c39\","
"}"); "\"type\": \"request resume\""
REQUIRE(res.has_value()==false); "}");
REQUIRE(res.has_value() == false);
} }
TEST_CASE( "RequestRedeem::from_string", "[from_string]" ) { TEST_CASE("RequestRedeem::from_string", "[from_string]") {
auto res = RequestRedeem::from_string( "{" auto res = RequestRedeem::from_string(
"\"coins\": [" "{"
"{" "\"coins\": ["
"\"payload\": {" "{"
"\"cdd_location\": \"https://opencent.org\"," "\"payload\": {"
"\"denomination\": 2," "\"cdd_location\": \"https://opencent.org\","
"\"issuer_id\": \"23ed956e629ba35f0002eaf833ea436aea7db5c2\"," "\"denomination\": 2,"
"\"mint_key_id\": \"f2864e5cd937dbaa4825e73a81062de162143682\"," "\"issuer_id\": \"23ed956e629ba35f0002eaf833ea436aea7db5c2\","
"\"protocol_version\": \"https://opencoin.org/1.0\"," "\"mint_key_id\": \"f2864e5cd937dbaa4825e73a81062de162143682\","
"\"serial\": \"cd447e35b8b6d8fe442e3d437204e52d\"," "\"protocol_version\": \"https://opencoin.org/1.0\","
"\"type\": \"payload\"" "\"serial\": \"cd447e35b8b6d8fe442e3d437204e52d\","
"}," "\"type\": \"payload\""
"\"signature\": \"11b6bfa18134c300f4440df1db17a08fa71a071b71...\"," "},"
"\"type\": \"coin\"" "\"signature\": \"11b6bfa18134c300f4440df1db17a08fa71a071b71...\","
"}," "\"type\": \"coin\""
"{" "},"
"\"payload\": {" "{"
"\"cdd_location\": \"https://opencent.org\"," "\"payload\": {"
"\"denomination\": 2," "\"cdd_location\": \"https://opencent.org\","
"\"issuer_id\": \"23ed956e629ba35f0002eaf833ea436aea7db5c2\"," "\"denomination\": 2,"
"\"mint_key_id\": \"f2864e5cd937dbaa4825e73a81062de162143682\"," "\"issuer_id\": \"23ed956e629ba35f0002eaf833ea436aea7db5c2\","
"\"protocol_version\": \"https://opencoin.org/1.0\"," "\"mint_key_id\": \"f2864e5cd937dbaa4825e73a81062de162143682\","
"\"serial\": \"5b6e6e307d4bedc51431193e6c3f339\"," "\"protocol_version\": \"https://opencoin.org/1.0\","
"\"type\": \"payload\"" "\"serial\": \"5b6e6e307d4bedc51431193e6c3f339\","
"}," "\"type\": \"payload\""
"\"signature\": \"a6dd7b7f1f12c4e411289e8ea0355f24a8597bbc38...\"," "},"
"\"type\": \"coin\"" "\"signature\": \"a6dd7b7f1f12c4e411289e8ea0355f24a8597bbc38...\","
"}" "\"type\": \"coin\""
"]," "}"
"\"message_reference\": 100006," "],"
"\"type\": \"request redeem\"" "\"message_reference\": 100006,"
"}"); "\"type\": \"request redeem\""
"}");
REQUIRE(res.has_value() == true);
REQUIRE(res->message_reference == 100006);
REQUIRE(res.has_value()==true);
REQUIRE(res->message_reference==100006);
// bad cases // bad cases
res = RequestRedeem::from_string(""); res = RequestRedeem::from_string("");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
// invalid type // invalid type
res = RequestRedeem::from_string( "{" res = RequestRedeem::from_string("{"
"\"coins\": []," "\"coins\": [],"
"\"message_reference\": 100006," "\"message_reference\": 100006,"
"\"type\": \"WRONG TYPE\"" "\"type\": \"WRONG TYPE\""
"}"); "}");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
// invalid attribute name // invalid attribute name
res = RequestRedeem::from_string("{" res = RequestRedeem::from_string("{"
"\"INVALID_coins\": []," "\"INVALID_coins\": [],"
"\"message_reference\": 100006," "\"message_reference\": 100006,"
"\"type\": \"request redeem\"" "\"type\": \"request redeem\""
"}"); "}");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
// invalid coin type // invalid coin type
res = RequestRedeem::from_string("{" res = RequestRedeem::from_string("{"
"\"coins\": 1," "\"coins\": 1,"
"\"message_reference\": 100006," "\"message_reference\": 100006,"
"\"type\": \"request redeem\"" "\"type\": \"request redeem\""
"}"); "}");
REQUIRE(res.has_value()==false); REQUIRE(res.has_value() == false);
} }