2017-09-26 09:12:58 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
|
|
/*
|
|
|
|
* 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/.
|
|
|
|
*/
|
2020-12-22 13:00:05 -06:00
|
|
|
#include "Util.hpp"
|
2017-09-26 09:12:58 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
2017-09-27 12:57:22 -05:00
|
|
|
#include "helpers.hpp"
|
2017-09-26 09:12:58 -05:00
|
|
|
#include "Log.hpp"
|
|
|
|
#include "Unit.hpp"
|
|
|
|
#include "UnitHTTP.hpp"
|
2018-02-08 08:24:37 -06:00
|
|
|
|
2017-09-26 09:12:58 -05:00
|
|
|
#include <Poco/DateTimeFormat.h>
|
|
|
|
#include <Poco/DateTimeFormatter.h>
|
|
|
|
#include <Poco/JSON/Object.h>
|
2018-02-08 12:51:54 -06:00
|
|
|
#include <Poco/MemoryStream.h>
|
2021-02-07 16:58:01 -06:00
|
|
|
#include <Poco/RegularExpression.h>
|
2017-09-26 09:12:58 -05:00
|
|
|
#include <Poco/Net/HTTPRequest.h>
|
|
|
|
#include <Poco/URI.h>
|
2020-04-29 14:24:33 -05:00
|
|
|
#include <Poco/Util/LayeredConfiguration.h>
|
2020-12-21 18:07:26 -06:00
|
|
|
#include <sstream>
|
2021-11-11 03:17:43 -06:00
|
|
|
#include <vector>
|
2017-09-26 09:12:58 -05:00
|
|
|
|
|
|
|
class WopiTestServer : public UnitWSD
|
|
|
|
{
|
2022-02-10 07:35:46 -06:00
|
|
|
private:
|
|
|
|
|
2021-11-18 06:08:14 -06:00
|
|
|
enum class COOLStatusCode
|
2018-02-08 12:51:54 -06:00
|
|
|
{
|
|
|
|
DocChanged = 1010
|
|
|
|
};
|
|
|
|
|
2017-09-27 12:57:22 -05:00
|
|
|
/// The WOPISrc URL.
|
|
|
|
std::string _wopiSrc;
|
|
|
|
|
2021-11-11 03:17:43 -06:00
|
|
|
/// Websockets to communicate.
|
|
|
|
std::vector< std::unique_ptr<UnitWebSocket> > _wsList;
|
2017-09-27 12:57:22 -05:00
|
|
|
|
2017-10-20 11:12:05 -05:00
|
|
|
/// Content of the file.
|
|
|
|
std::string _fileContent;
|
|
|
|
|
2018-02-08 08:45:47 -06:00
|
|
|
/// Last modified time of the file
|
2019-09-27 11:56:16 -05:00
|
|
|
std::chrono::system_clock::time_point _fileLastModifiedTime;
|
2018-02-08 08:45:47 -06:00
|
|
|
|
2022-02-10 08:58:52 -06:00
|
|
|
/// The number of CheckFileInfo invocations.
|
|
|
|
std::size_t _countCheckFileInfo;
|
|
|
|
/// The number of GetFile invocations.
|
|
|
|
std::size_t _countGetFile;
|
|
|
|
/// The number of rename invocations.
|
|
|
|
std::size_t _countPutRelative;
|
|
|
|
/// The number of upload invocations.
|
|
|
|
std::size_t _countPutFile;
|
|
|
|
|
2022-02-10 07:35:46 -06:00
|
|
|
protected:
|
|
|
|
|
2018-12-13 01:48:50 -06:00
|
|
|
const std::string& getWopiSrc() const { return _wopiSrc; }
|
|
|
|
|
2021-11-11 03:17:43 -06:00
|
|
|
const std::unique_ptr<UnitWebSocket>& getWs() const { return _wsList.at(0); }
|
|
|
|
|
|
|
|
const std::unique_ptr<UnitWebSocket>& getWsAt(int index) { return _wsList.at(index); }
|
|
|
|
|
|
|
|
void deleteSocketAt(int index)
|
|
|
|
{
|
|
|
|
std::unique_ptr<UnitWebSocket>& socket = _wsList.at(index);
|
|
|
|
socket.reset();
|
|
|
|
}
|
2018-12-13 01:48:50 -06:00
|
|
|
|
|
|
|
const std::string& getFileContent() const { return _fileContent; }
|
|
|
|
|
2018-02-08 12:51:54 -06:00
|
|
|
/// Sets the file content to a given value and update the last file modified time
|
|
|
|
void setFileContent(const std::string& fileContent)
|
|
|
|
{
|
2020-12-22 13:00:05 -06:00
|
|
|
LOG_TST("setFileContent: [" << fileContent << ']');
|
2018-02-08 12:51:54 -06:00
|
|
|
_fileContent = fileContent;
|
2019-09-27 11:56:16 -05:00
|
|
|
_fileLastModifiedTime = std::chrono::system_clock::now();
|
2018-02-08 12:51:54 -06:00
|
|
|
}
|
|
|
|
|
2020-12-22 13:00:05 -06:00
|
|
|
const std::chrono::system_clock::time_point& getFileLastModifiedTime() const
|
|
|
|
{
|
|
|
|
return _fileLastModifiedTime;
|
|
|
|
}
|
2019-07-25 00:58:19 -05:00
|
|
|
|
2022-02-16 16:22:18 -06:00
|
|
|
WopiTestServer(std::string name, const std::string& fileContent = "Hello, world")
|
|
|
|
: UnitWSD(std::move(name))
|
2022-02-10 08:58:52 -06:00
|
|
|
, _countCheckFileInfo(0)
|
|
|
|
, _countGetFile(0)
|
|
|
|
, _countPutRelative(0)
|
|
|
|
, _countPutFile(0)
|
2017-09-26 09:12:58 -05:00
|
|
|
{
|
2022-02-16 16:22:18 -06:00
|
|
|
LOG_TST("WopiTestServer created for [" << getTestname() << ']');
|
2020-12-22 13:00:05 -06:00
|
|
|
setFileContent(fileContent);
|
2017-09-26 09:12:58 -05:00
|
|
|
}
|
|
|
|
|
2022-02-10 08:58:52 -06:00
|
|
|
std::size_t getCountCheckFileInfo() const { return _countCheckFileInfo; }
|
|
|
|
std::size_t getCountGetFile() const { return _countGetFile; }
|
|
|
|
std::size_t getCountPutRelative() const { return _countPutRelative; }
|
|
|
|
std::size_t getCountPutFile() const { return _countPutFile; }
|
|
|
|
|
2018-10-17 02:34:05 -05:00
|
|
|
void initWebsocket(const std::string& wopiName)
|
2017-09-27 12:57:22 -05:00
|
|
|
{
|
|
|
|
Poco::URI wopiURL(helpers::getTestServerURI() + wopiName);
|
|
|
|
|
2020-12-20 21:11:33 -06:00
|
|
|
_wopiSrc.clear();
|
2017-09-27 12:57:22 -05:00
|
|
|
Poco::URI::encode(wopiURL.toString(), ":/?", _wopiSrc);
|
|
|
|
|
2022-02-19 17:50:34 -06:00
|
|
|
// This is just a client connection that is used from the tests.
|
|
|
|
// It really has nothing to do with this fake WOPI server, exept
|
|
|
|
// that it manages it since it is the base of WOPI tests, so
|
|
|
|
// it's a common bit of housekeeping that all WOPI tests must do.
|
|
|
|
LOG_TST("Connecting test client to COOL (#" << (_wsList.size() + 1)
|
|
|
|
<< " connection): /cool/" << _wopiSrc << "/ws");
|
|
|
|
|
|
|
|
// Insert at the front.
|
|
|
|
const auto& _ws = _wsList.emplace(
|
|
|
|
_wsList.begin(), Util::make_unique<UnitWebSocket>("/cool/" + _wopiSrc + "/ws"));
|
2017-09-27 12:57:22 -05:00
|
|
|
|
2021-11-11 03:17:43 -06:00
|
|
|
assert((*_ws).get());
|
|
|
|
}
|
|
|
|
|
|
|
|
void addWebSocket()
|
|
|
|
{
|
2022-02-19 17:50:34 -06:00
|
|
|
// This is just a client connection that is used from the tests.
|
|
|
|
// It really has nothing to do with this fake WOPI server, exept
|
|
|
|
// that it manages it since it is the base of WOPI tests, so
|
|
|
|
// it's a common bit of housekeeping that all WOPI tests must do.
|
|
|
|
LOG_TST("Connecting test client to COOL (#" << (_wsList.size() + 1)
|
|
|
|
<< " connection): /cool/" << _wopiSrc << "/ws");
|
|
|
|
|
|
|
|
// Insert at the back.
|
|
|
|
const auto& _ws = _wsList.emplace(
|
|
|
|
_wsList.end(), Util::make_unique<UnitWebSocket>("/cool/" + _wopiSrc + "/ws"));
|
2021-11-11 03:17:43 -06:00
|
|
|
|
|
|
|
assert((*_ws).get());
|
2017-09-27 12:57:22 -05:00
|
|
|
}
|
|
|
|
|
2017-10-20 11:12:05 -05:00
|
|
|
virtual void assertCheckFileInfoRequest(const Poco::Net::HTTPRequest& /*request*/)
|
|
|
|
{
|
|
|
|
}
|
2017-09-26 09:12:58 -05:00
|
|
|
|
2017-10-20 11:12:05 -05:00
|
|
|
virtual void assertGetFileRequest(const Poco::Net::HTTPRequest& /*request*/)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-04-30 18:45:34 -05:00
|
|
|
/// Assert the PutFile request is valid and optinally return a response.
|
|
|
|
virtual std::unique_ptr<http::Response>
|
|
|
|
assertPutFileRequest(const Poco::Net::HTTPRequest& /*request*/)
|
2017-10-20 11:12:05 -05:00
|
|
|
{
|
2021-04-30 18:45:34 -05:00
|
|
|
return nullptr;
|
2017-10-20 11:12:05 -05:00
|
|
|
}
|
2017-09-26 09:12:58 -05:00
|
|
|
|
2017-10-25 07:09:27 -05:00
|
|
|
virtual void assertPutRelativeFileRequest(const Poco::Net::HTTPRequest& /*request*/)
|
2017-10-20 11:12:05 -05:00
|
|
|
{
|
|
|
|
}
|
2017-09-26 09:12:58 -05:00
|
|
|
|
2019-04-30 09:21:44 -05:00
|
|
|
virtual void assertRenameFileRequest(const Poco::Net::HTTPRequest& /*request*/)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-04-29 14:24:33 -05:00
|
|
|
void configure(Poco::Util::LayeredConfiguration& config) override
|
|
|
|
{
|
|
|
|
UnitWSD::configure(config);
|
|
|
|
// we're still internally confused as to https vs. http in places.
|
|
|
|
config.setBool("storage.ssl.as_scheme", false);
|
|
|
|
}
|
|
|
|
|
2017-09-26 09:12:58 -05:00
|
|
|
/// Here we act as a WOPI server, so that we have a server that responds to
|
|
|
|
/// the wopi requests without additional expensive setup.
|
2020-12-22 13:00:05 -06:00
|
|
|
virtual bool handleHttpRequest(const Poco::Net::HTTPRequest& request,
|
|
|
|
Poco::MemoryInputStream& message,
|
|
|
|
std::shared_ptr<StreamSocket>& socket) override
|
2017-09-26 09:12:58 -05:00
|
|
|
{
|
|
|
|
Poco::URI uriReq(request.getURI());
|
2020-06-22 07:24:11 -05:00
|
|
|
|
|
|
|
{
|
2020-12-21 18:07:26 -06:00
|
|
|
std::ostringstream oss;
|
2021-07-18 10:34:37 -05:00
|
|
|
oss << "Fake wopi host " << request.getMethod() << " request URI [" << uriReq.toString()
|
|
|
|
<< "]:\n";
|
2020-06-22 07:24:11 -05:00
|
|
|
for (const auto& pair : request)
|
|
|
|
{
|
2020-12-21 18:07:26 -06:00
|
|
|
oss << '\t' << pair.first << ": " << pair.second << " / ";
|
2020-06-22 07:24:11 -05:00
|
|
|
}
|
|
|
|
|
2020-12-21 18:07:26 -06:00
|
|
|
LOG_TST(oss.str());
|
2020-06-22 07:24:11 -05:00
|
|
|
}
|
2017-09-26 09:12:58 -05:00
|
|
|
|
2020-12-22 13:00:05 -06:00
|
|
|
static const Poco::RegularExpression regInfo("/wopi/files/[0-9]");
|
|
|
|
static const Poco::RegularExpression regContent("/wopi/files/[0-9]/contents");
|
|
|
|
|
2017-09-26 09:12:58 -05:00
|
|
|
// CheckFileInfo
|
2019-05-15 21:14:29 -05:00
|
|
|
if (request.getMethod() == "GET" && regInfo.match(uriReq.getPath()))
|
2017-09-26 09:12:58 -05:00
|
|
|
{
|
2022-02-10 08:58:52 -06:00
|
|
|
++_countCheckFileInfo;
|
|
|
|
LOG_TST("Fake wopi host request, handling CheckFileInfo (#"
|
|
|
|
<< _countCheckFileInfo << "): " << uriReq.getPath());
|
2017-09-26 09:12:58 -05:00
|
|
|
|
|
|
|
assertCheckFileInfoRequest(request);
|
|
|
|
|
2019-05-15 21:14:29 -05:00
|
|
|
const std::string fileName(uriReq.getPath() == "/wopi/files/3" ? "he%llo.txt" : "hello.txt");
|
2017-09-26 09:12:58 -05:00
|
|
|
Poco::JSON::Object::Ptr fileInfo = new Poco::JSON::Object();
|
2019-05-15 21:14:29 -05:00
|
|
|
fileInfo->set("BaseFileName", fileName);
|
2017-10-20 11:12:05 -05:00
|
|
|
fileInfo->set("Size", _fileContent.size());
|
2017-09-26 09:12:58 -05:00
|
|
|
fileInfo->set("Version", "1.0");
|
|
|
|
fileInfo->set("OwnerId", "test");
|
|
|
|
fileInfo->set("UserId", "test");
|
|
|
|
fileInfo->set("UserFriendlyName", "test");
|
|
|
|
fileInfo->set("UserCanWrite", "true");
|
|
|
|
fileInfo->set("PostMessageOrigin", "localhost");
|
2019-09-27 11:56:16 -05:00
|
|
|
fileInfo->set("LastModifiedTime", Util::getIso8601FracformatTime(_fileLastModifiedTime));
|
2018-02-01 22:28:20 -06:00
|
|
|
fileInfo->set("EnableOwnerTermination", "true");
|
2017-09-26 09:12:58 -05:00
|
|
|
|
|
|
|
std::ostringstream jsonStream;
|
|
|
|
fileInfo->stringify(jsonStream);
|
|
|
|
|
2022-02-01 07:33:25 -06:00
|
|
|
http::Response httpResponse(http::StatusLine(200));
|
|
|
|
httpResponse.set("Last-Modified", Util::getHttpTime(_fileLastModifiedTime));
|
|
|
|
httpResponse.setBody(jsonStream.str(), "application/json; charset=utf-8");
|
|
|
|
socket->sendAndShutdown(httpResponse);
|
2017-09-26 09:12:58 -05:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// GetFile
|
2019-05-15 21:14:29 -05:00
|
|
|
else if (request.getMethod() == "GET" && regContent.match(uriReq.getPath()))
|
2017-09-26 09:12:58 -05:00
|
|
|
{
|
2022-02-10 08:58:52 -06:00
|
|
|
++_countGetFile;
|
|
|
|
LOG_TST("Fake wopi host request, handling GetFile (#" << _countGetFile
|
|
|
|
<< "): " << uriReq.getPath());
|
2017-09-26 09:12:58 -05:00
|
|
|
|
|
|
|
assertGetFileRequest(request);
|
|
|
|
|
2022-02-01 07:33:25 -06:00
|
|
|
http::Response httpResponse(http::StatusLine(200));
|
|
|
|
httpResponse.set("Last-Modified", Util::getHttpTime(_fileLastModifiedTime));
|
|
|
|
httpResponse.setBody(_fileContent, "text/plain; charset=utf-8");
|
|
|
|
socket->sendAndShutdown(httpResponse);
|
2017-10-20 11:12:05 -05:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2019-05-15 21:14:29 -05:00
|
|
|
else if (request.getMethod() == "POST" && regInfo.match(uriReq.getPath()))
|
2017-10-20 11:12:05 -05:00
|
|
|
{
|
2022-02-10 08:58:52 -06:00
|
|
|
++_countPutRelative;
|
|
|
|
LOG_TST("Fake wopi host request, handling PutRelativeFile (#"
|
|
|
|
<< _countPutRelative << "): " << uriReq.getPath());
|
2019-04-30 09:21:44 -05:00
|
|
|
|
2022-02-10 08:58:52 -06:00
|
|
|
const std::string wopiURL =
|
|
|
|
helpers::getTestServerURI() +
|
|
|
|
"/something wopi/files/1?access_token=anything&reuse_cookies=cook=well";
|
|
|
|
|
|
|
|
std::string content;
|
|
|
|
if (request.get("X-WOPI-Override") == std::string("PUT_RELATIVE"))
|
2019-04-30 09:21:44 -05:00
|
|
|
{
|
2020-01-20 10:45:53 -06:00
|
|
|
LOK_ASSERT_EQUAL(std::string("PUT_RELATIVE"), request.get("X-WOPI-Override"));
|
2019-04-30 09:21:44 -05:00
|
|
|
assertPutRelativeFileRequest(request);
|
|
|
|
content = "{ \"Name\":\"hello world%1.pdf\", \"Url\":\"" + wopiURL + "\" }";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// rename file; response should be the file name without the url and the extension
|
2020-01-20 10:45:53 -06:00
|
|
|
LOK_ASSERT_EQUAL(std::string("RENAME_FILE"), request.get("X-WOPI-Override"));
|
2019-04-30 09:21:44 -05:00
|
|
|
assertRenameFileRequest(request);
|
|
|
|
content = "{ \"Name\":\"hello\", \"Url\":\"" + wopiURL + "\" }";
|
|
|
|
}
|
2017-10-20 11:12:05 -05:00
|
|
|
|
2022-02-01 07:33:25 -06:00
|
|
|
http::Response httpResponse(http::StatusLine(200));
|
|
|
|
httpResponse.set("Last-Modified", Util::getHttpTime(_fileLastModifiedTime));
|
|
|
|
httpResponse.setBody(content, "application/json; charset=utf-8");
|
|
|
|
socket->sendAndShutdown(httpResponse);
|
2017-09-26 09:12:58 -05:00
|
|
|
|
2017-09-27 07:13:43 -05:00
|
|
|
return true;
|
|
|
|
}
|
2019-05-15 21:14:29 -05:00
|
|
|
else if (request.getMethod() == "POST" && regContent.match(uriReq.getPath()))
|
2017-09-27 07:13:43 -05:00
|
|
|
{
|
2022-02-10 08:58:52 -06:00
|
|
|
++_countPutFile;
|
|
|
|
LOG_TST("Fake wopi host request, handling PutFile (#" << _countPutFile
|
|
|
|
<< "): " << uriReq.getPath());
|
2017-09-27 07:13:43 -05:00
|
|
|
|
2022-02-10 08:58:52 -06:00
|
|
|
const std::string wopiTimestamp = request.get("X-COOL-WOPI-Timestamp", std::string());
|
2018-02-08 12:51:54 -06:00
|
|
|
if (!wopiTimestamp.empty())
|
|
|
|
{
|
2018-02-08 13:44:18 -06:00
|
|
|
|
2019-09-27 11:56:16 -05:00
|
|
|
const std::string fileModifiedTime = Util::getIso8601FracformatTime(_fileLastModifiedTime);
|
2018-02-08 12:51:54 -06:00
|
|
|
if (wopiTimestamp != fileModifiedTime)
|
|
|
|
{
|
2021-04-29 09:13:55 -05:00
|
|
|
http::Response httpResponse(http::StatusLine(409));
|
|
|
|
httpResponse.setBody(
|
2021-11-18 06:08:14 -06:00
|
|
|
"{\"COOLStatusCode\":" +
|
|
|
|
std::to_string(static_cast<int>(COOLStatusCode::DocChanged)) + '}');
|
2021-04-29 09:13:55 -05:00
|
|
|
socket->sendAndShutdown(httpResponse);
|
2018-02-08 12:51:54 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-29 19:12:22 -06:00
|
|
|
const std::streamsize size = request.getContentLength();
|
|
|
|
std::vector<char> buffer(size);
|
|
|
|
message.read(buffer.data(), size);
|
|
|
|
setFileContent(Util::toString(buffer));
|
2018-02-08 12:51:54 -06:00
|
|
|
|
2021-04-30 18:45:34 -05:00
|
|
|
std::unique_ptr<http::Response> response = assertPutFileRequest(request);
|
|
|
|
if (response)
|
|
|
|
{
|
2021-05-02 11:18:40 -05:00
|
|
|
LOG_TST("Fake wopi host response to POST "
|
2021-05-02 11:23:52 -05:00
|
|
|
<< uriReq.getPath() << ": " << response->statusLine().statusCode() << ' '
|
2021-05-02 11:18:40 -05:00
|
|
|
<< response->statusLine().reasonPhrase());
|
2021-04-30 18:45:34 -05:00
|
|
|
socket->sendAndShutdown(*response);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// By default we return success.
|
2021-05-02 11:18:40 -05:00
|
|
|
const std::string body = "{\"LastModifiedTime\": \"" +
|
|
|
|
Util::getIso8601FracformatTime(_fileLastModifiedTime) +
|
|
|
|
"\" }";
|
2021-11-26 17:09:16 -06:00
|
|
|
LOG_TST("Fake wopi host (default) response to POST " << uriReq.getPath()
|
|
|
|
<< ": 200 OK " << body);
|
2021-04-30 18:45:34 -05:00
|
|
|
http::Response httpResponse(http::StatusLine(200));
|
2022-02-01 07:33:25 -06:00
|
|
|
httpResponse.setBody(body, "application/json; charset=utf-8");
|
2021-04-30 18:45:34 -05:00
|
|
|
socket->sendAndShutdown(httpResponse);
|
|
|
|
}
|
2017-09-27 07:13:43 -05:00
|
|
|
|
2017-09-26 09:12:58 -05:00
|
|
|
return true;
|
|
|
|
}
|
2021-11-15 09:41:58 -06:00
|
|
|
else if (!Util::startsWith(uriReq.getPath(), "/cool/")) // Skip requests to the websrv.
|
2020-12-22 13:00:05 -06:00
|
|
|
{
|
|
|
|
// Complain if we are expected to handle something that we don't.
|
|
|
|
LOG_TST("ERROR: Fake wopi host request, cannot handle request: " << uriReq.getPath());
|
|
|
|
}
|
2017-09-26 09:12:58 -05:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2021-11-29 23:26:56 -06:00
|
|
|
|
2017-09-26 09:12:58 -05:00
|
|
|
};
|
|
|
|
|
2022-02-19 16:36:38 -06:00
|
|
|
/// Send a command message to WSD from a WopiTestServer on the given connection.
|
|
|
|
#define WSD_CMD_BY_CONNECTION_INDEX(INDEX, MSG) \
|
2021-01-09 16:02:34 -06:00
|
|
|
do \
|
|
|
|
{ \
|
2022-02-19 16:36:38 -06:00
|
|
|
LOG_TST("Sending from #" << INDEX << ": " << MSG); \
|
|
|
|
helpers::sendTextFrame(*getWsAt(INDEX)->getCOOLWebSocket(), MSG, getTestname()); \
|
2021-11-26 17:09:16 -06:00
|
|
|
SocketPoll::wakeupWorld(); \
|
2021-01-09 16:02:34 -06:00
|
|
|
} while (false)
|
|
|
|
|
2022-02-19 16:36:38 -06:00
|
|
|
/// Send a command message to WSD from a WopiTestServer on the primary connection.
|
|
|
|
#define WSD_CMD(MSG) WSD_CMD_BY_CONNECTION_INDEX(0, MSG)
|
|
|
|
|
2017-09-26 09:12:58 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|