summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAshod Nakashian <ashod.nakashian@collabora.co.uk>2020-10-06 23:08:13 -0400
committerAndras Timar <andras.timar@collabora.com>2020-10-13 23:45:55 +0200
commit19b90af20b69acb3dbdbe1c7934965be5bf27862 (patch)
tree17bddc6be30d6c368eac93b3f4ca74ca3bdadb95 /test
parentOnline: Hide right clicked sheet. / Online side. (diff)
downloadonline-19b90af20b69acb3dbdbe1c7934965be5bf27862.tar.gz
online-19b90af20b69acb3dbdbe1c7934965be5bf27862.zip
wsd: allow URIs without access_header or access_token
URIs may or may not have authorization data specified via access_header or access_token query parameters. In the event that the host doesn't have such needs (for example authrorization could be performed by some other means), we should accept the request and still go ahead and make the WOPI request all the same. This patch effectively reverts the changes from a019c93d90e08aceb8b645e6cf963e6256fb38c6 which threw an exception when the authorization method was undefined. Since there was an assertion to warn programmers that something is amis, now we simply log the fact in trace mode and move on. A new unit-test is added and another one that expected the now-removed exception has been modified. Change-Id: I26cc2514d7465b344037a6e32b777c0fe0ba9a2c
Diffstat (limited to 'test')
-rw-r--r--test/WhiteBoxTests.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/test/WhiteBoxTests.cpp b/test/WhiteBoxTests.cpp
index dbdb7f582b..05ee88a2ab 100644
--- a/test/WhiteBoxTests.cpp
+++ b/test/WhiteBoxTests.cpp
@@ -751,7 +751,7 @@ void WhiteBoxTests::testAuthorization()
Authorization auth6(Authorization::Type::None, "Authorization: basic huh==");
Poco::Net::HTTPRequest req6;
- CPPUNIT_ASSERT_THROW(auth6.authorizeRequest(req6), BadRequestException);
+ CPPUNIT_ASSERT_NO_THROW(auth6.authorizeRequest(req6));
{
const std::string WorkingDocumentURI
@@ -786,6 +786,19 @@ void WhiteBoxTests::testAuthorization()
LOK_ASSERT_EQUAL(AuthorizationParam, req7.get("Authorization"));
LOK_ASSERT_EQUAL(std::string("XMLHttpRequest"), req7.get("X-Requested-With"));
}
+
+ {
+ const std::string URI
+ = "https://example.com:8443/rest/files/wopi/files/"
+ "8ac75551de4d89e60002?reuse_cookies=lang%3Den-us%3A_xx_%3DGS1.1.%3APublicToken%"
+ "3DeyJzdWIiOiJhZG1pbiIsImV4cCI6MTU4ODkxNzc3NCwiaWF0IjoxNTg4OTE2ODc0LCJqdGkiOiI4OGZhN2"
+ "E3ZC1lMzU5LTQ2OWEtYjg3Zi02NmFhNzI0ZGFkNTcifQ%3AZNPCQ003-32383700%3De9c71c3b%"
+ "3AJSESSIONID%3Dnode019djohorurnaf1eo6f57ejhg0520.node0&permission=edit";
+
+ Authorization auth7(Authorization::create(URI));
+ Poco::Net::HTTPRequest req;
+ auth7.authorizeRequest(req);
+ }
}
void WhiteBoxTests::testJson()