mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 06:28:31 +01:00
Handle query string when parsing data format
URLs may contain a query string (prefixed with '?') and this should be ignored when parsing the data format. To facilitate testing this functionality, ParseDataFormat has been made non-static.
This commit is contained in:
48
src/test/rest_tests.cpp
Normal file
48
src/test/rest_tests.cpp
Normal file
@@ -0,0 +1,48 @@
|
||||
// Copyright (c) 2012-2022 The Bitcoin Core developers
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#include <rest.h>
|
||||
#include <test/util/setup_common.h>
|
||||
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include <string>
|
||||
|
||||
BOOST_FIXTURE_TEST_SUITE(rest_tests, BasicTestingSetup)
|
||||
|
||||
BOOST_AUTO_TEST_CASE(test_query_string)
|
||||
{
|
||||
std::string param;
|
||||
RESTResponseFormat rf;
|
||||
// No query string
|
||||
rf = ParseDataFormat(param, "/rest/endpoint/someresource.json");
|
||||
BOOST_CHECK_EQUAL(param, "/rest/endpoint/someresource");
|
||||
BOOST_CHECK_EQUAL(rf, RESTResponseFormat::JSON);
|
||||
|
||||
// Query string with single parameter
|
||||
rf = ParseDataFormat(param, "/rest/endpoint/someresource.bin?p1=v1");
|
||||
BOOST_CHECK_EQUAL(param, "/rest/endpoint/someresource");
|
||||
BOOST_CHECK_EQUAL(rf, RESTResponseFormat::BINARY);
|
||||
|
||||
// Query string with multiple parameters
|
||||
rf = ParseDataFormat(param, "/rest/endpoint/someresource.hex?p1=v1&p2=v2");
|
||||
BOOST_CHECK_EQUAL(param, "/rest/endpoint/someresource");
|
||||
BOOST_CHECK_EQUAL(rf, RESTResponseFormat::HEX);
|
||||
|
||||
// Incorrectly formed query string will not be handled
|
||||
rf = ParseDataFormat(param, "/rest/endpoint/someresource.json&p1=v1");
|
||||
BOOST_CHECK_EQUAL(param, "/rest/endpoint/someresource.json&p1=v1");
|
||||
BOOST_CHECK_EQUAL(rf, RESTResponseFormat::UNDEF);
|
||||
|
||||
// Omitted data format with query string should return UNDEF and hide query string
|
||||
rf = ParseDataFormat(param, "/rest/endpoint/someresource?p1=v1");
|
||||
BOOST_CHECK_EQUAL(param, "/rest/endpoint/someresource");
|
||||
BOOST_CHECK_EQUAL(rf, RESTResponseFormat::UNDEF);
|
||||
|
||||
// Data format specified after query string
|
||||
rf = ParseDataFormat(param, "/rest/endpoint/someresource?p1=v1.json");
|
||||
BOOST_CHECK_EQUAL(param, "/rest/endpoint/someresource");
|
||||
BOOST_CHECK_EQUAL(rf, RESTResponseFormat::UNDEF);
|
||||
}
|
||||
BOOST_AUTO_TEST_SUITE_END()
|
||||
Reference in New Issue
Block a user