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

Use OkHttp client in instrumentation app #1711

Merged
merged 5 commits into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion packages/patrol/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ android {

implementation platform("org.http4k:http4k-bom:5.7.4.0")
implementation "org.http4k:http4k-core"
implementation "org.http4k:http4k-client-apache"
implementation "com.squareup.okhttp:okhttp:2.7.5" // See https://github.com/square/okhttp/issues/8031
implementation "org.http4k:http4k-server-ktorcio"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-guava:1.5.2"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package pl.leancode.patrol

import org.apache.hc.core5.util.Timeout
import pl.leancode.patrol.contracts.Contracts
import pl.leancode.patrol.contracts.PatrolAppServiceClientException
import java.util.concurrent.TimeUnit
import pl.leancode.patrol.contracts.PatrolAppServiceClient as Client

/**
Expand All @@ -13,15 +13,16 @@ class PatrolAppServiceClient {
private var client: Client

// https://github.com/leancodepl/patrol/issues/1683
private val timeout = Timeout.ofHours(2)
private val timeout = 2L
private val timeUnit = TimeUnit.HOURS

constructor() {
client = Client(address = "localhost", port = 8082, timeout = timeout)
client = Client(address = "localhost", port = 8082, timeout = timeout, timeUnit = timeUnit)
Logger.i("Created PatrolAppServiceClient: ${client.serverUrl}")
}

constructor(address: String) {
client = Client(address = address, port = 8082, timeout = timeout)
client = Client(address = address, port = 8082, timeout = timeout, timeUnit = timeUnit)
Logger.i("Created PatrolAppServiceClient: ${client.serverUrl}")
}

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions packages/patrol/example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ android {
kotlinOptions {
jvmTarget = "1.8"
}

// TODO: Find workaround
packagingOptions {
pickFirst "META-INF/DEPENDENCIES"
}

sourceSets {
main.java.srcDirs += "src/main/kotlin"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,13 @@ class AndroidHttp4kClientGenerator {
package ${config.package};
import com.squareup.okhttp.MediaType
import com.squareup.okhttp.OkHttpClient
import com.squareup.okhttp.Request
import com.squareup.okhttp.RequestBody
import kotlinx.serialization.encodeToString
import kotlinx.serialization.json.Json
import org.apache.hc.client5.http.config.RequestConfig
import org.apache.hc.client5.http.impl.classic.HttpClients
import org.apache.hc.core5.util.Timeout
import org.http4k.client.ApacheClient
import org.http4k.core.Method
import org.http4k.core.Request
import org.http4k.core.Status
import java.util.concurrent.TimeUnit
''';
}
Expand All @@ -42,42 +40,46 @@ import org.http4k.core.Status
const url = r'"http://$address:$port/"';
final endpoints = service.endpoints.map(_createEndpoint).join('\n\n');
const throwException =
r'throw PatrolAppServiceClientException("Invalid response ${response.status}, ${response.bodyString()}")';
r'throw PatrolAppServiceClientException("Invalid response ${response.code()}, ${response?.body()?.string()}")';

const urlWithPath = r'"$serverUrl$path"';

return '''
class ${service.name}Client(private val address: String, private val port: Int, private val timeout: Timeout) {
class ${service.name}Client(address: String, port: Int, private val timeout: Long, private val timeUnit: TimeUnit) {
$endpoints
private fun performRequest(path: String, requestBody: String? = null): String {
var request = Request(Method.POST, $urlWithPath)
if (requestBody != null) {
request = request.body(requestBody)
val endpoint = $urlWithPath
val client = OkHttpClient().apply {
setConnectTimeout(timeout, timeUnit)
setReadTimeout(timeout, timeUnit)
setWriteTimeout(timeout, timeUnit)
}
val client = ApacheClient(
HttpClients.custom().setDefaultRequestConfig(
RequestConfig
.copy(RequestConfig.DEFAULT)
.setResponseTimeout(timeout)
.setConnectionRequestTimeout(timeout)
.build()
).build())
val response = client(request)
if (response.status != Status.OK) {
val request = Request.Builder()
.url(endpoint)
.also {
if (requestBody != null) {
it.post(RequestBody.create(jsonMediaType, requestBody))
}
}
.build()
val response = client.newCall(request).execute()
if (response.code() != 200) {
$throwException
}
return response.bodyString()
return response.body().string()
}
val serverUrl = $url
private val json = Json { ignoreUnknownKeys = true }
private val jsonMediaType = MediaType.parse("application/json; charset=utf-8")
}''';
}

Expand All @@ -100,7 +102,7 @@ $endpoints
return performRequest("${endpoint.name}"$serializeParameter)''';

return '''
fun ${endpoint.name}($parameterDef) $returnDef {
fun ${endpoint.name}($parameterDef)$returnDef {
$body
}''';
}
Expand Down
Loading