use of org.eclipse.ceylon.cmr.impl.DefaultRepository in project ceylon by eclipse.
the class AbstractTest method getRepositoryManagerBuilder.
protected RepositoryManagerBuilder getRepositoryManagerBuilder(File root, boolean offline, int timeout, Proxy proxy, String overrideFileName) throws Exception {
RepositoryManagerBuilder builder = new RepositoryManagerBuilder(temp.toFile(), log, offline, timeout, proxy, RepositoryManagerBuilder.parseOverrides(overrideFileName));
builder.addRepository(new DefaultRepository(new FileContentStore(root).createRoot()));
return builder;
}
use of org.eclipse.ceylon.cmr.impl.DefaultRepository in project ceylon by eclipse.
the class HerdTestCase method getRepositoryManager.
private RepositoryManager getRepositoryManager(File root, boolean offline, int timeout, String apiVersion) throws Exception {
RepositoryManagerBuilder builder = getRepositoryManagerBuilder(root, offline, timeout, java.net.Proxy.NO_PROXY);
WebDAVContentStore rcs = new WebDAVContentStore(HERD_URL, log, false, 60000, java.net.Proxy.NO_PROXY, apiVersion);
CmrRepository repo = new DefaultRepository(rcs.createRoot());
return builder.addRepository(repo).buildRepository();
}
use of org.eclipse.ceylon.cmr.impl.DefaultRepository in project ceylon by eclipse.
the class CallbackTestCase method doTest.
protected void doTest(ArtifactContext context, TestArtifactCallback callback) throws Exception {
String repoURL = "http://jboss-as7-modules-repository.googlecode.com/svn/trunk/ceylon";
try {
new URL(repoURL).openStream();
} catch (Exception e) {
log.error(String.format("Cannot connect to repo %s - %s", repoURL, e));
// probably not on the internet?
return;
}
RepositoryManagerBuilder builder = getRepositoryManagerBuilder(false, 60000, java.net.Proxy.NO_PROXY);
RemoteContentStore rcs = new RemoteContentStore(repoURL, log, false, 60000, java.net.Proxy.NO_PROXY);
CmrRepository repo = new DefaultRepository(rcs.createRoot());
RepositoryManager manager = builder.addRepository(repo).buildRepository();
try {
File file = manager.getArtifact(context);
Assert.assertNotNull(file);
Assert.assertTrue(callback.size > 0);
Assert.assertEquals(callback.size, callback.current);
} catch (Exception re) {
Assert.assertNotNull(callback.ts);
Assert.assertNotNull(callback.err);
Assert.assertEquals(callback.ts, callback.err.getMessage());
} finally {
manager.removeArtifact(null, name, version);
// test if remove really works
testSearchResults("org.eclipse.fizbiz", ModuleQuery.Type.JVM, new ModuleSearchResult.ModuleDetails[0]);
}
}
use of org.eclipse.ceylon.cmr.impl.DefaultRepository in project ceylon by eclipse.
the class SmokeTestCase method testRemoteContent.
@Test
public void testRemoteContent() throws Exception {
String repoURL = "http://jboss-as7-modules-repository.googlecode.com/svn/trunk/ceylon";
try {
new URL(repoURL).openStream();
} catch (Exception e) {
log.error(String.format("Cannot connect to repo %s - %s", repoURL, e));
// probably not on the internet?
return;
}
RepositoryManagerBuilder builder = getRepositoryManagerBuilder(false, 60000, java.net.Proxy.NO_PROXY);
RemoteContentStore rcs = new RemoteContentStore(repoURL, log, false, 60000, java.net.Proxy.NO_PROXY);
CmrRepository repo = new DefaultRepository(rcs.createRoot());
RepositoryManager manager = builder.addRepository(repo).buildRepository();
String name = "org.eclipse.fizbiz";
String version = "1.0.0.Beta1";
File file = null;
File originFile = null;
try {
file = manager.getArtifact(null, name, version);
Assert.assertNotNull(file);
originFile = new File(file.getAbsolutePath() + ".origin");
Assert.assertNotNull(originFile);
try {
String line;
try (BufferedReader reader = new BufferedReader(new FileReader(originFile))) {
line = reader.readLine();
}
assertEquals(repoURL, line);
} catch (IOException ignored) {
}
} finally {
manager.removeArtifact(null, name, version);
// test if remove really works
if (file != null)
assertFalse(file.exists());
if (originFile != null)
assertFalse(originFile.exists());
testSearchResults("org.eclipse.fizbiz", Type.JVM, new ModuleDetails[0]);
}
}
use of org.eclipse.ceylon.cmr.impl.DefaultRepository in project ceylon by eclipse.
the class SmokeTestCase method testExternalNodes.
@Test
public void testExternalNodes() throws Exception {
RepositoryManagerBuilder builder = getRepositoryManagerBuilder(false, 60000, java.net.Proxy.NO_PROXY);
InMemoryContentStore imcs = new InMemoryContentStore();
OpenNode root = imcs.createRoot();
CmrRepository repo = new DefaultRepository(root);
RepositoryManager manager = builder.addRepository(repo).buildRepository();
// a few impl details, feel free to remove/ignore this test
String name = "org.eclipse.acme";
String version = "1.0.0.CR1";
ArtifactContext context = new ArtifactContext(null, name, version);
// ignore with in-memory
context.setIgnoreSHA(true);
OpenNode parent = repo.createParent(context);
parent.addContent(name + "-" + version + ArtifactContext.CAR, new ByteArrayInputStream("qwerty".getBytes()), context);
try {
File file = manager.getArtifact(context);
Assert.assertNotNull("Failed to retrieve after put", file);
} finally {
manager.removeArtifact(null, name, version);
}
}
Aggregations