| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859 |
- /*
- * Copyright 2024, gRPC Authors All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- import GRPCCore
- import NIOCore
- import NIOEmbedded
- import NIOHPACK
- import XCTest
- @testable import GRPCNIOTransportCore
- private enum TargetStateMachineState: CaseIterable {
- case clientIdleServerIdle
- case clientOpenServerIdle
- case clientOpenServerOpen
- case clientOpenServerClosed
- case clientClosedServerIdle
- case clientClosedServerOpen
- case clientClosedServerClosed
- }
- extension HPACKHeaders {
- // Client
- fileprivate static let clientInitialMetadata: Self = [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.scheme.rawValue: "http",
- GRPCHTTP2Keys.method.rawValue: "POST",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- GRPCHTTP2Keys.te.rawValue: "trailers",
- ]
- fileprivate static let clientInitialMetadataWithDeflateCompression: Self = [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- GRPCHTTP2Keys.method.rawValue: "POST",
- GRPCHTTP2Keys.scheme.rawValue: "https",
- GRPCHTTP2Keys.te.rawValue: "trailers",
- GRPCHTTP2Keys.acceptEncoding.rawValue: "deflate",
- GRPCHTTP2Keys.encoding.rawValue: "deflate",
- ]
- fileprivate static let clientInitialMetadataWithGzipCompression: Self = [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- GRPCHTTP2Keys.method.rawValue: "POST",
- GRPCHTTP2Keys.scheme.rawValue: "https",
- GRPCHTTP2Keys.te.rawValue: "trailers",
- GRPCHTTP2Keys.acceptEncoding.rawValue: "gzip",
- GRPCHTTP2Keys.encoding.rawValue: "gzip",
- ]
- fileprivate static let receivedWithoutContentType: Self = [
- GRPCHTTP2Keys.path.rawValue: "/test/test"
- ]
- fileprivate static let receivedWithInvalidContentType: Self = [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.contentType.rawValue: "invalid/invalid",
- ]
- fileprivate static let receivedWithInvalidPath: Self = [
- GRPCHTTP2Keys.path.rawValue: "someinvalidpath",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- ]
- fileprivate static let receivedWithoutEndpoint: Self = [
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc"
- ]
- fileprivate static let receivedWithoutTE: Self = [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.scheme.rawValue: "http",
- GRPCHTTP2Keys.method.rawValue: "POST",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- ]
- fileprivate static let receivedWithInvalidTE: Self = [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.scheme.rawValue: "http",
- GRPCHTTP2Keys.method.rawValue: "POST",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- GRPCHTTP2Keys.te.rawValue: "invalidte",
- ]
- fileprivate static let receivedWithoutMethod: Self = [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.scheme.rawValue: "http",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- GRPCHTTP2Keys.te.rawValue: "trailers",
- ]
- fileprivate static let receivedWithInvalidMethod: Self = [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.scheme.rawValue: "http",
- GRPCHTTP2Keys.method.rawValue: "GET",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- GRPCHTTP2Keys.te.rawValue: "trailers",
- ]
- fileprivate static let receivedWithoutScheme: Self = [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.method.rawValue: "POST",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- GRPCHTTP2Keys.te.rawValue: "trailers",
- ]
- fileprivate static let receivedWithInvalidScheme: Self = [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.scheme.rawValue: "invalidscheme",
- GRPCHTTP2Keys.method.rawValue: "POST",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- GRPCHTTP2Keys.te.rawValue: "trailers",
- ]
- // Server
- fileprivate static let serverInitialMetadata: Self = [
- GRPCHTTP2Keys.status.rawValue: "200",
- GRPCHTTP2Keys.contentType.rawValue: ContentType.grpc.canonicalValue,
- ]
- fileprivate static let serverInitialMetadataWithDeflateCompression: Self = [
- GRPCHTTP2Keys.status.rawValue: "200",
- GRPCHTTP2Keys.contentType.rawValue: ContentType.grpc.canonicalValue,
- GRPCHTTP2Keys.encoding.rawValue: "deflate",
- ]
- fileprivate static let serverInitialMetadataWithGZIPCompression: Self = [
- GRPCHTTP2Keys.status.rawValue: "200",
- GRPCHTTP2Keys.contentType.rawValue: ContentType.grpc.canonicalValue,
- GRPCHTTP2Keys.encoding.rawValue: "gzip",
- ]
- fileprivate static let serverTrailers: Self = [
- GRPCHTTP2Keys.status.rawValue: "200",
- GRPCHTTP2Keys.contentType.rawValue: ContentType.grpc.canonicalValue,
- GRPCHTTP2Keys.grpcStatus.rawValue: "0",
- ]
- }
- final class GRPCStreamClientStateMachineTests: XCTestCase {
- private func makeClientStateMachine(
- targetState: TargetStateMachineState,
- compressionEnabled: Bool = false
- ) -> GRPCStreamStateMachine {
- var stateMachine = GRPCStreamStateMachine(
- configuration: .client(
- .init(
- methodDescriptor: .init(service: "test", method: "test"),
- scheme: .http,
- outboundEncoding: compressionEnabled ? .deflate : .none,
- acceptedEncodings: [.deflate]
- )
- ),
- maxPayloadSize: 100,
- skipAssertions: true
- )
- let serverMetadata: HPACKHeaders =
- compressionEnabled ? .serverInitialMetadataWithDeflateCompression : .serverInitialMetadata
- switch targetState {
- case .clientIdleServerIdle:
- break
- case .clientOpenServerIdle:
- // Open client
- XCTAssertNoThrow(try stateMachine.send(metadata: []))
- case .clientOpenServerOpen:
- // Open client
- XCTAssertNoThrow(try stateMachine.send(metadata: []))
- // Open server
- XCTAssertNoThrow(try stateMachine.receive(headers: serverMetadata, endStream: false))
- case .clientOpenServerClosed:
- // Open client
- XCTAssertNoThrow(try stateMachine.send(metadata: []))
- // Open server
- XCTAssertNoThrow(try stateMachine.receive(headers: serverMetadata, endStream: false))
- // Close server
- XCTAssertNoThrow(try stateMachine.receive(headers: .serverTrailers, endStream: true))
- case .clientClosedServerIdle:
- // Open client
- XCTAssertNoThrow(try stateMachine.send(metadata: []))
- // Close client
- XCTAssertNoThrow(try stateMachine.closeOutbound())
- case .clientClosedServerOpen:
- // Open client
- XCTAssertNoThrow(try stateMachine.send(metadata: []))
- // Open server
- XCTAssertNoThrow(try stateMachine.receive(headers: serverMetadata, endStream: false))
- // Close client
- XCTAssertNoThrow(try stateMachine.closeOutbound())
- case .clientClosedServerClosed:
- // Open client
- XCTAssertNoThrow(try stateMachine.send(metadata: []))
- // Open server
- XCTAssertNoThrow(try stateMachine.receive(headers: serverMetadata, endStream: false))
- // Close client
- XCTAssertNoThrow(try stateMachine.closeOutbound())
- // Close server
- XCTAssertNoThrow(try stateMachine.receive(headers: .serverTrailers, endStream: true))
- }
- return stateMachine
- }
- // - MARK: Send Metadata
- func testSendMetadataWhenClientIdleAndServerIdle() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientIdleServerIdle)
- XCTAssertNoThrow(try stateMachine.send(metadata: []))
- }
- func testSendMetadataWhenClientAlreadyOpen() throws {
- for targetState in [
- TargetStateMachineState.clientOpenServerIdle, .clientOpenServerOpen, .clientOpenServerClosed,
- ] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- // Try sending metadata again: should throw
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(metadata: .init())
- ) {
- error in
- XCTAssertEqual(error.message, "Client is already open: shouldn't be sending metadata.")
- }
- }
- }
- func testSendMetadataWhenClientAlreadyClosed() throws {
- for targetState in [
- TargetStateMachineState.clientClosedServerIdle, .clientClosedServerOpen,
- .clientClosedServerClosed,
- ] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- // Try sending metadata again: should throw
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(metadata: .init())
- ) {
- error in
- XCTAssertEqual(error.message, "Client is closed: can't send metadata.")
- }
- }
- }
- // - MARK: Send Message
- func testSendMessageWhenClientIdleAndServerIdle() {
- var stateMachine = self.makeClientStateMachine(targetState: .clientIdleServerIdle)
- // Try to send a message without opening (i.e. without sending initial metadata)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(message: [], promise: nil)
- ) { error in
- XCTAssertEqual(error.message, "Client not yet open.")
- }
- }
- func testSendMessageWhenClientOpen() {
- for targetState in [
- TargetStateMachineState.clientOpenServerIdle, .clientOpenServerOpen, .clientOpenServerClosed,
- ] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- // Now send a message
- XCTAssertNoThrow(try stateMachine.send(message: [], promise: nil))
- }
- }
- func testSendMessageWhenClientClosed() {
- for targetState in [
- TargetStateMachineState.clientClosedServerIdle, .clientClosedServerOpen,
- .clientClosedServerClosed,
- ] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- // Try sending another message: it should fail
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(message: [], promise: nil)
- ) { error in
- XCTAssertEqual(error.message, "Client is closed, cannot send a message.")
- }
- }
- }
- // - MARK: Send Status and Trailers
- func testSendStatusAndTrailers() {
- for targetState in TargetStateMachineState.allCases {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- // This operation is never allowed on the client.
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(
- status: Status(code: .ok, message: ""),
- metadata: .init()
- )
- ) { error in
- XCTAssertEqual(error.message, "Client cannot send status and trailer.")
- }
- }
- }
- // - MARK: Receive initial metadata
- func testReceiveInitialMetadataWhenClientIdleAndServerIdle() {
- var stateMachine = self.makeClientStateMachine(targetState: .clientIdleServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(headers: .init(), endStream: false)
- ) { error in
- XCTAssertEqual(error.message, "Server cannot have sent metadata if the client is idle.")
- }
- }
- func testReceiveInvalidInitialMetadataWhenServerIdle() throws {
- for targetState in [
- TargetStateMachineState.clientOpenServerIdle, .clientClosedServerIdle,
- ] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- // Receive metadata with unexpected non-200 status code
- let action = try stateMachine.receive(
- headers: [GRPCHTTP2Keys.status.rawValue: "300"],
- endStream: false
- )
- XCTAssertEqual(
- action,
- .receivedStatusAndMetadata_clientOnly(
- status: .init(code: .unknown, message: "Unexpected non-200 HTTP Status Code."),
- metadata: [":status": "300"]
- )
- )
- }
- }
- func testReceiveInitialMetadataWhenServerIdle_ClientUnsupportedEncoding() throws {
- // Create client with deflate compression enabled
- var stateMachine = self.makeClientStateMachine(
- targetState: .clientOpenServerIdle,
- compressionEnabled: true
- )
- // Try opening server with gzip compression, which client does not support.
- let action = try stateMachine.receive(
- headers: .serverInitialMetadataWithGZIPCompression,
- endStream: false
- )
- XCTAssertEqual(
- action,
- .receivedStatusAndMetadata_clientOnly(
- status: Status(
- code: .internalError,
- message:
- "The server picked a compression algorithm ('gzip') the client does not know about."
- ),
- metadata: [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-encoding": "gzip",
- ]
- )
- )
- }
- func testReceiveMessage_ClientCompressionEnabled() throws {
- // Enable deflate compression on client
- var stateMachine = self.makeClientStateMachine(
- targetState: .clientOpenServerOpen,
- compressionEnabled: true
- )
- let originalMessage = [UInt8]([42, 42, 43, 43])
- // Receiving uncompressed message should still work.
- let receivedUncompressedBytes = try self.frameMessage(originalMessage, compression: .none)
- XCTAssertNoThrow(try stateMachine.receive(buffer: receivedUncompressedBytes, endStream: false))
- var receivedAction = stateMachine.nextInboundMessage()
- switch receivedAction {
- case .noMoreMessages, .awaitMoreMessages:
- XCTFail("Should have received message")
- case .receiveMessage(let receivedMessaged):
- XCTAssertEqual(originalMessage, receivedMessaged)
- }
- // Receiving compressed message with deflate should work
- let receivedDeflateCompressedBytes = try self.frameMessage(
- originalMessage,
- compression: .deflate
- )
- XCTAssertNoThrow(
- try stateMachine.receive(buffer: receivedDeflateCompressedBytes, endStream: false)
- )
- receivedAction = stateMachine.nextInboundMessage()
- switch receivedAction {
- case .noMoreMessages, .awaitMoreMessages:
- XCTFail("Should have received message")
- case .receiveMessage(let receivedMessaged):
- XCTAssertEqual(originalMessage, receivedMessaged)
- }
- // Receiving compressed message with gzip (unsupported) should throw error
- let receivedGZIPCompressedBytes = try self.frameMessage(originalMessage, compression: .gzip)
- let action = try stateMachine.receive(buffer: receivedGZIPCompressedBytes, endStream: false)
- XCTAssertEqual(
- action,
- .endRPCAndForwardErrorStatus_clientOnly(
- Status(code: .internalError, message: "Failed to decode message")
- )
- )
- receivedAction = stateMachine.nextInboundMessage()
- switch receivedAction {
- case .awaitMoreMessages:
- ()
- case .noMoreMessages:
- XCTFail("Should be awaiting for more messages")
- case .receiveMessage:
- XCTFail("Should not have received message")
- }
- }
- func testReceiveInitialMetadataWhenServerIdle() throws {
- for targetState in [
- TargetStateMachineState.clientOpenServerIdle, .clientClosedServerIdle,
- ] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- // Receive metadata = open server
- let action = try stateMachine.receive(
- headers: [
- GRPCHTTP2Keys.status.rawValue: "200",
- GRPCHTTP2Keys.contentType.rawValue: ContentType.grpc.canonicalValue,
- GRPCHTTP2Keys.encoding.rawValue: "deflate",
- "custom": "123",
- "custom-bin": String(base64Encoding: [42, 43, 44]),
- ],
- endStream: false
- )
- var expectedMetadata: Metadata = [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-encoding": "deflate",
- "custom": "123",
- ]
- expectedMetadata.addBinary([42, 43, 44], forKey: "custom-bin")
- XCTAssertEqual(action, .receivedMetadata(expectedMetadata, nil))
- }
- }
- func testReceiveInitialMetadataWhenServerOpen() throws {
- for targetState in [
- TargetStateMachineState.clientOpenServerOpen, .clientClosedServerOpen,
- ] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- let action1 = try stateMachine.receive(
- headers: [
- GRPCHTTP2Keys.status.rawValue: "200",
- GRPCHTTP2Keys.contentType.rawValue: ContentType.grpc.canonicalValue,
- GRPCHTTP2Keys.encoding.rawValue: "deflate",
- "custom": "123",
- "custom-bin": String(base64Encoding: [42, 43, 44]),
- ],
- endStream: false
- )
- let expectedStatus = Status(code: .unknown, message: "No 'grpc-status' value in trailers")
- let expectedMetadata: Metadata = [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-encoding": "deflate",
- "custom": "123",
- "custom-bin": .binary([42, 43, 44]),
- ]
- XCTAssertEqual(
- action1,
- .receivedStatusAndMetadata_clientOnly(status: expectedStatus, metadata: expectedMetadata)
- )
- // Now make sure everything works well if we include grpc-status
- let action2 = try stateMachine.receive(
- headers: [
- GRPCHTTP2Keys.status.rawValue: "200",
- GRPCHTTP2Keys.grpcStatus.rawValue: String(Status.Code.ok.rawValue),
- GRPCHTTP2Keys.contentType.rawValue: ContentType.grpc.canonicalValue,
- GRPCHTTP2Keys.encoding.rawValue: "deflate",
- "custom": "123",
- "custom-bin": String(base64Encoding: [42, 43, 44]),
- ],
- endStream: false
- )
- XCTAssertEqual(
- action2,
- .receivedStatusAndMetadata_clientOnly(
- status: Status(code: .ok, message: ""),
- metadata: expectedMetadata
- )
- )
- }
- }
- func testReceiveInitialMetadataWhenServerClosed() {
- for targetState in [TargetStateMachineState.clientOpenServerClosed, .clientClosedServerClosed] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(headers: .init(), endStream: false)
- ) { error in
- XCTAssertEqual(error.message, "Server is closed, nothing could have been sent.")
- }
- }
- }
- // - MARK: Receive end trailers
- func testReceiveEndTrailerWhenClientIdleAndServerIdle() {
- var stateMachine = self.makeClientStateMachine(targetState: .clientIdleServerIdle)
- // Receive an end trailer
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(headers: .init(), endStream: true)
- ) { error in
- XCTAssertEqual(error.message, "Server cannot have sent metadata if the client is idle.")
- }
- }
- func testReceiveEndTrailerWhenClientOpenAndServerIdle() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientOpenServerIdle)
- // Receive a trailers-only response
- let trailersOnlyResponse: HPACKHeaders = [
- GRPCHTTP2Keys.status.rawValue: "200",
- GRPCHTTP2Keys.contentType.rawValue: ContentType.grpc.canonicalValue,
- GRPCHTTP2Keys.grpcStatus.rawValue: String(Status.Code.internalError.rawValue),
- GRPCHTTP2Keys.grpcStatusMessage.rawValue: GRPCStatusMessageMarshaller.marshall(
- "Some, status, message"
- )!,
- "custom-key": "custom-value",
- ]
- let trailers = try stateMachine.receive(headers: trailersOnlyResponse, endStream: true)
- switch trailers {
- case .receivedStatusAndMetadata_clientOnly(let status, let metadata):
- XCTAssertEqual(status, Status(code: .internalError, message: "Some, status, message"))
- XCTAssertEqual(
- metadata,
- [
- ":status": "200",
- "content-type": "application/grpc",
- "custom-key": "custom-value",
- ]
- )
- case .receivedMetadata, .doNothing, .rejectRPC_serverOnly, .protocolViolation_serverOnly:
- XCTFail("Expected .receivedStatusAndMetadata")
- }
- }
- func testReceiveEndTrailerWhenServerOpen() throws {
- for targetState in [TargetStateMachineState.clientOpenServerOpen, .clientClosedServerOpen] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- // Receive an end trailer
- let action = try stateMachine.receive(
- headers: [
- GRPCHTTP2Keys.status.rawValue: "200",
- GRPCHTTP2Keys.grpcStatus.rawValue: String(Status.Code.ok.rawValue),
- GRPCHTTP2Keys.contentType.rawValue: ContentType.grpc.canonicalValue,
- GRPCHTTP2Keys.encoding.rawValue: "deflate",
- "custom": "123",
- ],
- endStream: true
- )
- let expectedMetadata: Metadata = [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-encoding": "deflate",
- "custom": "123",
- ]
- XCTAssertEqual(
- action,
- .receivedStatusAndMetadata_clientOnly(
- status: .init(code: .ok, message: ""),
- metadata: expectedMetadata
- )
- )
- }
- }
- func testReceiveEndTrailerWhenClientOpenAndServerClosed() {
- var stateMachine = self.makeClientStateMachine(targetState: .clientOpenServerClosed)
- // Receive another end trailer
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(headers: .init(), endStream: true)
- ) { error in
- XCTAssertEqual(error.message, "Server is closed, nothing could have been sent.")
- }
- }
- func testReceiveEndTrailerWhenClientClosedAndServerIdle() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientClosedServerIdle)
- // Server sends a trailers-only response
- let trailersOnlyResponse: HPACKHeaders = [
- GRPCHTTP2Keys.status.rawValue: "200",
- GRPCHTTP2Keys.contentType.rawValue: ContentType.grpc.canonicalValue,
- GRPCHTTP2Keys.grpcStatus.rawValue: String(Status.Code.internalError.rawValue),
- GRPCHTTP2Keys.grpcStatusMessage.rawValue: GRPCStatusMessageMarshaller.marshall(
- "Some status message"
- )!,
- "custom-key": "custom-value",
- ]
- let trailers = try stateMachine.receive(headers: trailersOnlyResponse, endStream: true)
- switch trailers {
- case .receivedStatusAndMetadata_clientOnly(let status, let metadata):
- XCTAssertEqual(status, Status(code: .internalError, message: "Some status message"))
- XCTAssertEqual(
- metadata,
- [
- ":status": "200",
- "content-type": "application/grpc",
- "custom-key": "custom-value",
- ]
- )
- case .receivedMetadata, .doNothing, .rejectRPC_serverOnly, .protocolViolation_serverOnly:
- XCTFail("Expected .receivedStatusAndMetadata")
- }
- }
- func testReceiveEndTrailerWhenClientClosedAndServerClosed() {
- var stateMachine = self.makeClientStateMachine(targetState: .clientClosedServerClosed)
- // Close server again (endStream = true) and assert we don't throw.
- // This can happen if the previous close was caused by a grpc-status header
- // and then the server sends an empty frame with EOS set.
- XCTAssertEqual(try stateMachine.receive(headers: .init(), endStream: true), .doNothing)
- }
- // - MARK: Receive message
- func testReceiveMessageWhenClientIdleAndServerIdle() {
- var stateMachine = self.makeClientStateMachine(targetState: .clientIdleServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(buffer: .init(), endStream: false)
- ) { error in
- XCTAssertEqual(
- error.message,
- "Cannot have received anything from server if client is not yet open."
- )
- }
- }
- func testReceiveMessageWhenServerIdle() {
- for targetState in [TargetStateMachineState.clientOpenServerIdle, .clientClosedServerIdle] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(buffer: .init(), endStream: false)
- ) { error in
- XCTAssertEqual(
- error.message,
- "Server cannot have sent a message before sending the initial metadata."
- )
- }
- }
- }
- func testReceiveMessageWhenServerOpen() throws {
- for targetState in [TargetStateMachineState.clientOpenServerOpen, .clientClosedServerOpen] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- XCTAssertEqual(
- try stateMachine.receive(buffer: .init(), endStream: false),
- .readInbound
- )
- XCTAssertEqual(
- try stateMachine.receive(buffer: .init(), endStream: true),
- .endRPCAndForwardErrorStatus_clientOnly(
- Status(
- code: .internalError,
- message: """
- Server sent EOS alongside a data frame, but server is only allowed \
- to close by sending status and trailers.
- """
- )
- )
- )
- }
- }
- func testReceiveMessageWhenServerClosed() {
- for targetState in [TargetStateMachineState.clientOpenServerClosed, .clientClosedServerClosed] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(buffer: .init(), endStream: false)
- ) { error in
- XCTAssertEqual(error.message, "Cannot have received anything from a closed server.")
- }
- }
- }
- // - MARK: Next outbound message
- func testNextOutboundMessageWhenClientIdleAndServerIdle() {
- var stateMachine = self.makeClientStateMachine(targetState: .clientIdleServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.nextOutboundFrame()
- ) { error in
- XCTAssertEqual(error.message, "Client is not open yet.")
- }
- }
- func testNextOutboundMessageWhenClientOpenAndServerOpenOrIdle() throws {
- for targetState in [TargetStateMachineState.clientOpenServerIdle, .clientOpenServerOpen] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- XCTAssertNoThrow(try stateMachine.send(message: [42, 42], promise: nil))
- let expectedBytes: [UInt8] = [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ]
- XCTAssertEqual(
- try stateMachine.nextOutboundFrame(),
- .sendFrame(frame: ByteBuffer(bytes: expectedBytes), promise: nil)
- )
- // And then make sure that nothing else is returned anymore
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- }
- }
- func testNextOutboundMessageWhenClientOpenAndServerIdle_WithCompression() throws {
- var stateMachine = self.makeClientStateMachine(
- targetState: .clientOpenServerIdle,
- compressionEnabled: true
- )
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- let originalMessage = [UInt8]([42, 42, 43, 43])
- XCTAssertNoThrow(try stateMachine.send(message: originalMessage, promise: nil))
- let request = try stateMachine.nextOutboundFrame()
- let framedMessage = try self.frameMessage(originalMessage, compression: .deflate)
- XCTAssertEqual(request, .sendFrame(frame: framedMessage, promise: nil))
- }
- func testNextOutboundMessageWhenClientOpenAndServerOpen_WithCompression() throws {
- var stateMachine = self.makeClientStateMachine(
- targetState: .clientOpenServerOpen,
- compressionEnabled: true
- )
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- let originalMessage = [UInt8]([42, 42, 43, 43])
- XCTAssertNoThrow(try stateMachine.send(message: originalMessage, promise: nil))
- let request = try stateMachine.nextOutboundFrame()
- let framedMessage = try self.frameMessage(originalMessage, compression: .deflate)
- XCTAssertEqual(request, .sendFrame(frame: framedMessage, promise: nil))
- }
- func testNextOutboundMessageWhenClientOpenAndServerClosed() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientOpenServerClosed)
- // No more messages to send
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- // Queue a message, but assert the action is .noMoreMessages nevertheless,
- // because the server is closed.
- XCTAssertNoThrow(try stateMachine.send(message: [42, 42], promise: nil))
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- }
- func testNextOutboundMessageWhenClientClosedAndServerIdle() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientOpenServerIdle)
- // Send a message and close client
- XCTAssertNoThrow(try stateMachine.send(message: [42, 42], promise: nil))
- XCTAssertNoThrow(try stateMachine.closeOutbound())
- // Make sure that getting the next outbound message _does_ return the message
- // we have enqueued.
- let request = try stateMachine.nextOutboundFrame()
- let expectedBytes: [UInt8] = [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ]
- XCTAssertEqual(request, .sendFrame(frame: ByteBuffer(bytes: expectedBytes), promise: nil))
- // And then make sure that nothing else is returned anymore
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- }
- func testNextOutboundMessageWhenClientClosedAndServerOpen() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientOpenServerOpen)
- // Send a message and close client
- XCTAssertNoThrow(try stateMachine.send(message: [42, 42], promise: nil))
- XCTAssertNoThrow(try stateMachine.closeOutbound())
- // Make sure that getting the next outbound message _does_ return the message
- // we have enqueued.
- let request = try stateMachine.nextOutboundFrame()
- let expectedBytes: [UInt8] = [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ]
- XCTAssertEqual(request, .sendFrame(frame: ByteBuffer(bytes: expectedBytes), promise: nil))
- // And then make sure that nothing else is returned anymore
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- }
- func testNextOutboundMessageWhenClientClosedAndServerClosed() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientOpenServerOpen)
- // Send a message
- XCTAssertNoThrow(try stateMachine.send(message: [42, 42], promise: nil))
- // Close server
- XCTAssertNoThrow(try stateMachine.receive(headers: .serverTrailers, endStream: true))
- // Close client
- XCTAssertNoThrow(try stateMachine.closeOutbound())
- // Even though we have enqueued a message, don't send it, because the server
- // is closed.
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- }
- // - MARK: Next inbound message
- func testNextInboundMessageWhenServerIdle() {
- for targetState in [
- TargetStateMachineState.clientIdleServerIdle, .clientOpenServerIdle, .clientClosedServerIdle,
- ] {
- var stateMachine = self.makeClientStateMachine(targetState: targetState)
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- }
- }
- func testNextInboundMessageWhenClientOpenAndServerOpen() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientOpenServerOpen)
- let receivedBytes = ByteBuffer(bytes: [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ])
- XCTAssertEqual(
- try stateMachine.receive(buffer: receivedBytes, endStream: false),
- .readInbound
- )
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage([42, 42]))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- }
- func testNextInboundMessageWhenClientOpenAndServerOpen_WithCompression() throws {
- var stateMachine = self.makeClientStateMachine(
- targetState: .clientOpenServerOpen,
- compressionEnabled: true
- )
- let originalMessage = [UInt8]([42, 42, 43, 43])
- let receivedBytes = try self.frameMessage(originalMessage, compression: .deflate)
- XCTAssertEqual(
- try stateMachine.receive(buffer: receivedBytes, endStream: false),
- .readInbound
- )
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage(originalMessage))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- }
- func testNextInboundMessageWhenClientOpenAndServerClosed() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientOpenServerOpen)
- let receivedBytes = ByteBuffer(bytes: [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ])
- XCTAssertEqual(
- try stateMachine.receive(buffer: receivedBytes, endStream: false),
- .readInbound
- )
- // Close server
- XCTAssertNoThrow(try stateMachine.receive(headers: .serverTrailers, endStream: true))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage([42, 42]))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .noMoreMessages)
- }
- func testNextInboundMessageWhenClientClosedAndServerOpen() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientOpenServerOpen)
- let receivedBytes = ByteBuffer(bytes: [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ])
- XCTAssertEqual(
- try stateMachine.receive(buffer: receivedBytes, endStream: false),
- .readInbound
- )
- // Close client
- XCTAssertNoThrow(try stateMachine.closeOutbound())
- // Even though the client is closed, because it received a message while open,
- // we must get the message now.
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage([42, 42]))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- }
- func testNextInboundMessageWhenClientClosedAndServerClosed() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientOpenServerOpen)
- let receivedBytes = ByteBuffer(bytes: [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ])
- XCTAssertEqual(
- try stateMachine.receive(buffer: receivedBytes, endStream: false),
- .readInbound
- )
- // Close server
- XCTAssertNoThrow(try stateMachine.receive(headers: .serverTrailers, endStream: true))
- // Close client
- XCTAssertNoThrow(try stateMachine.closeOutbound())
- // Even though the client is closed, because it received a message while open,
- // we must get the message now.
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage([42, 42]))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .noMoreMessages)
- }
- // - MARK: Unexpected close
- func testUnexpectedCloseWhenServerIdleOrOpen() throws {
- let thrownError = RPCError(code: .deadlineExceeded, message: "Test error")
- let reasonAndExpectedStatusPairs = [
- (
- GRPCStreamStateMachine.UnexpectedInboundCloseReason.channelInactive,
- Status(code: .unavailable, message: "Stream unexpectedly closed.")
- ),
- (
- GRPCStreamStateMachine.UnexpectedInboundCloseReason.streamReset,
- Status(
- code: .unavailable,
- message: "Stream unexpectedly closed: a RST_STREAM frame was received."
- )
- ),
- (
- GRPCStreamStateMachine.UnexpectedInboundCloseReason.errorThrown(thrownError),
- Status(
- code: .unavailable,
- message: "Stream unexpectedly closed with error."
- )
- ),
- ]
- let states = [
- TargetStateMachineState.clientIdleServerIdle,
- .clientOpenServerIdle,
- .clientOpenServerOpen,
- .clientClosedServerIdle,
- .clientClosedServerOpen,
- ]
- for state in states {
- for (closeReason, expectedStatus) in reasonAndExpectedStatusPairs {
- var stateMachine = self.makeClientStateMachine(targetState: state)
- var action = stateMachine.unexpectedInboundClose(reason: closeReason)
- guard case .forwardStatus_clientOnly(let status) = action else {
- XCTFail("Should have been `fireError` but was `\(action)` (state: \(state)).")
- return
- }
- XCTAssertEqual(status, expectedStatus)
- // Calling unexpectedInboundClose again should return `doNothing` because
- // we're already closed.
- action = stateMachine.unexpectedInboundClose(reason: closeReason)
- guard case .doNothing = action else {
- XCTFail("Should have been `doNothing` but was `\(action)` (state: \(state)).")
- return
- }
- }
- }
- }
- func testUnexpectedCloseWhenServerClosed() throws {
- let closeReasons = [
- GRPCStreamStateMachine.UnexpectedInboundCloseReason.channelInactive,
- .streamReset,
- .errorThrown(RPCError(code: .deadlineExceeded, message: "Test error")),
- ]
- let states = [
- TargetStateMachineState.clientOpenServerClosed,
- .clientClosedServerClosed,
- ]
- for state in states {
- for closeReason in closeReasons {
- var stateMachine = self.makeClientStateMachine(targetState: state)
- var action = stateMachine.unexpectedInboundClose(reason: closeReason)
- guard case .doNothing = action else {
- XCTFail("Should have been `doNothing` but was `\(action)` (state: \(state)).")
- return
- }
- // Calling unexpectedInboundClose again should return `doNothing` again.
- action = stateMachine.unexpectedInboundClose(reason: closeReason)
- guard case .doNothing = action else {
- XCTFail("Should have been `doNothing` but was `\(action)` (state: \(state)).")
- return
- }
- }
- }
- }
- // - MARK: Common paths
- func testNormalFlow() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientIdleServerIdle)
- // Client sends metadata
- let clientInitialMetadata = try stateMachine.send(metadata: .init())
- XCTAssertEqual(
- clientInitialMetadata,
- [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.scheme.rawValue: "http",
- GRPCHTTP2Keys.method.rawValue: "POST",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- GRPCHTTP2Keys.te.rawValue: "trailers",
- GRPCHTTP2Keys.acceptEncoding.rawValue: "deflate",
- ]
- )
- // Server sends initial metadata
- let serverInitialHeadersAction = try stateMachine.receive(
- headers: .serverInitialMetadata,
- endStream: false
- )
- XCTAssertEqual(
- serverInitialHeadersAction,
- .receivedMetadata(
- [
- ":status": "200",
- "content-type": "application/grpc",
- ],
- nil
- )
- )
- // Client sends messages
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- let message = [UInt8]([1, 2, 3, 4])
- let framedMessage = try self.frameMessage(message, compression: .none)
- try stateMachine.send(message: message, promise: nil)
- XCTAssertEqual(
- try stateMachine.nextOutboundFrame(),
- .sendFrame(frame: framedMessage, promise: nil)
- )
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- // Server sends response
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- let firstResponseBytes = [UInt8]([5, 6, 7])
- let firstResponse = try self.frameMessage(firstResponseBytes, compression: .none)
- let secondResponseBytes = [UInt8]([8, 9, 10])
- let secondResponse = try self.frameMessage(secondResponseBytes, compression: .none)
- XCTAssertEqual(
- try stateMachine.receive(buffer: firstResponse, endStream: false),
- .readInbound
- )
- XCTAssertEqual(
- try stateMachine.receive(buffer: secondResponse, endStream: false),
- .readInbound
- )
- // Make sure messages have arrived
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage(firstResponseBytes))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage(secondResponseBytes))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- // Client sends end
- XCTAssertNoThrow(try stateMachine.closeOutbound())
- // Server ends
- let metadataReceivedAction = try stateMachine.receive(
- headers: .serverTrailers,
- endStream: true
- )
- let receivedMetadata = {
- var m = Metadata(headers: .serverTrailers)
- m.removeAllValues(forKey: GRPCHTTP2Keys.grpcStatus.rawValue)
- m.removeAllValues(forKey: GRPCHTTP2Keys.grpcStatusMessage.rawValue)
- return m
- }()
- XCTAssertEqual(
- metadataReceivedAction,
- .receivedStatusAndMetadata_clientOnly(
- status: .init(code: .ok, message: ""),
- metadata: receivedMetadata
- )
- )
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- XCTAssertEqual(stateMachine.nextInboundMessage(), .noMoreMessages)
- }
- func testClientClosesBeforeItCanOpen() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientIdleServerIdle)
- XCTAssertNoThrow(try stateMachine.closeOutbound())
- }
- func testClientClosesBeforeServerOpens() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientIdleServerIdle)
- // Client sends metadata
- let clientInitialMetadata = try stateMachine.send(metadata: .init())
- XCTAssertEqual(
- clientInitialMetadata,
- [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.scheme.rawValue: "http",
- GRPCHTTP2Keys.method.rawValue: "POST",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- GRPCHTTP2Keys.te.rawValue: "trailers",
- GRPCHTTP2Keys.acceptEncoding.rawValue: "deflate",
- ]
- )
- // Client sends messages and ends
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- let message = [UInt8]([1, 2, 3, 4])
- let framedMessage = try self.frameMessage(message, compression: .none)
- XCTAssertNoThrow(try stateMachine.send(message: message, promise: nil))
- XCTAssertNoThrow(try stateMachine.closeOutbound())
- XCTAssertEqual(
- try stateMachine.nextOutboundFrame(),
- .sendFrame(frame: framedMessage, promise: nil)
- )
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- // Server sends initial metadata
- let serverInitialHeadersAction = try stateMachine.receive(
- headers: .serverInitialMetadata,
- endStream: false
- )
- XCTAssertEqual(
- serverInitialHeadersAction,
- .receivedMetadata(
- [
- ":status": "200",
- "content-type": "application/grpc",
- ],
- nil
- )
- )
- // Server sends response
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- let firstResponseBytes = [UInt8]([5, 6, 7])
- let firstResponse = try self.frameMessage(firstResponseBytes, compression: .none)
- let secondResponseBytes = [UInt8]([8, 9, 10])
- let secondResponse = try self.frameMessage(secondResponseBytes, compression: .none)
- XCTAssertEqual(
- try stateMachine.receive(buffer: firstResponse, endStream: false),
- .readInbound
- )
- XCTAssertEqual(
- try stateMachine.receive(buffer: secondResponse, endStream: false),
- .readInbound
- )
- // Make sure messages have arrived
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage(firstResponseBytes))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage(secondResponseBytes))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- // Server ends
- let metadataReceivedAction = try stateMachine.receive(
- headers: .serverTrailers,
- endStream: true
- )
- let receivedMetadata = {
- var m = Metadata(headers: .serverTrailers)
- m.removeAllValues(forKey: GRPCHTTP2Keys.grpcStatus.rawValue)
- m.removeAllValues(forKey: GRPCHTTP2Keys.grpcStatusMessage.rawValue)
- return m
- }()
- XCTAssertEqual(
- metadataReceivedAction,
- .receivedStatusAndMetadata_clientOnly(
- status: .init(code: .ok, message: ""),
- metadata: receivedMetadata
- )
- )
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- XCTAssertEqual(stateMachine.nextInboundMessage(), .noMoreMessages)
- }
- func testClientClosesBeforeServerResponds() throws {
- var stateMachine = self.makeClientStateMachine(targetState: .clientIdleServerIdle)
- // Client sends metadata
- let clientInitialMetadata = try stateMachine.send(metadata: .init())
- XCTAssertEqual(
- clientInitialMetadata,
- [
- GRPCHTTP2Keys.path.rawValue: "/test/test",
- GRPCHTTP2Keys.scheme.rawValue: "http",
- GRPCHTTP2Keys.method.rawValue: "POST",
- GRPCHTTP2Keys.contentType.rawValue: "application/grpc",
- GRPCHTTP2Keys.te.rawValue: "trailers",
- GRPCHTTP2Keys.acceptEncoding.rawValue: "deflate",
- ]
- )
- // Client sends messages
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- let message = [UInt8]([1, 2, 3, 4])
- let framedMessage = try self.frameMessage(message, compression: .none)
- try stateMachine.send(message: message, promise: nil)
- XCTAssertEqual(
- try stateMachine.nextOutboundFrame(),
- .sendFrame(frame: framedMessage, promise: nil)
- )
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- // Server sends initial metadata
- let serverInitialHeadersAction = try stateMachine.receive(
- headers: .serverInitialMetadata,
- endStream: false
- )
- XCTAssertEqual(
- serverInitialHeadersAction,
- .receivedMetadata(
- [
- ":status": "200",
- "content-type": "application/grpc",
- ],
- nil
- )
- )
- // Client closes
- XCTAssertNoThrow(try stateMachine.closeOutbound())
- // Server sends response
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- let firstResponseBytes = [UInt8]([5, 6, 7])
- let firstResponse = try self.frameMessage(firstResponseBytes, compression: .none)
- let secondResponseBytes = [UInt8]([8, 9, 10])
- let secondResponse = try self.frameMessage(secondResponseBytes, compression: .none)
- XCTAssertEqual(
- try stateMachine.receive(buffer: firstResponse, endStream: false),
- .readInbound
- )
- XCTAssertEqual(
- try stateMachine.receive(buffer: secondResponse, endStream: false),
- .readInbound
- )
- // Make sure messages have arrived
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage(firstResponseBytes))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage(secondResponseBytes))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- // Server ends
- let metadataReceivedAction = try stateMachine.receive(
- headers: .serverTrailers,
- endStream: true
- )
- let receivedMetadata = {
- var m = Metadata(headers: .serverTrailers)
- m.removeAllValues(forKey: GRPCHTTP2Keys.grpcStatus.rawValue)
- m.removeAllValues(forKey: GRPCHTTP2Keys.grpcStatusMessage.rawValue)
- return m
- }()
- XCTAssertEqual(
- metadataReceivedAction,
- .receivedStatusAndMetadata_clientOnly(
- status: .init(code: .ok, message: ""),
- metadata: receivedMetadata
- )
- )
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- XCTAssertEqual(stateMachine.nextInboundMessage(), .noMoreMessages)
- }
- }
- final class GRPCStreamServerStateMachineTests: XCTestCase {
- private func makeServerStateMachine(
- targetState: TargetStateMachineState,
- deflateCompressionEnabled: Bool = false
- ) -> GRPCStreamStateMachine {
- var stateMachine = GRPCStreamStateMachine(
- configuration: .server(
- .init(
- scheme: .http,
- acceptedEncodings: deflateCompressionEnabled ? [.deflate] : []
- )
- ),
- maxPayloadSize: 100,
- skipAssertions: true
- )
- let clientMetadata: HPACKHeaders =
- deflateCompressionEnabled
- ? .clientInitialMetadataWithDeflateCompression : .clientInitialMetadata
- switch targetState {
- case .clientIdleServerIdle:
- break
- case .clientOpenServerIdle:
- // Open client
- XCTAssertNoThrow(try stateMachine.receive(headers: clientMetadata, endStream: false))
- case .clientOpenServerOpen:
- // Open client
- XCTAssertNoThrow(try stateMachine.receive(headers: clientMetadata, endStream: false))
- // Open server
- XCTAssertNoThrow(try stateMachine.send(metadata: Metadata(headers: .serverInitialMetadata)))
- case .clientOpenServerClosed:
- // Open client
- XCTAssertNoThrow(try stateMachine.receive(headers: clientMetadata, endStream: false))
- // Open server
- XCTAssertNoThrow(try stateMachine.send(metadata: Metadata(headers: .serverInitialMetadata)))
- // Close server
- XCTAssertNoThrow(
- try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: []
- )
- )
- case .clientClosedServerIdle:
- // Open client
- XCTAssertNoThrow(try stateMachine.receive(headers: clientMetadata, endStream: false))
- // Close client
- XCTAssertNoThrow(try stateMachine.receive(buffer: .init(), endStream: true))
- case .clientClosedServerOpen:
- // Open client
- XCTAssertNoThrow(try stateMachine.receive(headers: clientMetadata, endStream: false))
- // Open server
- XCTAssertNoThrow(try stateMachine.send(metadata: Metadata(headers: .serverInitialMetadata)))
- // Close client
- XCTAssertNoThrow(try stateMachine.receive(buffer: .init(), endStream: true))
- case .clientClosedServerClosed:
- // Open client
- XCTAssertNoThrow(try stateMachine.receive(headers: clientMetadata, endStream: false))
- // Open server
- XCTAssertNoThrow(try stateMachine.send(metadata: Metadata(headers: .serverInitialMetadata)))
- // Close client
- XCTAssertNoThrow(try stateMachine.receive(buffer: .init(), endStream: true))
- // Close server
- XCTAssertNoThrow(
- try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: []
- )
- )
- }
- return stateMachine
- }
- // - MARK: Send Metadata
- func testSendMetadataWhenClientIdleAndServerIdle() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(metadata: .init())
- ) { error in
- XCTAssertEqual(
- error.message,
- "Client cannot be idle if server is sending initial metadata: it must have opened."
- )
- }
- }
- func testSendMetadataWhenClientOpenAndServerIdle() throws {
- var stateMachine = self.makeServerStateMachine(
- targetState: .clientOpenServerIdle,
- deflateCompressionEnabled: false
- )
- XCTAssertEqual(
- try stateMachine.send(metadata: .init()),
- [
- ":status": "200",
- "content-type": "application/grpc",
- ]
- )
- }
- func testSendMetadataWhenClientOpenAndServerIdle_AndCompressionEnabled() {
- // Enable deflate compression on server
- var stateMachine = self.makeServerStateMachine(
- targetState: .clientOpenServerIdle,
- deflateCompressionEnabled: true
- )
- XCTAssertEqual(
- try stateMachine.send(metadata: .init()),
- [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-encoding": "deflate",
- ]
- )
- }
- func testSendMetadataWhenClientOpenAndServerOpen() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerOpen)
- // Try sending metadata again: should throw
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(metadata: .init())
- ) { error in
- XCTAssertEqual(error.message, "Server has already sent initial metadata.")
- }
- }
- func testSendMetadataWhenClientOpenAndServerClosed() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerClosed)
- // Try sending metadata again: should throw
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(metadata: .init())
- ) { error in
- XCTAssertEqual(error.message, "Server cannot send metadata if closed.")
- }
- }
- func testSendMetadataWhenClientClosedAndServerIdle() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerIdle)
- // We should be allowed to send initial metadata if client is closed:
- // client may be finished sending request but may still be awaiting response.
- XCTAssertNoThrow(try stateMachine.send(metadata: .init()))
- }
- func testSendMetadataWhenClientClosedAndServerOpen() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerOpen)
- // Try sending metadata again: should throw
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(metadata: .init())
- ) { error in
- XCTAssertEqual(error.message, "Server has already sent initial metadata.")
- }
- }
- func testSendMetadataWhenClientClosedAndServerClosed() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerClosed)
- // Try sending metadata again: should throw
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(metadata: .init())
- ) { error in
- XCTAssertEqual(error.message, "Server cannot send metadata if closed.")
- }
- }
- // - MARK: Send Message
- func testSendMessageWhenClientIdleAndServerIdle() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(message: [], promise: nil)
- ) { error in
- XCTAssertEqual(
- error.message,
- "Server must have sent initial metadata before sending a message."
- )
- }
- }
- func testSendMessageWhenClientOpenAndServerIdle() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerIdle)
- // Now send a message
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(message: [], promise: nil)
- ) { error in
- XCTAssertEqual(
- error.message,
- "Server must have sent initial metadata before sending a message."
- )
- }
- }
- func testSendMessageWhenClientOpenAndServerOpen() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerOpen)
- // Now send a message
- XCTAssertNoThrow(try stateMachine.send(message: [], promise: nil))
- }
- func testSendMessageWhenClientOpenAndServerClosed() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerClosed)
- // Try sending another message: it should fail
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(message: [], promise: nil)
- ) { error in
- XCTAssertEqual(error.message, "Server can't send a message if it's closed.")
- }
- }
- func testSendMessageWhenClientClosedAndServerIdle() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(message: [], promise: nil)
- ) { error in
- XCTAssertEqual(
- error.message,
- "Server must have sent initial metadata before sending a message."
- )
- }
- }
- func testSendMessageWhenClientClosedAndServerOpen() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerOpen)
- // Try sending a message: even though client is closed, we should send it
- // because it may be expecting a response.
- XCTAssertNoThrow(try stateMachine.send(message: [], promise: nil))
- }
- func testSendMessageWhenClientClosedAndServerClosed() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerClosed)
- // Try sending another message: it should fail
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(message: [], promise: nil)
- ) { error in
- XCTAssertEqual(error.message, "Server can't send a message if it's closed.")
- }
- }
- // - MARK: Send Status and Trailers
- func testSendStatusAndTrailersWhenClientIdle() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: .init()
- )
- ) { error in
- XCTAssertEqual(error.message, "Server can't send status if client is idle.")
- }
- }
- func testSendStatusAndTrailersWhenClientOpenAndServerIdle() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerIdle)
- let trailers = try stateMachine.send(
- status: .init(code: .unknown, message: "RPC unknown"),
- metadata: .init()
- )
- // Make sure it's a trailers-only response: it must have :status header and content-type
- XCTAssertEqual(
- trailers,
- [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-status": "2",
- "grpc-message": "RPC unknown",
- ]
- )
- // Try sending another message: it should fail because server is now closed.
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(message: [], promise: nil)
- ) { error in
- XCTAssertEqual(error.message, "Server can't send a message if it's closed.")
- }
- }
- func testSendStatusAndTrailersWhenClientOpenAndServerOpen() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerOpen)
- let trailers = try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: .init()
- )
- // Make sure it's NOT a trailers-only response, because the server was
- // already open (so it sent initial metadata): it shouldn't have :status or content-type headers
- XCTAssertEqual(trailers, ["grpc-status": "0"])
- // Try sending another message: it should fail because server is now closed.
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(message: [], promise: nil)
- ) { error in
- XCTAssertEqual(error.message, "Server can't send a message if it's closed.")
- }
- }
- func testSendStatusAndTrailersWhenClientOpenAndServerClosed() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerClosed)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: .init()
- )
- ) { error in
- XCTAssertEqual(error.message, "Server can't send anything if closed.")
- }
- }
- func testSendStatusAndTrailersWhenClientClosedAndServerIdle() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerIdle)
- let trailers = try stateMachine.send(
- status: .init(code: .unknown, message: "RPC unknown"),
- metadata: .init()
- )
- // Make sure it's a trailers-only response: it must have :status header and content-type
- XCTAssertEqual(
- trailers,
- [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-status": "2",
- "grpc-message": "RPC unknown",
- ]
- )
- // Try sending another message: it should fail because server is now closed.
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(message: [], promise: nil)
- ) { error in
- XCTAssertEqual(error.message, "Server can't send a message if it's closed.")
- }
- }
- func testSendStatusAndTrailersWhenClientClosedAndServerOpen() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerOpen)
- let trailers = try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: .init()
- )
- // Make sure it's NOT a trailers-only response, because the server was
- // already open (so it sent initial metadata): it shouldn't have :status or content-type headers
- XCTAssertEqual(trailers, ["grpc-status": "0"])
- // Try sending another message: it should fail because server is now closed.
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(message: [], promise: nil)
- ) { error in
- XCTAssertEqual(error.message, "Server can't send a message if it's closed.")
- }
- }
- func testSendStatusAndTrailersWhenClientClosedAndServerClosed() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerClosed)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: .init()
- )
- ) { error in
- XCTAssertEqual(error.message, "Server can't send anything if closed.")
- }
- }
- // - MARK: Receive metadata
- func testReceiveMetadataWhenClientIdleAndServerIdle() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- let action = try stateMachine.receive(headers: .clientInitialMetadata, endStream: false)
- XCTAssertEqual(
- action,
- .receivedMetadata(
- Metadata(headers: .clientInitialMetadata),
- MethodDescriptor(path: "/test/test")
- )
- )
- }
- func testReceiveMetadataWhenClientIdleAndServerIdle_WithEndStream() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- let action = try stateMachine.receive(headers: .clientInitialMetadata, endStream: true)
- XCTAssertEqual(
- action,
- .receivedMetadata(
- Metadata(headers: .clientInitialMetadata),
- MethodDescriptor(path: "/test/test")
- )
- )
- }
- func testReceiveMetadataWhenClientIdleAndServerIdle_MissingContentType() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- let action = try stateMachine.receive(
- headers: .receivedWithoutContentType,
- endStream: false
- )
- self.assertRejectedRPC(action) { trailers in
- XCTAssertEqual(trailers.count, 1)
- XCTAssertEqual(trailers.firstString(forKey: .status), "415")
- }
- }
- func testReceiveMetadataWhenClientIdleAndServerIdle_InvalidContentType() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- let action = try stateMachine.receive(
- headers: .receivedWithInvalidContentType,
- endStream: false
- )
- self.assertRejectedRPC(action) { trailers in
- XCTAssertEqual(trailers.count, 1)
- XCTAssertEqual(trailers.firstString(forKey: .status), "415")
- }
- }
- func testReceiveMetadataWhenClientIdleAndServerIdle_MissingPath() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- let action = try stateMachine.receive(
- headers: .receivedWithoutEndpoint,
- endStream: false
- )
- self.assertRejectedRPC(action) { trailers in
- XCTAssertEqual(
- trailers,
- [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-status": String(Status.Code.invalidArgument.rawValue),
- "grpc-message": "No :path header has been set.",
- ]
- )
- }
- }
- func testReceiveMetadataWhenClientIdleAndServerIdle_InvalidPath() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- let action = try stateMachine.receive(
- headers: .receivedWithInvalidPath,
- endStream: false
- )
- self.assertRejectedRPC(action) { trailers in
- XCTAssertEqual(
- trailers,
- [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-status": String(Status.Code.unimplemented.rawValue),
- "grpc-message":
- "The given :path (someinvalidpath) does not correspond to a valid method.",
- ]
- )
- }
- }
- func testReceiveMetadataWhenClientIdleAndServerIdle_MissingTE() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- let action = try stateMachine.receive(
- headers: .receivedWithoutTE,
- endStream: false
- )
- let metadata: Metadata = [
- ":path": "/test/test",
- ":scheme": "http",
- ":method": "POST",
- "content-type": "application/grpc",
- ]
- let descriptor = MethodDescriptor(service: "test", method: "test")
- XCTAssertEqual(action, .receivedMetadata(metadata, descriptor))
- }
- func testReceiveMetadataWhenClientIdleAndServerIdle_MissingMethod() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- let action = try stateMachine.receive(
- headers: .receivedWithoutMethod,
- endStream: false
- )
- self.assertRejectedRPC(action) { trailers in
- XCTAssertEqual(
- trailers,
- [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-status": "3",
- "grpc-message":
- ":method header is expected to be present and have a value of \"POST\".",
- ]
- )
- }
- }
- func testReceiveMetadataWhenClientIdleAndServerIdle_InvalidMethod() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- let action = try stateMachine.receive(
- headers: .receivedWithInvalidMethod,
- endStream: false
- )
- self.assertRejectedRPC(action) { trailers in
- XCTAssertEqual(
- trailers,
- [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-status": "3",
- "grpc-message":
- ":method header is expected to be present and have a value of \"POST\".",
- ]
- )
- }
- }
- func testReceiveMetadataWhenClientIdleAndServerIdle_MissingScheme() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- let action = try stateMachine.receive(
- headers: .receivedWithoutScheme,
- endStream: false
- )
- self.assertRejectedRPC(action) { trailers in
- XCTAssertEqual(
- trailers,
- [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-status": "3",
- "grpc-message": ":scheme header must be present and one of \"http\" or \"https\".",
- ]
- )
- }
- }
- func testReceiveMetadataWhenClientIdleAndServerIdle_InvalidScheme() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- let action = try stateMachine.receive(
- headers: .receivedWithInvalidScheme,
- endStream: false
- )
- self.assertRejectedRPC(action) { trailers in
- XCTAssertEqual(
- trailers,
- [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-status": "3",
- "grpc-message": ":scheme header must be present and one of \"http\" or \"https\".",
- ]
- )
- }
- }
- func testReceiveMetadataWhenClientIdleAndServerIdle_ServerUnsupportedEncoding() throws {
- var stateMachine = self.makeServerStateMachine(
- targetState: .clientIdleServerIdle,
- deflateCompressionEnabled: true
- )
- // Try opening client with a compression algorithm that is not accepted
- // by the server.
- let action = try stateMachine.receive(
- headers: .clientInitialMetadataWithGzipCompression,
- endStream: false
- )
- self.assertRejectedRPC(action) { trailers in
- let expected: HPACKHeaders = [
- ":status": "200",
- "content-type": "application/grpc",
- "grpc-status": "12",
- "grpc-message":
- "gzip compression is not supported; supported algorithms are listed in grpc-accept-encoding",
- "grpc-accept-encoding": "deflate",
- "grpc-accept-encoding": "identity",
- ]
- XCTAssertEqual(expected.count, trailers.count, "Expected \(expected) but got \(trailers)")
- for header in trailers {
- XCTAssertTrue(
- expected.contains { name, value, _ in
- header.name == name && header.value == header.value
- }
- )
- }
- }
- }
- func testReceiveMetadataWhenClientOpenAndServerIdle() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerIdle)
- // Try receiving initial metadata again - should be a protocol violation
- let action = try stateMachine.receive(headers: .clientInitialMetadata, endStream: false)
- XCTAssertEqual(action, .protocolViolation_serverOnly)
- }
- func testReceiveMetadataWhenClientOpenAndServerOpen() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerOpen)
- let action = try stateMachine.receive(headers: .clientInitialMetadata, endStream: false)
- XCTAssertEqual(action, .protocolViolation_serverOnly)
- }
- func testReceiveMetadataWhenClientOpenAndServerClosed() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerClosed)
- let action = try stateMachine.receive(headers: .clientInitialMetadata, endStream: false)
- XCTAssertEqual(action, .protocolViolation_serverOnly)
- }
- func testReceiveMetadataWhenClientClosedAndServerIdle() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(headers: .clientInitialMetadata, endStream: false)
- ) { error in
- XCTAssertEqual(error.message, "Client can't have sent metadata if closed.")
- }
- }
- func testReceiveMetadataWhenClientClosedAndServerOpen() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerOpen)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(headers: .clientInitialMetadata, endStream: false)
- ) { error in
- XCTAssertEqual(error.message, "Client can't have sent metadata if closed.")
- }
- }
- func testReceiveMetadataWhenClientClosedAndServerClosed() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerClosed)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(headers: .clientInitialMetadata, endStream: false)
- ) { error in
- XCTAssertEqual(error.message, "Client can't have sent metadata if closed.")
- }
- }
- // - MARK: Receive message
- func testReceiveMessageWhenClientIdleAndServerIdle() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(buffer: .init(), endStream: false)
- ) { error in
- XCTAssertEqual(error.message, "Can't have received a message if client is idle.")
- }
- }
- func testReceiveMessageWhenClientOpenAndServerIdle() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerIdle)
- // Receive messages successfully: the second one should close client.
- XCTAssertNoThrow(try stateMachine.receive(buffer: .init(), endStream: false))
- XCTAssertNoThrow(try stateMachine.receive(buffer: .init(), endStream: true))
- // Verify client is now closed
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(buffer: .init(), endStream: false)
- ) { error in
- XCTAssertEqual(error.message, "Client can't send a message if closed.")
- }
- }
- func testReceiveMessageWhenClientOpenAndServerOpen() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerOpen)
- // Receive messages successfully: the second one should close client.
- XCTAssertNoThrow(try stateMachine.receive(buffer: .init(), endStream: false))
- XCTAssertNoThrow(try stateMachine.receive(buffer: .init(), endStream: true))
- // Verify client is now closed
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(buffer: .init(), endStream: false)
- ) { error in
- XCTAssertEqual(error.message, "Client can't send a message if closed.")
- }
- }
- func testReceiveMessage_ServerCompressionEnabled() throws {
- // Enable deflate compression on server
- var stateMachine = self.makeServerStateMachine(
- targetState: .clientOpenServerOpen,
- deflateCompressionEnabled: true
- )
- let originalMessage = [UInt8]([42, 42, 43, 43])
- // Receiving uncompressed message should still work.
- let receivedUncompressedBytes = try self.frameMessage(originalMessage, compression: .none)
- XCTAssertNoThrow(try stateMachine.receive(buffer: receivedUncompressedBytes, endStream: false))
- var receivedAction = stateMachine.nextInboundMessage()
- switch receivedAction {
- case .noMoreMessages, .awaitMoreMessages:
- XCTFail("Should have received message")
- case .receiveMessage(let receivedMessaged):
- XCTAssertEqual(originalMessage, receivedMessaged)
- }
- // Receiving compressed message with deflate should work
- let receivedDeflateCompressedBytes = try self.frameMessage(
- originalMessage,
- compression: .deflate
- )
- XCTAssertNoThrow(
- try stateMachine.receive(buffer: receivedDeflateCompressedBytes, endStream: false)
- )
- receivedAction = stateMachine.nextInboundMessage()
- switch receivedAction {
- case .noMoreMessages, .awaitMoreMessages:
- XCTFail("Should have received message")
- case .receiveMessage(let receivedMessaged):
- XCTAssertEqual(originalMessage, receivedMessaged)
- }
- // Receiving compressed message with gzip (unsupported) should throw error
- let receivedGZIPCompressedBytes = try self.frameMessage(originalMessage, compression: .gzip)
- let action = try stateMachine.receive(buffer: receivedGZIPCompressedBytes, endStream: false)
- XCTAssertEqual(
- action,
- .forwardErrorAndClose_serverOnly(
- RPCError(code: .internalError, message: "Failed to decode message")
- )
- )
- receivedAction = stateMachine.nextInboundMessage()
- switch receivedAction {
- case .awaitMoreMessages:
- ()
- case .noMoreMessages:
- XCTFail("Should be awaiting for more messages")
- case .receiveMessage:
- XCTFail("Should not have received message")
- }
- }
- func testReceiveMessageWhenClientOpenAndServerClosed() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerClosed)
- // Client is not done sending request, don't fail.
- XCTAssertEqual(try stateMachine.receive(buffer: ByteBuffer(), endStream: false), .doNothing)
- }
- func testReceiveMessageWhenClientClosedAndServerIdle() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(buffer: .init(), endStream: false)
- ) { error in
- XCTAssertEqual(error.message, "Client can't send a message if closed.")
- }
- }
- func testReceiveMessageWhenClientClosedAndServerOpen() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerOpen)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(buffer: .init(), endStream: false)
- ) { error in
- XCTAssertEqual(error.message, "Client can't send a message if closed.")
- }
- }
- func testReceiveMessageWhenClientClosedAndServerClosed() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerClosed)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.receive(buffer: .init(), endStream: false)
- ) { error in
- XCTAssertEqual(error.message, "Client can't send a message if closed.")
- }
- }
- // - MARK: Next outbound message
- func testNextOutboundMessageWhenClientIdleAndServerIdle() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.nextOutboundFrame()
- ) { error in
- XCTAssertEqual(error.message, "Server is not open yet.")
- }
- }
- func testNextOutboundMessageWhenClientOpenAndServerIdle() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.nextOutboundFrame()
- ) { error in
- XCTAssertEqual(error.message, "Server is not open yet.")
- }
- }
- func testNextOutboundMessageWhenClientOpenAndServerIdle_WithCompression() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.nextOutboundFrame()
- ) { error in
- XCTAssertEqual(error.message, "Server is not open yet.")
- }
- }
- func testNextOutboundMessageWhenClientOpenAndServerOpen() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerOpen)
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- XCTAssertNoThrow(try stateMachine.send(message: [42, 42], promise: nil))
- let response = try stateMachine.nextOutboundFrame()
- let expectedBytes: [UInt8] = [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ]
- XCTAssertEqual(response, .sendFrame(frame: ByteBuffer(bytes: expectedBytes), promise: nil))
- // And then make sure that nothing else is returned
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- }
- func testNextOutboundMessageWhenClientOpenAndServerOpen_WithCompression() throws {
- var stateMachine = self.makeServerStateMachine(
- targetState: .clientOpenServerOpen,
- deflateCompressionEnabled: true
- )
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- let originalMessage = [UInt8]([42, 42, 43, 43])
- XCTAssertNoThrow(try stateMachine.send(message: originalMessage, promise: nil))
- let response = try stateMachine.nextOutboundFrame()
- let framedMessage = try self.frameMessage(originalMessage, compression: .deflate)
- XCTAssertEqual(response, .sendFrame(frame: framedMessage, promise: nil))
- }
- func testNextOutboundMessageWhenClientOpenAndServerClosed() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerOpen)
- // Send message and close server
- XCTAssertNoThrow(try stateMachine.send(message: [42, 42], promise: nil))
- XCTAssertNoThrow(
- try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: []
- )
- )
- let response = try stateMachine.nextOutboundFrame()
- let expectedBytes: [UInt8] = [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ]
- XCTAssertEqual(response, .sendFrame(frame: ByteBuffer(bytes: expectedBytes), promise: nil))
- // And then make sure that nothing else is returned anymore
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- }
- func testNextOutboundMessageWhenClientClosedAndServerIdle() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerIdle)
- XCTAssertThrowsError(
- ofType: GRPCStreamStateMachine.InvalidState.self,
- try stateMachine.nextOutboundFrame()
- ) { error in
- XCTAssertEqual(error.message, "Server is not open yet.")
- }
- }
- func testNextOutboundMessageWhenClientClosedAndServerOpen() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerOpen)
- // Send a message
- XCTAssertNoThrow(try stateMachine.send(message: [42, 42], promise: nil))
- // Close client
- XCTAssertNoThrow(try stateMachine.receive(buffer: .init(), endStream: true))
- // Send another message
- XCTAssertNoThrow(try stateMachine.send(message: [43, 43], promise: nil))
- // Make sure that getting the next outbound message _does_ return the message
- // we have enqueued.
- let response = try stateMachine.nextOutboundFrame()
- let expectedBytes: [UInt8] = [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- // End of first message - beginning of second
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 43, 43, // original message
- ]
- XCTAssertEqual(response, .sendFrame(frame: ByteBuffer(bytes: expectedBytes), promise: nil))
- // And then make sure that nothing else is returned anymore
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- }
- func testNextOutboundMessageWhenClientClosedAndServerClosed() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientClosedServerOpen)
- // Send a message and close server
- XCTAssertNoThrow(try stateMachine.send(message: [42, 42], promise: nil))
- XCTAssertNoThrow(
- try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: []
- )
- )
- // We have enqueued a message, make sure we return it even though server is closed,
- // because we haven't yet drained all of the pending messages.
- let response = try stateMachine.nextOutboundFrame()
- let expectedBytes: [UInt8] = [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ]
- XCTAssertEqual(response, .sendFrame(frame: ByteBuffer(bytes: expectedBytes), promise: nil))
- // And then make sure that nothing else is returned anymore
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- }
- // - MARK: Next inbound message
- func testNextInboundMessageWhenClientIdleAndServerIdle() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- }
- func testNextInboundMessageWhenClientOpenAndServerIdle() {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerIdle)
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- }
- func testNextInboundMessageWhenClientOpenAndServerOpen() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerOpen)
- let receivedBytes = ByteBuffer(bytes: [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ])
- XCTAssertEqual(
- try stateMachine.receive(buffer: receivedBytes, endStream: false),
- .readInbound
- )
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage([42, 42]))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- }
- func testNextInboundMessageWhenClientOpenAndServerOpen_WithCompression() throws {
- var stateMachine = self.makeServerStateMachine(
- targetState: .clientOpenServerOpen,
- deflateCompressionEnabled: true
- )
- let originalMessage = [UInt8]([42, 42, 43, 43])
- let receivedBytes = try self.frameMessage(originalMessage, compression: .deflate)
- XCTAssertEqual(
- try stateMachine.receive(buffer: receivedBytes, endStream: false),
- .readInbound
- )
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage(originalMessage))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- }
- func testNextInboundMessageWhenClientOpenAndServerClosed() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerOpen)
- let receivedBytes = ByteBuffer(bytes: [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ])
- XCTAssertEqual(
- try stateMachine.receive(buffer: receivedBytes, endStream: false),
- .readInbound
- )
- // Close server
- XCTAssertNoThrow(
- try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: []
- )
- )
- XCTAssertEqual(stateMachine.nextInboundMessage(), .noMoreMessages)
- }
- func testNextInboundMessageWhenClientClosedAndServerIdle() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerIdle)
- let action = try stateMachine.receive(
- buffer: ByteBuffer(repeating: 0, count: 5),
- endStream: true
- )
- XCTAssertEqual(action, .readInbound)
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage([]))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .noMoreMessages)
- }
- func testNextInboundMessageWhenClientClosedAndServerOpen() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerOpen)
- let receivedBytes = ByteBuffer(bytes: [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ])
- XCTAssertEqual(
- try stateMachine.receive(buffer: receivedBytes, endStream: false),
- .readInbound
- )
- // Close client
- XCTAssertNoThrow(try stateMachine.receive(buffer: .init(), endStream: true))
- // Even though the client is closed, because the server received a message
- // while it was still open, we must get the message now.
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage([42, 42]))
- XCTAssertEqual(stateMachine.nextInboundMessage(), .noMoreMessages)
- }
- func testNextInboundMessageWhenClientClosedAndServerClosed() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientOpenServerOpen)
- let receivedBytes = ByteBuffer(bytes: [
- 0, // compression flag: unset
- 0, 0, 0, 2, // message length: 2 bytes
- 42, 42, // original message
- ])
- XCTAssertEqual(
- try stateMachine.receive(buffer: receivedBytes, endStream: false),
- .readInbound
- )
- // Close server
- XCTAssertNoThrow(
- try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: []
- )
- )
- // Close client
- XCTAssertNoThrow(try stateMachine.receive(buffer: .init(), endStream: true))
- // The server is closed, the message should be dropped.
- XCTAssertEqual(stateMachine.nextInboundMessage(), .noMoreMessages)
- }
- // - MARK: Unexpected close
- func testUnexpectedCloseWhenClientIdleOrOpen() throws {
- let reasonAndExpectedErrorPairs = [
- (
- GRPCStreamStateMachine.UnexpectedInboundCloseReason.channelInactive,
- RPCError(code: .unavailable, message: "Stream unexpectedly closed.")
- ),
- (
- GRPCStreamStateMachine.UnexpectedInboundCloseReason.streamReset,
- RPCError(
- code: .unavailable,
- message: "Stream unexpectedly closed: a RST_STREAM frame was received."
- )
- ),
- (
- GRPCStreamStateMachine.UnexpectedInboundCloseReason.errorThrown(
- RPCError(code: .deadlineExceeded, message: "Test error")
- ),
- RPCError(code: .deadlineExceeded, message: "Test error")
- ),
- ]
- let states = [
- TargetStateMachineState.clientIdleServerIdle,
- .clientOpenServerIdle,
- .clientOpenServerOpen,
- .clientOpenServerClosed,
- ]
- for state in states {
- for (closeReason, expectedError) in reasonAndExpectedErrorPairs {
- var stateMachine = self.makeServerStateMachine(targetState: state)
- var action = stateMachine.unexpectedInboundClose(reason: closeReason)
- guard case .fireError_serverOnly(let error) = action else {
- XCTFail("Should have been `fireError` but was `\(action)` (state: \(state)).")
- return
- }
- XCTAssertEqual(error as? RPCError, expectedError)
- // Calling unexpectedInboundClose again should return `doNothing` because
- // we're already closed.
- action = stateMachine.unexpectedInboundClose(reason: closeReason)
- guard case .doNothing = action else {
- XCTFail("Should have been `doNothing` but was `\(action)` (state: \(state)).")
- return
- }
- }
- }
- }
- func testUnexpectedCloseWhenClientClosed() throws {
- let closeReasons = [
- GRPCStreamStateMachine.UnexpectedInboundCloseReason.channelInactive,
- .streamReset,
- .errorThrown(RPCError(code: .deadlineExceeded, message: "Test error")),
- ]
- let states = [
- TargetStateMachineState.clientClosedServerIdle,
- .clientClosedServerOpen,
- .clientClosedServerClosed,
- ]
- for state in states {
- for closeReason in closeReasons {
- var stateMachine = self.makeServerStateMachine(targetState: state)
- var action = stateMachine.unexpectedInboundClose(reason: closeReason)
- guard case .doNothing = action else {
- XCTFail("Should have been `doNothing` but was `\(action)` (state: \(state)).")
- return
- }
- // Calling unexpectedInboundClose again should return `doNothing` again.
- action = stateMachine.unexpectedInboundClose(reason: closeReason)
- guard case .doNothing = action else {
- XCTFail("Should have been `doNothing` but was `\(action)` (state: \(state)).")
- return
- }
- }
- }
- }
- // - MARK: Common paths
- func testNormalFlow() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- // Client sends metadata
- let receiveMetadataAction = try stateMachine.receive(
- headers: .clientInitialMetadata,
- endStream: false
- )
- XCTAssertEqual(
- receiveMetadataAction,
- .receivedMetadata(
- Metadata(headers: .clientInitialMetadata),
- MethodDescriptor(path: "/test/test")
- )
- )
- // Server sends initial metadata
- let sentInitialHeaders = try stateMachine.send(metadata: Metadata(headers: ["custom": "value"]))
- XCTAssertEqual(
- sentInitialHeaders,
- [
- ":status": "200",
- "content-type": "application/grpc",
- "custom": "value",
- ]
- )
- // Client sends messages
- let deframedMessage = [UInt8]([1, 2, 3, 4])
- let completeMessage = try self.frameMessage(deframedMessage, compression: .none)
- // Split message into two parts to make sure the stitching together of the frames works well
- let firstMessage = completeMessage.getSlice(at: 0, length: 4)!
- let secondMessage = completeMessage.getSlice(at: 4, length: completeMessage.readableBytes - 4)!
- XCTAssertEqual(
- try stateMachine.receive(buffer: firstMessage, endStream: false),
- .readInbound
- )
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- XCTAssertEqual(
- try stateMachine.receive(buffer: secondMessage, endStream: false),
- .readInbound
- )
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage(deframedMessage))
- // Server sends response
- let eventLoop = EmbeddedEventLoop()
- let firstPromise = eventLoop.makePromise(of: Void.self)
- let secondPromise = eventLoop.makePromise(of: Void.self)
- let firstResponse = [UInt8]([5, 6, 7])
- let secondResponse = [UInt8]([8, 9, 10])
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- try stateMachine.send(message: firstResponse, promise: firstPromise)
- try stateMachine.send(message: secondResponse, promise: secondPromise)
- // Make sure messages are outbound
- let framedMessages = try self.frameMessages(
- [firstResponse, secondResponse],
- compression: .none
- )
- guard
- case .sendFrame(let nextOutboundByteBuffer, let nextOutboundPromise) =
- try stateMachine.nextOutboundFrame()
- else {
- XCTFail("Should have received .sendMessage")
- return
- }
- XCTAssertEqual(nextOutboundByteBuffer, framedMessages)
- XCTAssertTrue(firstPromise.futureResult === nextOutboundPromise?.futureResult)
- // Make sure that the promises associated with each sent message are chained
- // together: when succeeding the one returned by the state machine on
- // `nextOutboundMessage()`, the others should also be succeeded.
- firstPromise.succeed()
- try secondPromise.futureResult.assertSuccess().wait()
- // Client sends end
- XCTAssertEqual(
- try stateMachine.receive(buffer: ByteBuffer(), endStream: true),
- .readInbound
- )
- // Server ends
- let response = try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: []
- )
- XCTAssertEqual(response, ["grpc-status": "0"])
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- XCTAssertEqual(stateMachine.nextInboundMessage(), .noMoreMessages)
- }
- func testClientClosesBeforeServerOpens() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- // Client sends metadata
- let receiveMetadataAction = try stateMachine.receive(
- headers: .clientInitialMetadata,
- endStream: false
- )
- XCTAssertEqual(
- receiveMetadataAction,
- .receivedMetadata(
- Metadata(headers: .clientInitialMetadata),
- MethodDescriptor(path: "/test/test")
- )
- )
- // Client sends messages
- let deframedMessage = [UInt8]([1, 2, 3, 4])
- let completeMessage = try self.frameMessage(deframedMessage, compression: .none)
- // Split message into two parts to make sure the stitching together of the frames works well
- let firstMessage = completeMessage.getSlice(at: 0, length: 4)!
- let secondMessage = completeMessage.getSlice(at: 4, length: completeMessage.readableBytes - 4)!
- XCTAssertEqual(
- try stateMachine.receive(buffer: firstMessage, endStream: false),
- .readInbound
- )
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- XCTAssertEqual(
- try stateMachine.receive(buffer: secondMessage, endStream: false),
- .readInbound
- )
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage(deframedMessage))
- // Client sends end
- XCTAssertEqual(
- try stateMachine.receive(buffer: ByteBuffer(), endStream: true),
- .readInbound
- )
- // Server sends initial metadata
- let sentInitialHeaders = try stateMachine.send(metadata: Metadata(headers: ["custom": "value"]))
- XCTAssertEqual(
- sentInitialHeaders,
- [
- "custom": "value",
- ":status": "200",
- "content-type": "application/grpc",
- ]
- )
- // Server sends response
- let firstResponse = [UInt8]([5, 6, 7])
- let secondResponse = [UInt8]([8, 9, 10])
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- try stateMachine.send(message: firstResponse, promise: nil)
- try stateMachine.send(message: secondResponse, promise: nil)
- // Make sure messages are outbound
- let framedMessages = try self.frameMessages(
- [firstResponse, secondResponse],
- compression: .none
- )
- XCTAssertEqual(
- try stateMachine.nextOutboundFrame(),
- .sendFrame(frame: framedMessages, promise: nil)
- )
- // Server ends
- let response = try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: []
- )
- XCTAssertEqual(response, ["grpc-status": "0"])
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- XCTAssertEqual(stateMachine.nextInboundMessage(), .noMoreMessages)
- }
- func testClientClosesBeforeServerResponds() throws {
- var stateMachine = self.makeServerStateMachine(targetState: .clientIdleServerIdle)
- // Client sends metadata
- let receiveMetadataAction = try stateMachine.receive(
- headers: .clientInitialMetadata,
- endStream: false
- )
- XCTAssertEqual(
- receiveMetadataAction,
- .receivedMetadata(
- Metadata(headers: .clientInitialMetadata),
- MethodDescriptor(path: "/test/test")
- )
- )
- // Client sends messages
- let deframedMessage = [UInt8]([1, 2, 3, 4])
- let completeMessage = try self.frameMessage(deframedMessage, compression: .none)
- // Split message into two parts to make sure the stitching together of the frames works well
- let firstMessage = completeMessage.getSlice(at: 0, length: 4)!
- let secondMessage = completeMessage.getSlice(at: 4, length: completeMessage.readableBytes - 4)!
- XCTAssertEqual(
- try stateMachine.receive(buffer: firstMessage, endStream: false),
- .readInbound
- )
- XCTAssertEqual(stateMachine.nextInboundMessage(), .awaitMoreMessages)
- XCTAssertEqual(
- try stateMachine.receive(buffer: secondMessage, endStream: false),
- .readInbound
- )
- XCTAssertEqual(stateMachine.nextInboundMessage(), .receiveMessage(deframedMessage))
- // Server sends initial metadata
- let sentInitialHeaders = try stateMachine.send(metadata: Metadata(headers: ["custom": "value"]))
- XCTAssertEqual(
- sentInitialHeaders,
- [
- "custom": "value",
- ":status": "200",
- "content-type": "application/grpc",
- ]
- )
- // Client sends end
- XCTAssertEqual(
- try stateMachine.receive(buffer: ByteBuffer(), endStream: true),
- .readInbound
- )
- // Server sends response
- let firstResponse = [UInt8]([5, 6, 7])
- let secondResponse = [UInt8]([8, 9, 10])
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .awaitMoreMessages)
- try stateMachine.send(message: firstResponse, promise: nil)
- try stateMachine.send(message: secondResponse, promise: nil)
- // Make sure messages are outbound
- let framedMessages = try self.frameMessages(
- [firstResponse, secondResponse],
- compression: .none
- )
- XCTAssertEqual(
- try stateMachine.nextOutboundFrame(),
- .sendFrame(frame: framedMessages, promise: nil)
- )
- // Server ends
- let response = try stateMachine.send(
- status: .init(code: .ok, message: ""),
- metadata: []
- )
- XCTAssertEqual(response, ["grpc-status": "0"])
- XCTAssertEqual(try stateMachine.nextOutboundFrame(), .noMoreMessages)
- XCTAssertEqual(stateMachine.nextInboundMessage(), .noMoreMessages)
- }
- }
- extension XCTestCase {
- func assertRejectedRPC(
- _ action: GRPCStreamStateMachine.OnMetadataReceived,
- expression: (HPACKHeaders) throws -> Void
- ) rethrows {
- guard case .rejectRPC_serverOnly(let trailers) = action else {
- XCTFail("RPC should have been rejected.")
- return
- }
- try expression(trailers)
- }
- func frameMessage(_ message: [UInt8], compression: CompressionAlgorithm) throws -> ByteBuffer {
- try frameMessages([message], compression: compression)
- }
- func frameMessages(_ messages: [[UInt8]], compression: CompressionAlgorithm) throws -> ByteBuffer
- {
- var framer = GRPCMessageFramer()
- let compressor: Zlib.Compressor? = {
- switch compression {
- case .deflate:
- return Zlib.Compressor(method: .deflate)
- case .gzip:
- return Zlib.Compressor(method: .gzip)
- default:
- return nil
- }
- }()
- defer { compressor?.end() }
- for message in messages {
- framer.append(message, promise: nil)
- }
- return try XCTUnwrap(framer.next(compressor: compressor)).bytes
- }
- }
- extension GRPCStreamStateMachine.OnNextOutboundFrame {
- static func == (
- lhs: GRPCStreamStateMachine.OnNextOutboundFrame,
- rhs: GRPCStreamStateMachine.OnNextOutboundFrame
- ) -> Bool {
- switch (lhs, rhs) {
- case (.noMoreMessages, .noMoreMessages):
- return true
- case (.awaitMoreMessages, .awaitMoreMessages):
- return true
- case (.sendFrame(let lhsMessage, _), .sendFrame(let rhsMessage, _)):
- // Note that we're not comparing the EventLoopPromises here, as they're
- // not Equatable. This is fine though, since we only use this in tests.
- return lhsMessage == rhsMessage
- default:
- return false
- }
- }
- }
- extension GRPCStreamStateMachine.OnNextOutboundFrame: Equatable {}
|