Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Response Headers #908

Merged
merged 8 commits into from
May 21, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add one header test function
  • Loading branch information
iNoles committed May 20, 2024
commit d140ec8ff34520037014706ad3b84c3a499b69a4
11 changes: 11 additions & 0 deletions fuel/src/jvmTest/kotlin/fuel/HttpLoaderBuilderTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,17 @@ internal class HttpLoaderBuilderTest {
mockWebServer.shutdown()
}

@Test
fun `default okhttp settings with headers`() = runBlocking {
mockWebServer.enqueue(MockResponse().setBody("Hello World"))
val response = JVMHttpLoader().get {
url = mockWebServer.url("hello").toString()
}.headers
assertEquals("1", response["Content-Length"])

mockWebServer.shutdown()
}

@Test
fun `setting connect timeouts`() = runBlocking {
mockWebServer.enqueue(MockResponse().setBody("Hello World"))
Expand Down
Loading