clienttest.cpp 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  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]() {
  82. result = reply->read<SimpleStringMessage>();
  83. waiter.quit();
  84. });
  85. waiter.exec();
  86. ASSERT_STREQ(result.testFieldString().toStdString().c_str(), "Hello beach!");
  87. }
  88. TEST_F(ClientTest, StringEchoAsync2Test)
  89. {
  90. TestServiceClient testClient;
  91. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  92. SimpleStringMessage result;
  93. SimpleStringMessage request;
  94. request.setTestFieldString("Hello beach!");
  95. QEventLoop waiter;
  96. testClient.testMethod(request, &m_app, [&result, &waiter](AsyncReply *reply) {
  97. result = reply->read<SimpleStringMessage>();
  98. waiter.quit();
  99. });
  100. waiter.exec();
  101. ASSERT_STREQ(result.testFieldString().toStdString().c_str(), "Hello beach!");
  102. }
  103. TEST_F(ClientTest, StringEchoImmediateAsyncAbortTest)
  104. {
  105. TestServiceClient testClient;
  106. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  107. SimpleStringMessage result;
  108. SimpleStringMessage request;
  109. request.setTestFieldString("sleep");
  110. QEventLoop waiter;
  111. AsyncReply *reply = testClient.testMethod(request);
  112. result.setTestFieldString("Result not changed by echo");
  113. QObject::connect(reply, &AsyncReply::finished, &m_app, [&waiter, &result, reply]() {
  114. result = reply->read<SimpleStringMessage>();
  115. waiter.quit();
  116. });
  117. AbstractChannel::StatusCode asyncStatus = AbstractChannel::StatusCode::Ok;
  118. QObject::connect(reply, &AsyncReply::error, reply, [&asyncStatus](AbstractChannel::StatusCode code){
  119. asyncStatus = code;
  120. });
  121. AbstractChannel::StatusCode clientStatus = AbstractChannel::StatusCode::Ok;
  122. QObject::connect(&testClient, &TestServiceClient::error, reply, [&clientStatus](AbstractChannel::StatusCode code, QString errMsg){
  123. clientStatus = code;
  124. std::cerr << code << ":" << errMsg.toStdString();
  125. });
  126. QTimer::singleShot(5000, &waiter, &QEventLoop::quit);
  127. reply->abort();
  128. waiter.exec();
  129. ASSERT_EQ(clientStatus, AbstractChannel::StatusCode::Aborted);
  130. ASSERT_EQ(asyncStatus, AbstractChannel::StatusCode::Aborted);
  131. ASSERT_STREQ(result.testFieldString().toStdString().c_str(), "Result not changed by echo");
  132. }
  133. TEST_F(ClientTest, StringEchoDeferredAsyncAbortTest)
  134. {
  135. TestServiceClient testClient;
  136. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  137. SimpleStringMessage result;
  138. SimpleStringMessage request;
  139. request.setTestFieldString("sleep");
  140. QEventLoop waiter;
  141. AsyncReply *reply = testClient.testMethod(request);
  142. result.setTestFieldString("Result not changed by echo");
  143. bool errorCalled = false;
  144. reply = testClient.testMethod(request);
  145. QObject::connect(reply, &AsyncReply::finished, &m_app, [reply, &result, &waiter]() {
  146. result = reply->read<SimpleStringMessage>();
  147. waiter.quit();
  148. });
  149. QObject::connect(reply, &AsyncReply::error, reply, [&errorCalled](AbstractChannel::StatusCode){
  150. errorCalled = true;
  151. });
  152. QTimer::singleShot(2000, reply, &AsyncReply::abort);
  153. QTimer::singleShot(5000, &waiter, &QEventLoop::quit);
  154. waiter.exec();
  155. ASSERT_STREQ(result.testFieldString().toStdString().c_str(), "Result not changed by echo");
  156. ASSERT_TRUE(errorCalled);
  157. }
  158. TEST_F(ClientTest, StringEchoStreamTest)
  159. {
  160. TestServiceClient testClient;
  161. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  162. SimpleStringMessage result;
  163. SimpleStringMessage request;
  164. request.setTestFieldString("Stream");
  165. QEventLoop waiter;
  166. int i = 0;
  167. QObject::connect(&testClient, &TestServiceClient::testMethodServerStreamUpdated, &m_app, [&result, &i, &waiter](const SimpleStringMessage &ret) {
  168. ++i;
  169. result.setTestFieldString(result.testFieldString() + ret.testFieldString());
  170. if (i == 4) {
  171. waiter.quit();
  172. }
  173. });
  174. testClient.subscribeTestMethodServerStreamUpdates(request);
  175. QTimer::singleShot(20000, &waiter, &QEventLoop::quit);
  176. waiter.exec();
  177. ASSERT_EQ(i, 4);
  178. ASSERT_STREQ(result.testFieldString().toStdString().c_str(), "Stream1Stream2Stream3Stream4");
  179. }
  180. TEST_F(ClientTest, StringEchoStreamTestRetUpdates)
  181. {
  182. TestServiceClient testClient;
  183. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  184. SimpleStringMessage request;
  185. QPointer<SimpleStringMessage> result(new SimpleStringMessage);
  186. request.setTestFieldString("Stream");
  187. QEventLoop waiter;
  188. testClient.subscribeTestMethodServerStreamUpdates(request, result);
  189. int i = 0;
  190. QObject::connect(result.data(), &SimpleStringMessage::testFieldStringChanged, &m_app, [&i]() {
  191. i++;
  192. });
  193. QTimer::singleShot(20000, &waiter, &QEventLoop::quit);
  194. waiter.exec();
  195. ASSERT_EQ(i, 4);
  196. ASSERT_STREQ(result->testFieldString().toStdString().c_str(), "Stream4");
  197. }
  198. TEST_F(ClientTest, HugeBlobEchoStreamTest)
  199. {
  200. TestServiceClient testClient;
  201. testClient.attachChannel(std::make_shared<Http2Channel>(m_echoServerAddress, InsecureCredentials()));
  202. BlobMessage result;
  203. BlobMessage request;
  204. QFile testFile("testfile");
  205. ASSERT_TRUE(testFile.open(QFile::ReadOnly));
  206. request.setTestBytes(testFile.readAll());
  207. QByteArray dataHash = QCryptographicHash::hash(request.testBytes(), QCryptographicHash::Sha256);
  208. QEventLoop waiter;
  209. QObject::connect(&testClient, &TestServiceClient::testMethodBlobServerStreamUpdated, &m_app, [&result, &waiter](const BlobMessage &ret) {
  210. result.setTestBytes(ret.testBytes());
  211. waiter.quit();
  212. });
  213. testClient.subscribeTestMethodBlobServerStreamUpdates(request);
  214. QTimer::singleShot(20000, &waiter, &QEventLoop::quit);
  215. waiter.exec();
  216. QByteArray returnDataHash = QCryptographicHash::hash(result.testBytes(), QCryptographicHash::Sha256);
  217. ASSERT_TRUE(returnDataHash == dataHash);
  218. }