clienttest.cpp 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. /*
  2. * MIT License
  3. *
  4. * Copyright (c) 2019 Alexey Edelev <semlanik@gmail.com>
  5. *
  6. * This file is part of qtprotobuf project https://git.semlanik.org/semlanik/qtprotobuf
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy of this
  9. * software and associated documentation files (the "Software"), to deal in the Software
  10. * without restriction, including without limitation the rights to use, copy, modify,
  11. * merge, publish, distribute, sublicense, and/or sell copies of the Software, and
  12. * to permit persons to whom the Software is furnished to do so, subject to the following
  13. * conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in all copies
  16. * or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  19. * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  20. * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
  21. * FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  22. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  23. * DEALINGS IN THE SOFTWARE.
  24. */
  25. #include "testserviceclient.h"
  26. #include "http2channel.h"
  27. #include "insecurecredentials.h"
  28. #include "blobmessage.h"
  29. #include <sslcredentials.h>
  30. #include <QTimer>
  31. #include <QFile>
  32. #include <QCryptographicHash>
  33. #include <QSslConfiguration>
  34. #include <QCoreApplication>
  35. #include <gtest/gtest.h>
  36. using namespace qtprotobufnamespace::tests;
  37. using namespace qtprotobuf;
  38. class ClientTest : public ::testing::Test
  39. {
  40. protected:
  41. static void SetUpTestCase() {
  42. }
  43. static QCoreApplication m_app;
  44. static int m_argc;
  45. static QUrl m_echoServerAddress;
  46. };
  47. int ClientTest::m_argc(0);
  48. QCoreApplication ClientTest::m_app(m_argc, nullptr);
  49. QUrl ClientTest::m_echoServerAddress("http://localhost:50051", QUrl::StrictMode);
  50. TEST_F(ClientTest, CheckMethodsGeneration)
  51. {
  52. //Dummy compile time check of functions generation and interface compatibility
  53. TestServiceClient testClient;
  54. SimpleStringMessage request;
  55. QPointer<SimpleStringMessage> result(new SimpleStringMessage);
  56. testClient.testMethod(request, result);
  57. testClient.testMethod(request);
  58. testClient.testMethod(request, &testClient, [](AsyncReply *){});
  59. delete result;
  60. }
  61. TEST_F(ClientTest, StringEchoTest)
  62. {
  63. TestServiceClient testClient;
  64. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  65. SimpleStringMessage request;
  66. QPointer<SimpleStringMessage> result(new SimpleStringMessage);
  67. request.setTestFieldString("Hello beach!");
  68. ASSERT_TRUE(testClient.testMethod(request, result));
  69. ASSERT_STREQ(result->testFieldString().toStdString().c_str(), "Hello beach!");
  70. delete result;
  71. }
  72. TEST_F(ClientTest, StringEchoAsyncTest)
  73. {
  74. TestServiceClient testClient;
  75. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  76. SimpleStringMessage request;
  77. SimpleStringMessage result;
  78. request.setTestFieldString("Hello beach!");
  79. QEventLoop waiter;
  80. AsyncReply *reply = testClient.testMethod(request);
  81. QObject::connect(reply, &AsyncReply::finished, &m_app, [reply, &result, &waiter, &testClient]() {
  82. if (testClient.lastError() == AbstractChannel::StatusCode::Ok) {
  83. result = reply->read<SimpleStringMessage>();
  84. }
  85. waiter.quit();
  86. });
  87. waiter.exec();
  88. ASSERT_STREQ(result.testFieldString().toStdString().c_str(), "Hello beach!");
  89. }
  90. TEST_F(ClientTest, StringEchoAsync2Test)
  91. {
  92. TestServiceClient testClient;
  93. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  94. SimpleStringMessage result;
  95. SimpleStringMessage request;
  96. request.setTestFieldString("Hello beach!");
  97. QEventLoop waiter;
  98. testClient.testMethod(request, &m_app, [&result, &waiter, &testClient](AsyncReply *reply) {
  99. if (testClient.lastError() == AbstractChannel::StatusCode::Ok) {
  100. result = reply->read<SimpleStringMessage>();
  101. }
  102. waiter.quit();
  103. });
  104. waiter.exec();
  105. ASSERT_STREQ(result.testFieldString().toStdString().c_str(), "Hello beach!");
  106. }
  107. TEST_F(ClientTest, StringEchoAsyncAbortTest)
  108. {
  109. TestServiceClient testClient;
  110. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  111. SimpleStringMessage result;
  112. SimpleStringMessage request;
  113. request.setTestFieldString("sleep");
  114. QEventLoop waiter;
  115. AsyncReply *reply = testClient.testMethod(request);
  116. result.setTestFieldString("Result not changed by echo");
  117. QObject::connect(reply, &AsyncReply::finished, &m_app, [&waiter]() {
  118. waiter.quit();
  119. });
  120. AbstractChannel::StatusCode asyncStatus = AbstractChannel::StatusCode::Ok;
  121. QObject::connect(reply, &AsyncReply::error, reply, [&asyncStatus](AbstractChannel::StatusCode code){
  122. asyncStatus = code;
  123. });
  124. QTimer::singleShot(5000, &waiter, &QEventLoop::quit);
  125. reply->abort();
  126. waiter.exec();
  127. ASSERT_EQ(testClient.lastError(), AbstractChannel::StatusCode::Aborted);
  128. ASSERT_EQ(asyncStatus, AbstractChannel::StatusCode::Aborted);
  129. ASSERT_STREQ(result.testFieldString().toStdString().c_str(), "Result not changed by echo");
  130. // What we check here?
  131. bool errorCalled = false;
  132. reply = testClient.testMethod(request);
  133. QObject::connect(reply, &AsyncReply::finished, &m_app, [reply, &result, &waiter, &testClient]() {
  134. if (testClient.lastError() == AbstractChannel::StatusCode::Ok) {
  135. result = reply->read<SimpleStringMessage>();
  136. }
  137. waiter.quit();
  138. });
  139. QObject::connect(reply, &AsyncReply::error, reply, [&errorCalled](AbstractChannel::StatusCode){
  140. errorCalled = true;
  141. });
  142. QTimer::singleShot(2000, reply, &AsyncReply::abort);
  143. QTimer::singleShot(5000, &waiter, &QEventLoop::quit);
  144. waiter.exec();
  145. ASSERT_STREQ(result.testFieldString().toStdString().c_str(), "Result not changed by echo");
  146. ASSERT_EQ(testClient.lastError(), AbstractChannel::StatusCode::Aborted);
  147. ASSERT_TRUE(errorCalled);
  148. }
  149. TEST_F(ClientTest, StringEchoStreamTest)
  150. {
  151. TestServiceClient testClient;
  152. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  153. SimpleStringMessage result;
  154. SimpleStringMessage request;
  155. request.setTestFieldString("Stream");
  156. QEventLoop waiter;
  157. int i = 0;
  158. QObject::connect(&testClient, &TestServiceClient::testMethodServerStreamUpdated, &m_app, [&result, &i, &waiter](const SimpleStringMessage &ret) {
  159. ++i;
  160. result.setTestFieldString(result.testFieldString() + ret.testFieldString());
  161. if (i == 4) {
  162. waiter.quit();
  163. }
  164. });
  165. testClient.subscribeTestMethodServerStreamUpdates(request);
  166. QTimer::singleShot(20000, &waiter, &QEventLoop::quit);
  167. waiter.exec();
  168. ASSERT_EQ(i, 4);
  169. ASSERT_STREQ(result.testFieldString().toStdString().c_str(), "Stream1Stream2Stream3Stream4");
  170. ASSERT_EQ(testClient.lastError(), AbstractChannel::StatusCode::Ok);
  171. }
  172. TEST_F(ClientTest, StringEchoStreamTestRetUpdates)
  173. {
  174. TestServiceClient testClient;
  175. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  176. SimpleStringMessage request;
  177. QPointer<SimpleStringMessage> result(new SimpleStringMessage);
  178. request.setTestFieldString("Stream");
  179. QEventLoop waiter;
  180. testClient.subscribeTestMethodServerStreamUpdates(request, result);
  181. int i = 0;
  182. QObject::connect(result.data(), &SimpleStringMessage::testFieldStringChanged, &m_app, [&i]() {
  183. i++;
  184. });
  185. QTimer::singleShot(20000, &waiter, &QEventLoop::quit);
  186. waiter.exec();
  187. ASSERT_EQ(i, 4);
  188. ASSERT_STREQ(result->testFieldString().toStdString().c_str(), "Stream4");
  189. ASSERT_EQ(testClient.lastError(), AbstractChannel::StatusCode::Ok);
  190. }
  191. TEST_F(ClientTest, HugeBlobEchoStreamTest)
  192. {
  193. TestServiceClient testClient;
  194. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  195. BlobMessage result;
  196. BlobMessage request;
  197. QFile testFile("testfile");
  198. ASSERT_TRUE(testFile.open(QFile::ReadOnly));
  199. request.setTestBytes(testFile.readAll());
  200. QByteArray dataHash = QCryptographicHash::hash(request.testBytes(), QCryptographicHash::Sha256);
  201. QEventLoop waiter;
  202. QObject::connect(&testClient, &TestServiceClient::testMethodBlobServerStreamUpdated, &m_app, [&result, &waiter](const BlobMessage &ret) {
  203. result.setTestBytes(ret.testBytes());
  204. waiter.quit();
  205. });
  206. testClient.subscribeTestMethodBlobServerStreamUpdates(request);
  207. QTimer::singleShot(20000, &waiter, &QEventLoop::quit);
  208. waiter.exec();
  209. QByteArray returnDataHash = QCryptographicHash::hash(result.testBytes(), QCryptographicHash::Sha256);
  210. ASSERT_TRUE(returnDataHash == dataHash);
  211. ASSERT_EQ(testClient.lastError(), AbstractChannel::StatusCode::Ok);
  212. }