com.github.jchanghong.http.okhttp.DevServer.kt Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Square, Inc.
*
* 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.
*/
package com.github.jchanghong.http.okhttp
//import okhttp3.mockwebserver.MockResponse
//import okhttp3.mockwebserver.MockWebServer
//import okhttp3.tls.HandshakeCertificates
//import okhttp3.tls.internal.TlsUtil
//
//class DevServer {
// val handshakeCertificates = TlsUtil.localhost()
//
// val server = MockWebServer().apply {
// useHttps(handshakeCertificates.sslSocketFactory(), false)
//
// enqueue(MockResponse()
// .setResponseCode(HTTP_MOVED_TEMP)
// .setHeader("Location", "https://www.google.com/robots.txt"))
// }
//
// val clientCertificates = HandshakeCertificates.Builder()
// .addPlatformTrustedCertificates()
// .addInsecureHost(server.hostName)
// .build()
//
// val client = OkHttpClient.Builder()
// .sslSocketFactory(clientCertificates.sslSocketFactory(), clientCertificates.trustManager)
// .build()
//
// fun run() {
// try {
// val request = Request.Builder()
// .url(server.url("/"))
// .build()
//
// client.newCall(request).execute().use { response ->
// if (!response.isSuccessful) throw IOException("Unexpected code $response")
//
// println(response.request.url)
// }
// } finally {
// server.shutdown()
// }
// }
//}
//
//fun main() {
// DevServer().run()
//}