Fix VM Snapshot error during image validation 40/75740/2
authorJoss Armstrong <joss.armstrong@ericsson.com>
Mon, 14 Jan 2019 12:24:00 +0000 (12:24 +0000)
committerJoss Armstrong <joss.armstrong@ericsson.com>
Mon, 14 Jan 2019 12:47:58 +0000 (12:47 +0000)
prefix image name with 'in:' and surround with quotes
to deal with change to Glance that no longer supports
image names including colons passed as plain strings

Issue-ID: APPC-869
Change-Id: If81accc3edd7b4805eb965b11f466df9654d6010
Signed-off-by: Joss Armstrong <joss.armstrong@ericsson.com>
appc-adapters/appc-iaas-adapter/appc-iaas-adapter-bundle/src/main/java/org/onap/appc/adapter/iaas/provider/operation/impl/CreateSnapshot.java
appc-adapters/appc-iaas-adapter/appc-iaas-adapter-bundle/src/test/java/org/onap/appc/adapter/iaas/provider/operation/impl/TestCreateSnapshot.java

index 8c9f47c..fe08e18 100644 (file)
@@ -7,6 +7,8 @@
  * Copyright (C) 2017 Amdocs
  * =============================================================================
  * Modifications Copyright (C) 2018 IBM.
+ * ================================================================================
+ * Modifications (C) 2019 Ericsson
  * =============================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -105,11 +107,11 @@ public class CreateSnapshot extends ProviderServerOperation {
             throw new RequestFailedException("Stop Server", msg, HttpStatus.BAD_GATEWAY_502, server);
         }
         rc.reset();
-        // Locate snapshot image
+        // Locate snapshot image - image names containing colon must be prefixed by in: and surrounded with quotes
         Image snapshot = null;
         while (rc.attempt()) {
             try {
-                snapshot = service.getImageByName(snapshotName);
+                snapshot = service.getImageByName("in:\"" + snapshotName + "\"");
                 if (snapshot != null) {
                     break;
                 }
index 8b31bfd..03cdb4f 100644 (file)
@@ -5,6 +5,8 @@
  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Copyright (C) 2017 Amdocs
+ * ================================================================================
+ * Modifications (C) 2019 Ericsson
  * =============================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -60,6 +62,6 @@ public class TestCreateSnapshot {
         verify(server).createSnapshot(createSnapshotCaptor.capture());
         ArgumentCaptor<String> getImageNameCaptor = ArgumentCaptor.forClass(String.class);
         verify(mg.getImageService(), atLeastOnce()).getImageByName(getImageNameCaptor.capture());
-        assertEquals(createSnapshotCaptor.getValue(), getImageNameCaptor.getValue());
+        assertEquals("in:\"" + createSnapshotCaptor.getValue() + "\"", getImageNameCaptor.getValue());
     }
 }
\ No newline at end of file