Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 1.34 KB

File metadata and controls

50 lines (36 loc) · 1.34 KB

allure-okhttp3

OkHttp interceptor integration for Allure Java.

Use this module when your tests or test clients use OkHttp and you want request, response, and transport error details to appear in Allure Report.

Supported Versions

  • Allure Java 3.x requires Java 17 or newer.
  • This module targets the OkHttp okhttp3 API used by OkHttp 3, 4, and 5.
  • The current build validates against OkHttp 5.4.0.

Installation

Gradle:

dependencies {
    testImplementation(platform("io.qameta.allure:allure-bom:<allure-version>"))
    testImplementation("io.qameta.allure:allure-okhttp3")
}

Maven, with allure-bom imported in dependency management:

<dependency>
    <groupId>io.qameta.allure</groupId>
    <artifactId>allure-okhttp3</artifactId>
    <scope>test</scope>
</dependency>

Setup

Register io.qameta.allure.okhttp3.AllureOkHttp3 as an OkHttp interceptor.

OkHttpClient client = new OkHttpClient.Builder()
        .addInterceptor(new AllureOkHttp3()
                .configureHttpExchange(exchange -> exchange.redactHeader("Authorization")))
        .build();

Report Output

  • Request method, URL, headers, and body when available.
  • Response status, message, headers, body, and timing.
  • IOException details for failed exchanges.
  • Redacted credentials and any custom redaction/truncation rules you configure.