@Test
public void deployErrorTest() throws Exception {
ObjectMapper mapper = new ObjectMapper();
URL url = this.getClass().getClassLoader().getResource("deploy_error.json");
Deploy deploy = mapper.readValue(url, Deploy.class);
assertEquals(deploy.getError(), "application [8129583aae37a4b556d36dbd56abbc68,8129583aae37a4b556d36dbd56abbc68] not exist");
}