XCTestManifests.swift 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. #if !canImport(ObjectiveC)
  2. import XCTest
  3. extension AnyServiceClientTests {
  4. // DO NOT MODIFY: This is autogenerated, use:
  5. // `swift test --generate-linuxmain`
  6. // to regenerate.
  7. static let __allTests__AnyServiceClientTests = [
  8. ("testBidirectionalStreaming", testBidirectionalStreaming),
  9. ("testClientStreaming", testClientStreaming),
  10. ("testServerStreaming", testServerStreaming),
  11. ("testUnary", testUnary),
  12. ]
  13. }
  14. extension ClientCancellingTests {
  15. // DO NOT MODIFY: This is autogenerated, use:
  16. // `swift test --generate-linuxmain`
  17. // to regenerate.
  18. static let __allTests__ClientCancellingTests = [
  19. ("testBidirectionalStreaming", testBidirectionalStreaming),
  20. ("testClientStreaming", testClientStreaming),
  21. ("testServerStreaming", testServerStreaming),
  22. ("testUnary", testUnary),
  23. ]
  24. }
  25. extension ClientClosedChannelTests {
  26. // DO NOT MODIFY: This is autogenerated, use:
  27. // `swift test --generate-linuxmain`
  28. // to regenerate.
  29. static let __allTests__ClientClosedChannelTests = [
  30. ("testBidirectionalStreamingOnClosedConnection", testBidirectionalStreamingOnClosedConnection),
  31. ("testBidirectionalStreamingWhenConnectionIsClosedBetweenMessages", testBidirectionalStreamingWhenConnectionIsClosedBetweenMessages),
  32. ("testBidirectionalStreamingWithNoPromiseWhenConnectionIsClosedBetweenMessages", testBidirectionalStreamingWithNoPromiseWhenConnectionIsClosedBetweenMessages),
  33. ("testClientStreamingOnClosedConnection", testClientStreamingOnClosedConnection),
  34. ("testClientStreamingWhenConnectionIsClosedBetweenMessages", testClientStreamingWhenConnectionIsClosedBetweenMessages),
  35. ("testServerStreamingOnClosedConnection", testServerStreamingOnClosedConnection),
  36. ("testUnaryOnClosedConnection", testUnaryOnClosedConnection),
  37. ]
  38. }
  39. extension ClientConnectionBackoffTests {
  40. // DO NOT MODIFY: This is autogenerated, use:
  41. // `swift test --generate-linuxmain`
  42. // to regenerate.
  43. static let __allTests__ClientConnectionBackoffTests = [
  44. ("testClientConnectionFailsWithNoBackoff", testClientConnectionFailsWithNoBackoff),
  45. ("testClientEventuallyConnects", testClientEventuallyConnects),
  46. ("testClientReconnectsAutomatically", testClientReconnectsAutomatically),
  47. ]
  48. }
  49. extension ClientTLSFailureTests {
  50. // DO NOT MODIFY: This is autogenerated, use:
  51. // `swift test --generate-linuxmain`
  52. // to regenerate.
  53. static let __allTests__ClientTLSFailureTests = [
  54. ("testClientConnectionFailsWhenHostnameIsNotValid", testClientConnectionFailsWhenHostnameIsNotValid),
  55. ("testClientConnectionFailsWhenProtocolCanNotBeNegotiated", testClientConnectionFailsWhenProtocolCanNotBeNegotiated),
  56. ("testClientConnectionFailsWhenServerIsUnknown", testClientConnectionFailsWhenServerIsUnknown),
  57. ]
  58. }
  59. extension ClientTLSHostnameOverrideTests {
  60. // DO NOT MODIFY: This is autogenerated, use:
  61. // `swift test --generate-linuxmain`
  62. // to regenerate.
  63. static let __allTests__ClientTLSHostnameOverrideTests = [
  64. ("testTLSWithHostnameOverride", testTLSWithHostnameOverride),
  65. ("testTLSWithoutHostnameOverride", testTLSWithoutHostnameOverride),
  66. ]
  67. }
  68. extension ClientThrowingWhenServerReturningErrorTests {
  69. // DO NOT MODIFY: This is autogenerated, use:
  70. // `swift test --generate-linuxmain`
  71. // to regenerate.
  72. static let __allTests__ClientThrowingWhenServerReturningErrorTests = [
  73. ("testBidirectionalStreaming", testBidirectionalStreaming),
  74. ("testClientStreaming", testClientStreaming),
  75. ("testServerStreaming", testServerStreaming),
  76. ("testUnary", testUnary),
  77. ]
  78. }
  79. extension ClientTimeoutTests {
  80. // DO NOT MODIFY: This is autogenerated, use:
  81. // `swift test --generate-linuxmain`
  82. // to regenerate.
  83. static let __allTests__ClientTimeoutTests = [
  84. ("testBidirectionalStreamingTimeoutAfterSending", testBidirectionalStreamingTimeoutAfterSending),
  85. ("testBidirectionalStreamingTimeoutBeforeSending", testBidirectionalStreamingTimeoutBeforeSending),
  86. ("testClientStreamingTimeoutAfterSending", testClientStreamingTimeoutAfterSending),
  87. ("testClientStreamingTimeoutBeforeSending", testClientStreamingTimeoutBeforeSending),
  88. ("testServerStreamingTimeoutAfterSending", testServerStreamingTimeoutAfterSending),
  89. ("testUnaryTimeoutAfterSending", testUnaryTimeoutAfterSending),
  90. ]
  91. }
  92. extension ConnectionBackoffTests {
  93. // DO NOT MODIFY: This is autogenerated, use:
  94. // `swift test --generate-linuxmain`
  95. // to regenerate.
  96. static let __allTests__ConnectionBackoffTests = [
  97. ("testBackoffDoesNotExceedMaximum", testBackoffDoesNotExceedMaximum),
  98. ("testBackoffWithJitter", testBackoffWithJitter),
  99. ("testBackoffWithNoJitter", testBackoffWithNoJitter),
  100. ("testConnectionTimeoutAlwaysGreatherThanOrEqualToMinimum", testConnectionTimeoutAlwaysGreatherThanOrEqualToMinimum),
  101. ("testExpectedValuesWithNoJitter", testExpectedValuesWithNoJitter),
  102. ]
  103. }
  104. extension ConnectivityStateMonitorTests {
  105. // DO NOT MODIFY: This is autogenerated, use:
  106. // `swift test --generate-linuxmain`
  107. // to regenerate.
  108. static let __allTests__ConnectivityStateMonitorTests = [
  109. ("testDelegateOnlyCalledForChanges", testDelegateOnlyCalledForChanges),
  110. ]
  111. }
  112. extension FunctionalTestsAnonymousClient {
  113. // DO NOT MODIFY: This is autogenerated, use:
  114. // `swift test --generate-linuxmain`
  115. // to regenerate.
  116. static let __allTests__FunctionalTestsAnonymousClient = [
  117. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  118. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  119. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  120. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  121. ("testClientStreaming", testClientStreaming),
  122. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  123. ("testServerStreaming", testServerStreaming),
  124. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  125. ("testUnary", testUnary),
  126. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  127. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  128. ("testUnaryWithLargeData", testUnaryWithLargeData),
  129. ]
  130. }
  131. extension FunctionalTestsAnonymousClientNIOTS {
  132. // DO NOT MODIFY: This is autogenerated, use:
  133. // `swift test --generate-linuxmain`
  134. // to regenerate.
  135. static let __allTests__FunctionalTestsAnonymousClientNIOTS = [
  136. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  137. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  138. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  139. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  140. ("testClientStreaming", testClientStreaming),
  141. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  142. ("testServerStreaming", testServerStreaming),
  143. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  144. ("testUnary", testUnary),
  145. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  146. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  147. ("testUnaryWithLargeData", testUnaryWithLargeData),
  148. ]
  149. }
  150. extension FunctionalTestsInsecureTransport {
  151. // DO NOT MODIFY: This is autogenerated, use:
  152. // `swift test --generate-linuxmain`
  153. // to regenerate.
  154. static let __allTests__FunctionalTestsInsecureTransport = [
  155. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  156. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  157. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  158. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  159. ("testClientStreaming", testClientStreaming),
  160. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  161. ("testServerStreaming", testServerStreaming),
  162. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  163. ("testUnary", testUnary),
  164. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  165. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  166. ("testUnaryWithLargeData", testUnaryWithLargeData),
  167. ]
  168. }
  169. extension FunctionalTestsInsecureTransportNIOTS {
  170. // DO NOT MODIFY: This is autogenerated, use:
  171. // `swift test --generate-linuxmain`
  172. // to regenerate.
  173. static let __allTests__FunctionalTestsInsecureTransportNIOTS = [
  174. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  175. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  176. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  177. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  178. ("testClientStreaming", testClientStreaming),
  179. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  180. ("testServerStreaming", testServerStreaming),
  181. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  182. ("testUnary", testUnary),
  183. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  184. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  185. ("testUnaryWithLargeData", testUnaryWithLargeData),
  186. ]
  187. }
  188. extension FunctionalTestsMutualAuthentication {
  189. // DO NOT MODIFY: This is autogenerated, use:
  190. // `swift test --generate-linuxmain`
  191. // to regenerate.
  192. static let __allTests__FunctionalTestsMutualAuthentication = [
  193. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  194. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  195. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  196. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  197. ("testClientStreaming", testClientStreaming),
  198. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  199. ("testServerStreaming", testServerStreaming),
  200. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  201. ("testUnary", testUnary),
  202. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  203. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  204. ("testUnaryWithLargeData", testUnaryWithLargeData),
  205. ]
  206. }
  207. extension FunctionalTestsMutualAuthenticationNIOTS {
  208. // DO NOT MODIFY: This is autogenerated, use:
  209. // `swift test --generate-linuxmain`
  210. // to regenerate.
  211. static let __allTests__FunctionalTestsMutualAuthenticationNIOTS = [
  212. ("testBidirectionalStreamingBatched", testBidirectionalStreamingBatched),
  213. ("testBidirectionalStreamingLotsOfMessagesBatched", testBidirectionalStreamingLotsOfMessagesBatched),
  214. ("testBidirectionalStreamingLotsOfMessagesPingPong", testBidirectionalStreamingLotsOfMessagesPingPong),
  215. ("testBidirectionalStreamingPingPong", testBidirectionalStreamingPingPong),
  216. ("testClientStreaming", testClientStreaming),
  217. ("testClientStreamingLotsOfMessages", testClientStreamingLotsOfMessages),
  218. ("testServerStreaming", testServerStreaming),
  219. ("testServerStreamingLotsOfMessages", testServerStreamingLotsOfMessages),
  220. ("testUnary", testUnary),
  221. ("testUnaryEmptyRequest", testUnaryEmptyRequest),
  222. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  223. ("testUnaryWithLargeData", testUnaryWithLargeData),
  224. ]
  225. }
  226. extension GRPCChannelHandlerTests {
  227. // DO NOT MODIFY: This is autogenerated, use:
  228. // `swift test --generate-linuxmain`
  229. // to regenerate.
  230. static let __allTests__GRPCChannelHandlerTests = [
  231. ("testImplementedMethodReturnsHeadersMessageAndStatus", testImplementedMethodReturnsHeadersMessageAndStatus),
  232. ("testImplementedMethodReturnsStatusForBadlyFormedProto", testImplementedMethodReturnsStatusForBadlyFormedProto),
  233. ("testUnimplementedMethodReturnsUnimplementedStatus", testUnimplementedMethodReturnsUnimplementedStatus),
  234. ]
  235. }
  236. extension GRPCInsecureInteroperabilityTests {
  237. // DO NOT MODIFY: This is autogenerated, use:
  238. // `swift test --generate-linuxmain`
  239. // to regenerate.
  240. static let __allTests__GRPCInsecureInteroperabilityTests = [
  241. ("testCacheableUnary", testCacheableUnary),
  242. ("testCancelAfterBegin", testCancelAfterBegin),
  243. ("testCancelAfterFirstResponse", testCancelAfterFirstResponse),
  244. ("testClientStreaming", testClientStreaming),
  245. ("testCustomMetadata", testCustomMetadata),
  246. ("testEmptyStream", testEmptyStream),
  247. ("testEmptyUnary", testEmptyUnary),
  248. ("testLargeUnary", testLargeUnary),
  249. ("testPingPong", testPingPong),
  250. ("testServerStreaming", testServerStreaming),
  251. ("testSpecialStatusAndMessage", testSpecialStatusAndMessage),
  252. ("testStatusCodeAndMessage", testStatusCodeAndMessage),
  253. ("testTimeoutOnSleepingServer", testTimeoutOnSleepingServer),
  254. ("testUnimplementedMethod", testUnimplementedMethod),
  255. ("testUnimplementedService", testUnimplementedService),
  256. ]
  257. }
  258. extension GRPCSecureInteroperabilityTests {
  259. // DO NOT MODIFY: This is autogenerated, use:
  260. // `swift test --generate-linuxmain`
  261. // to regenerate.
  262. static let __allTests__GRPCSecureInteroperabilityTests = [
  263. ("testCacheableUnary", testCacheableUnary),
  264. ("testCancelAfterBegin", testCancelAfterBegin),
  265. ("testCancelAfterFirstResponse", testCancelAfterFirstResponse),
  266. ("testClientStreaming", testClientStreaming),
  267. ("testCustomMetadata", testCustomMetadata),
  268. ("testEmptyStream", testEmptyStream),
  269. ("testEmptyUnary", testEmptyUnary),
  270. ("testLargeUnary", testLargeUnary),
  271. ("testPingPong", testPingPong),
  272. ("testServerStreaming", testServerStreaming),
  273. ("testSpecialStatusAndMessage", testSpecialStatusAndMessage),
  274. ("testStatusCodeAndMessage", testStatusCodeAndMessage),
  275. ("testTimeoutOnSleepingServer", testTimeoutOnSleepingServer),
  276. ("testUnimplementedMethod", testUnimplementedMethod),
  277. ("testUnimplementedService", testUnimplementedService),
  278. ]
  279. }
  280. extension GRPCStatusCodeTests {
  281. // DO NOT MODIFY: This is autogenerated, use:
  282. // `swift test --generate-linuxmain`
  283. // to regenerate.
  284. static let __allTests__GRPCStatusCodeTests = [
  285. ("testBadGateway", testBadGateway),
  286. ("testBadRequest", testBadRequest),
  287. ("testForbidden", testForbidden),
  288. ("testGatewayTimeout", testGatewayTimeout),
  289. ("testNotFound", testNotFound),
  290. ("testServiceUnavailable", testServiceUnavailable),
  291. ("testStatusCodeAndMessageAreRespectedForNon200Responses", testStatusCodeAndMessageAreRespectedForNon200Responses),
  292. ("testTooManyRequests", testTooManyRequests),
  293. ("testUnauthorized", testUnauthorized),
  294. ]
  295. }
  296. extension GRPCStatusMessageMarshallerTests {
  297. // DO NOT MODIFY: This is autogenerated, use:
  298. // `swift test --generate-linuxmain`
  299. // to regenerate.
  300. static let __allTests__GRPCStatusMessageMarshallerTests = [
  301. ("testASCIIMarshallingAndUnmarshalling", testASCIIMarshallingAndUnmarshalling),
  302. ("testPercentMarshallingAndUnmarshalling", testPercentMarshallingAndUnmarshalling),
  303. ("testUnicodeMarshalling", testUnicodeMarshalling),
  304. ]
  305. }
  306. extension GRPCTimeoutTests {
  307. // DO NOT MODIFY: This is autogenerated, use:
  308. // `swift test --generate-linuxmain`
  309. // to regenerate.
  310. static let __allTests__GRPCTimeoutTests = [
  311. ("testNegativeTimeoutThrows", testNegativeTimeoutThrows),
  312. ("testRoundingHoursTimeout", testRoundingHoursTimeout),
  313. ("testRoundingMicrosecondsTimeout", testRoundingMicrosecondsTimeout),
  314. ("testRoundingMillisecondsTimeout", testRoundingMillisecondsTimeout),
  315. ("testRoundingMinutesTimeout", testRoundingMinutesTimeout),
  316. ("testRoundingNanosecondsTimeout", testRoundingNanosecondsTimeout),
  317. ("testRoundingNegativeTimeout", testRoundingNegativeTimeout),
  318. ("testRoundingSecondsTimeout", testRoundingSecondsTimeout),
  319. ("testTooLargeTimeout", testTooLargeTimeout),
  320. ]
  321. }
  322. extension GRPCTypeSizeTests {
  323. // DO NOT MODIFY: This is autogenerated, use:
  324. // `swift test --generate-linuxmain`
  325. // to regenerate.
  326. static let __allTests__GRPCTypeSizeTests = [
  327. ("testGRPCClientRequestPart", testGRPCClientRequestPart),
  328. ("testGRPCClientResponsePart", testGRPCClientResponsePart),
  329. ("testGRPCStatus", testGRPCStatus),
  330. ("testRawGRPCClientRequestPart", testRawGRPCClientRequestPart),
  331. ("testRawGRPCClientResponsePart", testRawGRPCClientResponsePart),
  332. ]
  333. }
  334. extension HTTP1ToRawGRPCServerCodecTests {
  335. // DO NOT MODIFY: This is autogenerated, use:
  336. // `swift test --generate-linuxmain`
  337. // to regenerate.
  338. static let __allTests__HTTP1ToRawGRPCServerCodecTests = [
  339. ("testInternalErrorStatusIsReturnedIfMessageCannotBeDeserialized", testInternalErrorStatusIsReturnedIfMessageCannotBeDeserialized),
  340. ("testInternalErrorStatusIsReturnedWhenSendingTrailersInRequest", testInternalErrorStatusIsReturnedWhenSendingTrailersInRequest),
  341. ("testInternalErrorStatusReturnedWhenCompressionFlagIsSet", testInternalErrorStatusReturnedWhenCompressionFlagIsSet),
  342. ("testMessageCanBeSentAcrossMultipleByteBuffers", testMessageCanBeSentAcrossMultipleByteBuffers),
  343. ("testOnlyOneStatusIsReturned", testOnlyOneStatusIsReturned),
  344. ]
  345. }
  346. extension ImmediatelyFailingProviderTests {
  347. // DO NOT MODIFY: This is autogenerated, use:
  348. // `swift test --generate-linuxmain`
  349. // to regenerate.
  350. static let __allTests__ImmediatelyFailingProviderTests = [
  351. ("testBidirectionalStreaming", testBidirectionalStreaming),
  352. ("testClientStreaming", testClientStreaming),
  353. ("testServerStreaming", testServerStreaming),
  354. ("testUnary", testUnary),
  355. ]
  356. }
  357. extension LengthPrefixedMessageReaderTests {
  358. // DO NOT MODIFY: This is autogenerated, use:
  359. // `swift test --generate-linuxmain`
  360. // to regenerate.
  361. static let __allTests__LengthPrefixedMessageReaderTests = [
  362. ("testAppendReadsAllBytes", testAppendReadsAllBytes),
  363. ("testNextMessageDeliveredAcrossMultipleByteBuffers", testNextMessageDeliveredAcrossMultipleByteBuffers),
  364. ("testNextMessageDoesNotThrowWhenCompressionFlagIsExpectedButNotSet", testNextMessageDoesNotThrowWhenCompressionFlagIsExpectedButNotSet),
  365. ("testNextMessageReturnsMessageForZeroLengthMessage", testNextMessageReturnsMessageForZeroLengthMessage),
  366. ("testNextMessageReturnsMessageIsAppendedInOneBuffer", testNextMessageReturnsMessageIsAppendedInOneBuffer),
  367. ("testNextMessageReturnsNilWhenNoBytesAppended", testNextMessageReturnsNilWhenNoBytesAppended),
  368. ("testNextMessageReturnsNilWhenNoMessageBytesAreAvailable", testNextMessageReturnsNilWhenNoMessageBytesAreAvailable),
  369. ("testNextMessageReturnsNilWhenNoMessageLengthIsAvailable", testNextMessageReturnsNilWhenNoMessageLengthIsAvailable),
  370. ("testNextMessageReturnsNilWhenNotAllMessageBytesAreAvailable", testNextMessageReturnsNilWhenNotAllMessageBytesAreAvailable),
  371. ("testNextMessageReturnsNilWhenNotAllMessageLengthIsAvailable", testNextMessageReturnsNilWhenNotAllMessageLengthIsAvailable),
  372. ("testNextMessageThrowsWhenCompressionFlagIsSetButNotExpected", testNextMessageThrowsWhenCompressionFlagIsSetButNotExpected),
  373. ("testNextMessageThrowsWhenCompressionMechanismIsNotSupported", testNextMessageThrowsWhenCompressionMechanismIsNotSupported),
  374. ("testNextMessageWhenMultipleMessagesAreBuffered", testNextMessageWhenMultipleMessagesAreBuffered),
  375. ]
  376. }
  377. extension PlatformSupportTests {
  378. // DO NOT MODIFY: This is autogenerated, use:
  379. // `swift test --generate-linuxmain`
  380. // to regenerate.
  381. static let __allTests__PlatformSupportTests = [
  382. ("testMakeClientBootstrapReturnsClientBootstrapForEventLoop", testMakeClientBootstrapReturnsClientBootstrapForEventLoop),
  383. ("testMakeClientBootstrapReturnsClientBootstrapForMultiThreadedGroup", testMakeClientBootstrapReturnsClientBootstrapForMultiThreadedGroup),
  384. ("testMakeClientBootstrapReturnsNIOTSConnectionBootstrapForNIOTSGroup", testMakeClientBootstrapReturnsNIOTSConnectionBootstrapForNIOTSGroup),
  385. ("testMakeClientBootstrapReturnsNIOTSConnectionBootstrapForQoSEventLoop", testMakeClientBootstrapReturnsNIOTSConnectionBootstrapForQoSEventLoop),
  386. ("testMakeEventLoopGroupReturnsMultiThreadedGroupForPosix", testMakeEventLoopGroupReturnsMultiThreadedGroupForPosix),
  387. ("testMakeEventLoopGroupReturnsNIOTSGroupForNetworkFramework", testMakeEventLoopGroupReturnsNIOTSGroupForNetworkFramework),
  388. ("testMakeServerBootstrapReturnsNIOTSListenerBootstrapForNIOTSGroup", testMakeServerBootstrapReturnsNIOTSListenerBootstrapForNIOTSGroup),
  389. ("testMakeServerBootstrapReturnsNIOTSListenerBootstrapForQoSEventLoop", testMakeServerBootstrapReturnsNIOTSListenerBootstrapForQoSEventLoop),
  390. ("testMakeServerBootstrapReturnsServerBootstrapForEventLoop", testMakeServerBootstrapReturnsServerBootstrapForEventLoop),
  391. ("testMakeServerBootstrapReturnsServerBootstrapForMultiThreadedGroup", testMakeServerBootstrapReturnsServerBootstrapForMultiThreadedGroup),
  392. ]
  393. }
  394. extension ServerDelayedThrowingTests {
  395. // DO NOT MODIFY: This is autogenerated, use:
  396. // `swift test --generate-linuxmain`
  397. // to regenerate.
  398. static let __allTests__ServerDelayedThrowingTests = [
  399. ("testBidirectionalStreaming", testBidirectionalStreaming),
  400. ("testClientStreaming", testClientStreaming),
  401. ("testServerStreaming", testServerStreaming),
  402. ("testUnary", testUnary),
  403. ]
  404. }
  405. extension ServerErrorTransformingTests {
  406. // DO NOT MODIFY: This is autogenerated, use:
  407. // `swift test --generate-linuxmain`
  408. // to regenerate.
  409. static let __allTests__ServerErrorTransformingTests = [
  410. ("testBidirectionalStreaming", testBidirectionalStreaming),
  411. ("testClientStreaming", testClientStreaming),
  412. ("testServerStreaming", testServerStreaming),
  413. ("testUnary", testUnary),
  414. ]
  415. }
  416. extension ServerThrowingTests {
  417. // DO NOT MODIFY: This is autogenerated, use:
  418. // `swift test --generate-linuxmain`
  419. // to regenerate.
  420. static let __allTests__ServerThrowingTests = [
  421. ("testBidirectionalStreaming", testBidirectionalStreaming),
  422. ("testClientStreaming", testClientStreaming),
  423. ("testServerStreaming", testServerStreaming),
  424. ("testUnary", testUnary),
  425. ]
  426. }
  427. extension ServerWebTests {
  428. // DO NOT MODIFY: This is autogenerated, use:
  429. // `swift test --generate-linuxmain`
  430. // to regenerate.
  431. static let __allTests__ServerWebTests = [
  432. ("testServerStreaming", testServerStreaming),
  433. ("testUnary", testUnary),
  434. ("testUnaryLotsOfRequests", testUnaryLotsOfRequests),
  435. ("testUnaryWithoutRequestMessage", testUnaryWithoutRequestMessage),
  436. ]
  437. }
  438. extension StopwatchTests {
  439. // DO NOT MODIFY: This is autogenerated, use:
  440. // `swift test --generate-linuxmain`
  441. // to regenerate.
  442. static let __allTests__StopwatchTests = [
  443. ("testElapsed", testElapsed),
  444. ]
  445. }
  446. extension StreamingRequestClientCallTests {
  447. // DO NOT MODIFY: This is autogenerated, use:
  448. // `swift test --generate-linuxmain`
  449. // to regenerate.
  450. static let __allTests__StreamingRequestClientCallTests = [
  451. ("testSendMessages", testSendMessages),
  452. ]
  453. }
  454. public func __allTests() -> [XCTestCaseEntry] {
  455. return [
  456. testCase(AnyServiceClientTests.__allTests__AnyServiceClientTests),
  457. testCase(ClientCancellingTests.__allTests__ClientCancellingTests),
  458. testCase(ClientClosedChannelTests.__allTests__ClientClosedChannelTests),
  459. testCase(ClientConnectionBackoffTests.__allTests__ClientConnectionBackoffTests),
  460. testCase(ClientTLSFailureTests.__allTests__ClientTLSFailureTests),
  461. testCase(ClientTLSHostnameOverrideTests.__allTests__ClientTLSHostnameOverrideTests),
  462. testCase(ClientThrowingWhenServerReturningErrorTests.__allTests__ClientThrowingWhenServerReturningErrorTests),
  463. testCase(ClientTimeoutTests.__allTests__ClientTimeoutTests),
  464. testCase(ConnectionBackoffTests.__allTests__ConnectionBackoffTests),
  465. testCase(ConnectivityStateMonitorTests.__allTests__ConnectivityStateMonitorTests),
  466. testCase(FunctionalTestsAnonymousClient.__allTests__FunctionalTestsAnonymousClient),
  467. testCase(FunctionalTestsAnonymousClientNIOTS.__allTests__FunctionalTestsAnonymousClientNIOTS),
  468. testCase(FunctionalTestsInsecureTransport.__allTests__FunctionalTestsInsecureTransport),
  469. testCase(FunctionalTestsInsecureTransportNIOTS.__allTests__FunctionalTestsInsecureTransportNIOTS),
  470. testCase(FunctionalTestsMutualAuthentication.__allTests__FunctionalTestsMutualAuthentication),
  471. testCase(FunctionalTestsMutualAuthenticationNIOTS.__allTests__FunctionalTestsMutualAuthenticationNIOTS),
  472. testCase(GRPCChannelHandlerTests.__allTests__GRPCChannelHandlerTests),
  473. testCase(GRPCInsecureInteroperabilityTests.__allTests__GRPCInsecureInteroperabilityTests),
  474. testCase(GRPCSecureInteroperabilityTests.__allTests__GRPCSecureInteroperabilityTests),
  475. testCase(GRPCStatusCodeTests.__allTests__GRPCStatusCodeTests),
  476. testCase(GRPCStatusMessageMarshallerTests.__allTests__GRPCStatusMessageMarshallerTests),
  477. testCase(GRPCTimeoutTests.__allTests__GRPCTimeoutTests),
  478. testCase(GRPCTypeSizeTests.__allTests__GRPCTypeSizeTests),
  479. testCase(HTTP1ToRawGRPCServerCodecTests.__allTests__HTTP1ToRawGRPCServerCodecTests),
  480. testCase(ImmediatelyFailingProviderTests.__allTests__ImmediatelyFailingProviderTests),
  481. testCase(LengthPrefixedMessageReaderTests.__allTests__LengthPrefixedMessageReaderTests),
  482. testCase(PlatformSupportTests.__allTests__PlatformSupportTests),
  483. testCase(ServerDelayedThrowingTests.__allTests__ServerDelayedThrowingTests),
  484. testCase(ServerErrorTransformingTests.__allTests__ServerErrorTransformingTests),
  485. testCase(ServerThrowingTests.__allTests__ServerThrowingTests),
  486. testCase(ServerWebTests.__allTests__ServerWebTests),
  487. testCase(StopwatchTests.__allTests__StopwatchTests),
  488. testCase(StreamingRequestClientCallTests.__allTests__StreamingRequestClientCallTests),
  489. ]
  490. }
  491. #endif