blob: 5b57baa3a4c534bf8518d3182465ab29b5607e25 [file] [log] [blame]
/*
* Copyright (C) 2013 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.squareup.okhttp;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.fail;
/**
* A received response or failure recorded by the response recorder.
*/
public class RecordedResponse {
public final Request request;
public final Response response;
public final String body;
public final Failure failure;
RecordedResponse(Request request, Response response, String body, Failure failure) {
this.request = request;
this.response = response;
this.body = body;
this.failure = failure;
}
public RecordedResponse assertCode(int expectedCode) {
assertEquals(expectedCode, response.code());
return this;
}
public RecordedResponse assertContainsHeaders(String... expectedHeaders) {
List<String> actualHeaders = new ArrayList<String>();
Headers headers = response.headers();
for (int i = 0; i < headers.size(); i++) {
actualHeaders.add(headers.name(i) + ": " + headers.value(i));
}
if (!actualHeaders.containsAll(Arrays.asList(expectedHeaders))) {
fail("Expected: " + actualHeaders + "\nto contain: " + Arrays.toString(expectedHeaders));
}
return this;
}
public RecordedResponse assertBody(String expectedBody) {
assertEquals(expectedBody, body);
return this;
}
public RecordedResponse assertHandshake() {
Handshake handshake = response.handshake();
assertNotNull(handshake.cipherSuite());
assertNotNull(handshake.peerPrincipal());
assertEquals(1, handshake.peerCertificates().size());
assertNull(handshake.localPrincipal());
assertEquals(0, handshake.localCertificates().size());
return this;
}
/**
* Asserts that the current response was redirected and returns a new recorded
* response for the original request.
*/
public RecordedResponse redirectedBy() {
Response redirectedBy = response.priorResponse();
assertNotNull(redirectedBy);
assertNull(redirectedBy.body());
return new RecordedResponse(redirectedBy.request(), redirectedBy, null, null);
}
public void assertFailure(String message) {
assertNotNull(failure);
assertEquals(message, failure.exception().getMessage());
}
}