forked from Klomgor/online
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnitWOPITemplate.cpp
162 lines (135 loc) · 5.38 KB
/
UnitWOPITemplate.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* Copyright the Collabora Online contributors.
*
* SPDX-License-Identifier: MPL-2.0
*
* 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/.
*/
#include <config.h>
#include <Poco/Net/HTTPRequest.h>
#include <WopiTestServer.hpp>
#include <Log.hpp>
#include <Unit.hpp>
#include <UnitHTTP.hpp>
#include <helpers.hpp>
#include <net/HttpHelper.hpp>
class UnitWOPITemplate : public WopiTestServer
{
STATE_ENUM(Phase, LoadTemplate, SaveDoc, CloseDoc, Polling) _phase;
bool _savedTemplate;
public:
UnitWOPITemplate()
: WopiTestServer("UnitWOPITemplate")
, _phase(Phase::LoadTemplate)
, _savedTemplate(false)
{
}
virtual bool handleHttpRequest(const Poco::Net::HTTPRequest& request,
Poco::MemoryInputStream& /*message*/,
std::shared_ptr<StreamSocket>& socket) override
{
const Poco::URI uriReq(request.getURI());
LOG_TST("FakeWOPIHost: " << request.getMethod() << " request: " << uriReq.toString());
// CheckFileInfo
if (request.getMethod() == "GET" && uriReq.getPath() == "/wopi/files/10")
{
LOG_TST("FakeWOPIHost: Handling CheckFileInfo: " << uriReq.getPath());
Poco::JSON::Object::Ptr fileInfo = getDefaultCheckFileInfoPayload(uriReq);
fileInfo->set("BaseFileName", "test.odt");
fileInfo->set("TemplateSource", helpers::getTestServerURI() + "/test.ott");
std::ostringstream jsonStream;
fileInfo->stringify(jsonStream);
http::Response httpResponse(http::StatusCode::OK);
httpResponse.set("Last-Modified", Util::getHttpTime(getFileLastModifiedTime()));
httpResponse.setBody(jsonStream.str(), "application/json; charset=utf-8");
socket->sendAndShutdown(httpResponse);
return true;
}
else if ((request.getMethod() == "OPTIONS" || request.getMethod() == "HEAD"
|| request.getMethod() == "PROPFIND")
&& uriReq.getPath() == "/test.ott")
{
LOG_TST("FakeWOPIHost: Handling " << request.getMethod() << " on " << uriReq.getPath());
http::Response httpResponse(http::StatusCode::OK);
httpResponse.set("Allow", "GET");
socket->sendAndShutdown(httpResponse);
return true;
}
// Get the template
else if (request.getMethod() == "GET" && uriReq.getPath() == "/test.ott")
{
LOG_TST("FakeWOPIHost: Handling template GetFile: " << uriReq.getPath());
http::Response response(http::StatusCode::OK);
HttpHelper::sendFileAndShutdown(socket, TDOC "/test.ott", response);
return true;
}
// Save template
else if (request.getMethod() == "POST" && uriReq.getPath() == "/wopi/files/10/contents")
{
LOG_TST("FakeWOPIHost: Handling PutFile: " << uriReq.getPath());
if (!_savedTemplate)
{
// First, we expect to get a PutFile right after loading.
LOK_ASSERT_EQUAL(static_cast<int>(Phase::SaveDoc), static_cast<int>(_phase));
_savedTemplate = true;
LOG_TST("SaveDoc => CloseDoc");
TRANSITION_STATE(_phase, Phase::CloseDoc);
}
else
{
// This is the save at shutting down.
LOK_ASSERT_EQUAL(static_cast<int>(Phase::Polling), static_cast<int>(_phase));
exitTest(TestResult::Ok);
}
const std::streamsize size = request.getContentLength();
LOK_ASSERT( size > 0 );
const std::string body = "{\"LastModifiedTime\": \"" +
Util::getIso8601FracformatTime(getFileLastModifiedTime()) + "\" }";
http::Response httpResponse(http::StatusCode::OK);
httpResponse.setBody(body, "application/json; charset=utf-8");
socket->sendAndShutdown(httpResponse);
return true;
}
LOG_TST("FakeWOPIHost: unknown request "
<< request.getMethod() << " request: " << uriReq.toString() << ". Defaulting.");
return false;
}
void invokeWSDTest() override
{
switch (_phase)
{
case Phase::LoadTemplate:
{
LOG_TST("LoadTemplate => SaveDoc");
TRANSITION_STATE(_phase, Phase::SaveDoc);
initWebsocket("/wopi/files/10?access_token=anything");
WSD_CMD("load url=" + getWopiSrc());
break;
}
case Phase::CloseDoc:
{
LOG_TST("CloseDoc => Polling");
TRANSITION_STATE(_phase, Phase::Polling);
WSD_CMD("closedocument");
break;
}
case Phase::Polling:
{
exitTest(TestResult::Ok);
break;
}
case Phase::SaveDoc:
{
break;
}
}
}
};
UnitBase *unit_create_wsd(void)
{
return new UnitWOPITemplate();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */