Package com.puppetlabs.geppetto.forge.v2.service

Examples of com.puppetlabs.geppetto.forge.v2.service.ReleaseService.download()


public class ReleaseTests extends ForgeAPITestBase {
  @Test
  public void testDownloadRelease() throws IOException {
    ReleaseService service = getTestUserForge().createReleaseService();
    ByteArrayOutputStream content = new ByteArrayOutputStream();
    service.download(TEST_USER, TEST_MODULE, TEST_RELEASE_VERSION, content);
    assertEquals(
      "Wrong release content size", content.size(), TestDataProvider.getTestData(TEST_GZIPPED_RELEASE).length);
  }

  /* Disabled since it's not really used and puts a hard strain on the server
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.