mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
At this point all of the jss::* names are defined in the same file. That file has been named JsonFields.h. That file name has little to do with either JsonStaticStrings (which is what jss is short for) or with jss. The file is renamed to jss.h so the file name better reflects what the file contains. All includes of that file are fixed. A few include order issues are tidied up along the way.
131 lines
4.7 KiB
C++
131 lines
4.7 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2012, 2013 Ripple Labs Inc.
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include <ripple/basics/Log.h>
|
|
#include <ripple/protocol/jss.h>
|
|
#include <ripple/protocol/SecretKey.h>
|
|
#include <ripple/protocol/st.h>
|
|
#include <ripple/json/json_reader.h>
|
|
#include <ripple/json/to_string.h>
|
|
#include <ripple/beast/unit_test.h>
|
|
#include <test/jtx.h>
|
|
|
|
#include <memory>
|
|
#include <type_traits>
|
|
|
|
namespace ripple {
|
|
|
|
class STValidation_test : public beast::unit_test::suite
|
|
{
|
|
public:
|
|
void testDeserialization ()
|
|
{
|
|
testcase ("Deserialization");
|
|
|
|
constexpr std::uint8_t payload1[] =
|
|
{
|
|
// specifies an Ed25519 public key.
|
|
0x22, 0x00, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x51,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2a, 0x73,
|
|
0x21, 0xed, 0x78, 0x00, 0xe6, 0x73, 0x00, 0x72, 0x00, 0x3c, 0x00,
|
|
0x00, 0x00, 0x88, 0x00, 0xe6, 0x73, 0x38, 0x00, 0x00, 0x8a, 0x00,
|
|
0x88, 0x4e, 0x31, 0x30, 0x5f, 0x5f, 0x63, 0x78, 0x78, 0x61, 0x62,
|
|
0x69
|
|
};
|
|
|
|
constexpr std::uint8_t payload2[] =
|
|
{
|
|
0x22, 0x00, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x51,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2a, 0x73,
|
|
0x21, 0xed, 0xff, 0x03, 0x1c, 0xbe, 0x65, 0x22, 0x61, 0x9c, 0x5e,
|
|
0x13, 0x12, 0x00, 0x3b, 0x43, 0x00, 0x00, 0x00, 0xf7, 0x3f, 0x3f,
|
|
0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x13, 0x13, 0x13, 0x3a, 0x27,
|
|
0xff
|
|
};
|
|
|
|
constexpr std::uint8_t payload3[] =
|
|
{
|
|
// Has no public key at all
|
|
0x22, 0x00, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x51,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2a
|
|
};
|
|
|
|
try
|
|
{
|
|
SerialIter sit {payload1};
|
|
auto stx = std::make_shared<ripple::STValidation>(sit,
|
|
[](PublicKey const& pk) {
|
|
return calcNodeID(pk);
|
|
}, false);
|
|
fail("An exception should have been thrown");
|
|
}
|
|
catch (std::exception const& e)
|
|
{
|
|
BEAST_EXPECT(strcmp(e.what(),
|
|
"Invalid public key in validation") == 0);
|
|
}
|
|
|
|
try
|
|
{
|
|
SerialIter sit {payload2};
|
|
auto stx = std::make_shared<ripple::STValidation>(sit,
|
|
[](PublicKey const& pk) {
|
|
return calcNodeID(pk);
|
|
}, false);
|
|
fail("An exception should have been thrown");
|
|
}
|
|
catch (std::exception const& e)
|
|
{
|
|
BEAST_EXPECT(strcmp(e.what(),
|
|
"Invalid public key in validation") == 0);
|
|
}
|
|
|
|
try
|
|
{
|
|
SerialIter sit {payload3};
|
|
auto stx = std::make_shared<ripple::STValidation>(sit,
|
|
[](PublicKey const& pk) {
|
|
return calcNodeID(pk);
|
|
}, false);
|
|
fail("An exception should have been thrown");
|
|
}
|
|
catch (std::exception const& e)
|
|
{
|
|
BEAST_EXPECT(strcmp(e.what(),
|
|
"Field 'SigningPubKey' is required but missing.") == 0);
|
|
}
|
|
}
|
|
|
|
void
|
|
run() override
|
|
{
|
|
testDeserialization();
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(STValidation,protocol,ripple);
|
|
|
|
} // ripple
|