Examples of NVMDownloader


Examples of com.jonnyzzz.teamcity.plugins.node.agent.nvm.NVMDownloader

    doSuccessfulTest("https://github.com/creationix/nvm/archive/master.zip");
  }

  private void doSuccessfulTest(String url) throws IOException {
    final File dir = createTempDir();
    new NVMDownloader(new HttpClientWrapperImpl()).downloadNVM(dir, url);

    File[] files = dir.listFiles();
    Assert.assertNotNull(files);

    System.out.println("result: " + Arrays.toString(files));
View Full Code Here

Examples of com.jonnyzzz.teamcity.plugins.node.agent.nvm.NVMDownloader

  }

  @Test(expectedExceptions = RunBuildException.class)
  public void error() throws IOException {
    File dir = createTempDir();
    new NVMDownloader(new HttpClientWrapperImpl()).downloadNVM(dir, "http://blog.jonnyzzz.name");
  }
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.