mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-05 10:17:30 -05:00
fff771ee86
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.
48 lines
1.9 KiB
C++
48 lines
1.9 KiB
C++
// 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()
|