
io.fabric8.docker.server.mock.MockDispatcher Maven / Gradle / Ivy
/*
* Copyright (C) 2016 Original Authors
*
* 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 io.fabric8.docker.server.mock;
import com.google.mockwebserver.Dispatcher;
import com.google.mockwebserver.MockResponse;
import com.google.mockwebserver.RecordedRequest;
import java.util.Map;
import java.util.Queue;
public class MockDispatcher extends Dispatcher {
private final Map> responses;
public MockDispatcher(Map> responses) {
this.responses = responses;
}
@Override
public MockResponse dispatch(RecordedRequest request) throws InterruptedException {
String method = request.getMethod();
String path = request.getPath();
ServerRequest key = new ServerRequest(method, path);
ServerRequest keyForAnyMethod = new ServerRequest(path);
if (responses.containsKey(key)) {
Queue queue = responses.get(key);
return handleResponse(queue.peek(), queue);
} else if (responses.containsKey(keyForAnyMethod)) {
Queue queue = responses.get(keyForAnyMethod);
return handleResponse(queue.peek(), queue);
}
return new MockResponse().setResponseCode(404);
}
private MockResponse handleResponse(ServerResponse response, Queue queue) {
if (response == null) {
return new MockResponse().setResponseCode(404);
} else if (response.isToBeRemoved()) {
queue.remove();
}
MockResponse mockResponse = new MockResponse();
mockResponse.setBody(response.getBody());
mockResponse.setResponseCode(response.getCode());
return mockResponse;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy