Browse Source
This commit improves the error messages returned by the Spring Boot build plugins when a 5xx status code is returned from the Docker API while attempting to build an image. If the error response has contents containing a JSON structure with a "message" key, the value associated with that key will be included in the exception message and in the build plugin output error. Fixes gh-21515pull/21702/head
7 changed files with 202 additions and 25 deletions
@ -0,0 +1,50 @@
@@ -0,0 +1,50 @@
|
||||
/* |
||||
* 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 com.fasterxml.jackson.annotation.JsonCreator; |
||||
import com.fasterxml.jackson.annotation.JsonProperty; |
||||
|
||||
/** |
||||
* A message returned from the Docker API. |
||||
* |
||||
* @author Scott Frederick |
||||
* @since 2.3.1 |
||||
*/ |
||||
public class Message { |
||||
|
||||
private final String message; |
||||
|
||||
@JsonCreator |
||||
Message(@JsonProperty("message") String message) { |
||||
this.message = message; |
||||
} |
||||
|
||||
/** |
||||
* Return the message contained in the response. |
||||
* @return the message |
||||
*/ |
||||
public String getMessage() { |
||||
return this.message; |
||||
} |
||||
|
||||
@Override |
||||
public String toString() { |
||||
return this.message; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,44 @@
@@ -0,0 +1,44 @@
|
||||
/* |
||||
* 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.junit.jupiter.api.Test; |
||||
|
||||
import org.springframework.boot.buildpack.platform.json.AbstractJsonTests; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link Message}. |
||||
* |
||||
* @author Scott Frederick |
||||
*/ |
||||
class MessageTests extends AbstractJsonTests { |
||||
|
||||
@Test |
||||
void readValueDeserializesJson() throws Exception { |
||||
Message message = getObjectMapper().readValue(getContent("message.json"), Message.class); |
||||
assertThat(message.getMessage()).isEqualTo("test message"); |
||||
} |
||||
|
||||
@Test |
||||
void toStringHasErrorDetails() throws Exception { |
||||
Message errors = getObjectMapper().readValue(getContent("message.json"), Message.class); |
||||
assertThat(errors.toString()).isEqualTo("test message"); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue