by.stub.yaml.stubs.StubResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stubby4j Show documentation
Show all versions of stubby4j Show documentation
HTTP stub server written in Java with embedded Jetty
/*
A Java-based HTTP stub server
Copyright (C) 2012 Alexander Zagniotov, Isa Goksu and Eric Mrak
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
package by.stub.yaml.stubs;
import by.stub.annotations.CoberturaIgnore;
import by.stub.utils.FileUtils;
import by.stub.utils.ObjectUtils;
import by.stub.utils.StringUtils;
import java.io.File;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* @author Alexander Zagniotov
* @since 6/14/12, 1:09 AM
*/
public class StubResponse {
public static final String STUBBY_RESOURCE_ID_HEADER = "x-stubby-resource-id";
private final String status;
private final String body;
private final File file;
private final byte[] fileBytes;
private final String latency;
private final Map headers;
public StubResponse(final String status,
final String body,
final File file,
final String latency,
final Map headers) {
this.status = ObjectUtils.isNull(status) ? "200" : status;
this.body = body;
this.file = file;
this.fileBytes = ObjectUtils.isNull(file) ? new byte[]{} : getFileBytes();
this.latency = latency;
this.headers = ObjectUtils.isNull(headers) ? new LinkedHashMap() : headers;
}
public String getStatus() {
return status;
}
public String getBody() {
return (StringUtils.isSet(body) ? body : "");
}
public boolean isRecordingRequired() {
final String body = getBody();
if (StringUtils.toLower(body).startsWith("http")) {
return true;
}
return false;
}
public Map getHeaders() {
return headers;
}
public String getLatency() {
return latency;
}
//Used by reflection when populating stubby admin page with stubbed information
public byte[] getFile() {
return fileBytes;
}
public File getRawFile() {
return file;
}
public byte[] getResponseBodyAsBytes() {
if (fileBytes.length == 0) {
return getBody().getBytes(StringUtils.charsetUTF8());
}
return fileBytes;
}
public boolean isContainsTemplateTokens() {
final boolean isFileTemplate = fileBytes.length != 0 && isTemplateFile();
return isFileTemplate || getBody().contains(StringUtils.TEMPLATE_TOKEN_LEFT);
}
@CoberturaIgnore
private boolean isTemplateFile() {
try {
return FileUtils.isTemplateFile(file);
} catch (Exception e) {
return false;
}
}
@CoberturaIgnore
private byte[] getFileBytes() {
try {
return FileUtils.fileToBytes(file);
} catch (Exception e) {
return new byte[]{};
}
}
public boolean hasHeaderLocation() {
return getHeaders().containsKey("location");
}
void addResourceIDHeader(final int httplifeCycleIndex) {
getHeaders().remove(STUBBY_RESOURCE_ID_HEADER);
final Map shuffledHeaders = new LinkedHashMap<>();
shuffledHeaders.put(STUBBY_RESOURCE_ID_HEADER, String.valueOf(httplifeCycleIndex));
shuffledHeaders.putAll(new LinkedHashMap<>(getHeaders()));
getHeaders().clear();
getHeaders().putAll(shuffledHeaders);
}
public StubResponseTypes getStubResponseType() {
return StubResponseTypes.OK_200;
}
public static StubResponse newStubResponse() {
return new StubResponse(null, null, null, null, null);
}
public static StubResponse newStubResponse(final String status, final String body) {
return new StubResponse(status, body, null, null, null);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy