commit
687b9b0353
@ -0,0 +1,55 @@
|
||||
/*
|
||||
* Copyright 2012-2020 the original author or 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
|
||||
*
|
||||
* https://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 org.springframework.boot.buildpack.platform.docker.transport;
|
||||
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
/**
|
||||
* Exception thrown when connection to the Docker daemon fails.
|
||||
*
|
||||
* @author Scott Frederick
|
||||
* @since 2.3.0
|
||||
*/
|
||||
public class DockerConnectionException extends RuntimeException {
|
||||
|
||||
private static final String JNA_EXCEPTION_CLASS_NAME = "com.sun.jna.LastErrorException";
|
||||
|
||||
public DockerConnectionException(String host, Exception cause) {
|
||||
super(buildMessage(host, cause), cause);
|
||||
}
|
||||
|
||||
private static String buildMessage(String host, Exception cause) {
|
||||
Assert.notNull(host, "host must not be null");
|
||||
Assert.notNull(cause, "cause must not be null");
|
||||
StringBuilder message = new StringBuilder("Connection to the Docker daemon at '" + host + "' failed");
|
||||
String causeMessage = getCauseMessage(cause);
|
||||
if (causeMessage != null && !causeMessage.isEmpty()) {
|
||||
message.append(" with error \"").append(causeMessage).append("\"");
|
||||
}
|
||||
message.append("; ensure the Docker daemon is running and accessible");
|
||||
return message.toString();
|
||||
}
|
||||
|
||||
private static String getCauseMessage(Exception cause) {
|
||||
if (cause.getCause() != null && cause.getCause().getClass().getName().equals(JNA_EXCEPTION_CLASS_NAME)) {
|
||||
return cause.getCause().getMessage();
|
||||
}
|
||||
|
||||
return cause.getMessage();
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
/*
|
||||
* Copyright 2012-2020 the original author or 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
|
||||
*
|
||||
* https://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 org.springframework.boot.buildpack.platform.docker.transport;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
|
||||
|
||||
/**
|
||||
* Tests for {@link DockerEngineException}.
|
||||
*
|
||||
* @author Scott Frederick
|
||||
*/
|
||||
class DockerConnectionExceptionTests {
|
||||
|
||||
private static final String HOST = "docker://localhost/";
|
||||
|
||||
@Test
|
||||
void createWhenHostIsNullThrowsException() {
|
||||
assertThatIllegalArgumentException().isThrownBy(() -> new DockerConnectionException(null, null))
|
||||
.withMessage("host must not be null");
|
||||
}
|
||||
|
||||
@Test
|
||||
void createWhenCauseIsNullThrowsException() {
|
||||
assertThatIllegalArgumentException().isThrownBy(() -> new DockerConnectionException(HOST, null))
|
||||
.withMessage("cause must not be null");
|
||||
}
|
||||
|
||||
@Test
|
||||
void createWithIOException() {
|
||||
DockerConnectionException exception = new DockerConnectionException(HOST, new IOException("error"));
|
||||
assertThat(exception.getMessage())
|
||||
.contains("Connection to the Docker daemon at 'docker://localhost/' failed with error \"error\"");
|
||||
}
|
||||
|
||||
@Test
|
||||
void createWithLastErrorException() {
|
||||
DockerConnectionException exception = new DockerConnectionException(HOST,
|
||||
new IOException(new com.sun.jna.LastErrorException("root cause")));
|
||||
assertThat(exception.getMessage())
|
||||
.contains("Connection to the Docker daemon at 'docker://localhost/' failed with error \"root cause\"");
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue