You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have read the OHHTTPStubs wiki to see if there wasn't a detailed page talking about my issue
Environment
version of OHHTTPStubs: 9.1.0
integration method you are using:
Cocoapods
Carthage
submodule
other Swift Package Manager
version of the tool you use: Uhh....package tools version 5.6
Issue Description
I am attempting to use this to test a Server-Sent Events implementation. That particular protocol likes to send data in chunks of varying sizes as it streams, example:
id: 1
data: This
data: is
data: a
data: sentence
data: .
OHHTTPStubs at the moment doesn't seem to expose a way to send partial responses back as part of the stream. Specifically, what I need is the URLSessionDataDelegate to have its urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) method called with each sent event.
An ideal solution in my mind would be to allow me to pass an array of Data to the response and have it work out the rest, but honestly I'd be up for anything that worked.
The text was updated successfully, but these errors were encountered:
New Issue Checklist
OHHTTPStubs
for your project sectionEnvironment
Issue Description
I am attempting to use this to test a Server-Sent Events implementation. That particular protocol likes to send data in chunks of varying sizes as it streams, example:
OHHTTPStubs at the moment doesn't seem to expose a way to send partial responses back as part of the stream. Specifically, what I need is the URLSessionDataDelegate to have its
urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data)
method called with each sent event.An ideal solution in my mind would be to allow me to pass an array of
Data
to the response and have it work out the rest, but honestly I'd be up for anything that worked.The text was updated successfully, but these errors were encountered: