Package org.apache.deltacloud.client

Examples of org.apache.deltacloud.client.DeltaCloudClientImpl.listImages()


  }

  @Test(expected = DeltaCloudClientException.class)
  public void cannotListIfNotAuthenticated() throws MalformedURLException, DeltaCloudClientException {
    DeltaCloudClientImpl client = new DeltaCloudClientImpl(MockIntegrationTestContext.DELTACLOUD_URL, "badUser", "badPassword");
    client.listImages();
  }

  @Test
  public void assertDefaultImages() throws DeltaCloudClientException {
    List<Image> images = testSetup.getClient().listImages();
View Full Code Here


  @Test(expected = DeltaCloudClientException.class)
  public void listImages_cannotListIfNotAuthenticated() throws MalformedURLException, DeltaCloudClientException {
    DeltaCloudClientImpl client = new DeltaCloudClientImpl(MockIntegrationTestContext.DELTACLOUD_URL, "badUser",
        "badPassword");
    client.listImages();
  }

  @Test
  public void throwsDeltaCloudClientExceptionOnUnknownResource() {
    try {
View Full Code Here

          }
          );
          return Collections.emptyList();
        }
      };
      errorClient.listImages();
      fail("no exception catched");
    } catch (Exception e) {
      assertEquals(DeltaCloudNotFoundClientException.class, e.getClass());
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.