Package com.jonnyzzz.teamcity.plugins.node.agent.nvm

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


  }

  @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

Related Classes of com.jonnyzzz.teamcity.plugins.node.agent.nvm.NVMDownloader

Copyright © 2018 www.massapicom. 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.