2016-12-08 11:22:23 -06:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A great place for testing out of bound data, as found by
|
|
|
|
* UnitFuzz.
|
|
|
|
*/
|
|
|
|
|
2017-12-20 07:06:26 -06:00
|
|
|
#include <config.h>
|
2017-03-08 10:38:22 -06:00
|
|
|
|
2017-12-20 07:06:26 -06:00
|
|
|
#include <Common.hpp>
|
|
|
|
#include <IoUtil.hpp>
|
|
|
|
#include <Protocol.hpp>
|
2016-12-08 11:22:23 -06:00
|
|
|
#include <LOOLWebSocket.hpp>
|
2017-12-20 07:06:26 -06:00
|
|
|
#include <Unit.hpp>
|
|
|
|
#include <UnitHTTP.hpp>
|
|
|
|
#include <Util.hpp>
|
2016-12-08 11:22:23 -06:00
|
|
|
|
|
|
|
#include <Poco/Timestamp.h>
|
|
|
|
#include <Poco/StringTokenizer.h>
|
|
|
|
#include <Poco/Net/HTTPServerRequest.h>
|
|
|
|
|
|
|
|
class UnitOOB : public UnitWSD
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
UnitOOB()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void invokeTest() override
|
|
|
|
{
|
|
|
|
UnitHTTPServerResponse response;
|
|
|
|
UnitHTTPServerRequest request(response, "nonsense URI");
|
|
|
|
|
|
|
|
// ensure we handle invalid URIs without asserting.
|
2016-12-22 03:27:30 -06:00
|
|
|
testHandleRequest(TestRequest::Prisoner, request, response);
|
|
|
|
exitTest(TestResult::Ok);
|
2016-12-08 11:22:23 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
UnitBase *unit_create_wsd(void)
|
|
|
|
{
|
|
|
|
return new UnitOOB();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|