Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for abcABCabc (0.1 sec)

  1. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat(get(server.url("/")).body.string()).isEqualTo("ABCABCABC")
        assertThat(get(server.url("/")).body.string()).isEqualTo("ABCABCABC")
        assertThat(get(server.url("/")).body.string()).isEqualTo("ABCABCABC")
      }
    
      @Test
      fun previouslyNotGzippedContentIsNotModifiedAndSpecifiesGzipEncoding() {
        server.enqueue(
          MockResponse.Builder()
            .body("ABCABCABC")
            .addHeader("Content-Type: text/plain")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/InterceptorTest.kt

            .build()
        client.newCall(request).execute()
      }
    
      @Test
      fun networkInterceptorsObserveNetworkHeaders() {
        server.enqueue(
          MockResponse.Builder()
            .body(gzip("abcabcabc"))
            .addHeader("Content-Encoding: gzip")
            .build(),
        )
        val interceptor =
          Interceptor { chain: Interceptor.Chain ->
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

        server.enqueue(
          MockResponse.Builder()
            .body(gzip("abcabcabc"))
            .addHeader("Content-Encoding: gzip")
            .build(),
        )
        client =
          client.newBuilder()
            .authenticator(RecordingOkAuthenticator("password", null))
            .build()
        executeSynchronously("/").assertBody("abcabcabc")
      }
    
      @Test
      fun rangeHeaderPreventsAutomaticGzip() {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        server.enqueue(
          MockResponse.Builder()
            .addHeader("Content-Encoding: gzip")
            .body(gzip("ABCABCABC"))
            .build(),
        )
        val call = client.newCall(Request(server.url("/r1")))
        val response = call.execute()
        assertThat(response.body.string()).isEqualTo("ABCABCABC")
      }
    
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
      fun authenticate(
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        server.enqueue(
          MockResponse.Builder()
            .body(gzip("ABCABCABC"))
            .addHeader("Content-Encoding: gzip")
            .build(),
        )
        val response = getResponse(newRequest("/"))
        assertThat(readAscii(response.body.byteStream(), Int.MAX_VALUE)).isEqualTo(
          "ABCABCABC",
        )
        assertThat(response.header("Content-Encoding")).isNull()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
Back to top