use of org.sonatype.aether.spi.connector.ArtifactUpload in project sonatype-aether by sonatype.
the class PutTest method testCloseAfterArtifactUpload.
@Test
public void testCloseAfterArtifactUpload() throws Exception {
Artifact artifact = artifact("artifact");
List<ArtifactUpload> uploads = Arrays.asList(new ArtifactUpload(artifact, artifact.getFile()));
connector().put(uploads, null);
connector().close();
}
use of org.sonatype.aether.spi.connector.ArtifactUpload in project sonatype-aether by sonatype.
the class AsyncRepositoryConnector method put.
/**
* Use the async http client library to upload artifacts and metadata.
*
* @param artifactUploads The artifact uploads to perform, may be {@code null} or empty.
* @param metadataUploads The metadata uploads to perform, may be {@code null} or empty.
*/
public void put(Collection<? extends ArtifactUpload> artifactUploads, Collection<? extends MetadataUpload> metadataUploads) {
if (closed.get()) {
throw new IllegalStateException("connector closed");
}
artifactUploads = safe(artifactUploads);
metadataUploads = safe(metadataUploads);
CountDownLatch latch = new CountDownLatch(artifactUploads.size() + metadataUploads.size());
Collection<PutTask<?>> tasks = new ArrayList<PutTask<?>>();
for (ArtifactUpload upload : artifactUploads) {
String path = layout.getPath(upload.getArtifact()).getPath();
PutTask<?> task = new PutTask<ArtifactTransfer>(path, upload.getFile(), latch, upload, ARTIFACT);
tasks.add(task);
task.run();
}
for (MetadataUpload upload : metadataUploads) {
String path = layout.getPath(upload.getMetadata()).getPath();
PutTask<?> task = new PutTask<MetadataTransfer>(path, upload.getFile(), latch, upload, METADATA);
tasks.add(task);
task.run();
}
await(latch);
for (PutTask<?> task : tasks) {
task.flush();
}
}
use of org.sonatype.aether.spi.connector.ArtifactUpload in project sonatype-aether by sonatype.
the class ConnectorTestSuite method testFileHandleLeakage.
@Test
public void testFileHandleLeakage() throws IOException, NoRepositoryConnectorException {
StubArtifact artifact = new StubArtifact("testGroup", "testArtifact", "", "jar", "1-test");
StubMetadata metadata = new StubMetadata("testGroup", "testArtifact", "1-test", "maven-metadata.xml", Metadata.Nature.RELEASE_OR_SNAPSHOT);
RepositoryConnector connector = factory().newInstance(session, repository);
File tmpFile = TestFileUtils.createTempFile("testFileHandleLeakage");
ArtifactUpload artUp = new ArtifactUpload(artifact, tmpFile);
connector.put(Arrays.asList(artUp), null);
assertTrue("Leaking file handle in artifact upload", tmpFile.delete());
tmpFile = TestFileUtils.createTempFile("testFileHandleLeakage");
MetadataUpload metaUp = new MetadataUpload(metadata, tmpFile);
connector.put(null, Arrays.asList(metaUp));
assertTrue("Leaking file handle in metadata upload", tmpFile.delete());
tmpFile = TestFileUtils.createTempFile("testFileHandleLeakage");
ArtifactDownload artDown = new ArtifactDownload(artifact, null, tmpFile, null);
connector.get(Arrays.asList(artDown), null);
new File(tmpFile.getAbsolutePath() + ".sha1").deleteOnExit();
assertTrue("Leaking file handle in artifact download", tmpFile.delete());
tmpFile = TestFileUtils.createTempFile("testFileHandleLeakage");
MetadataDownload metaDown = new MetadataDownload(metadata, null, tmpFile, null);
connector.get(null, Arrays.asList(metaDown));
new File(tmpFile.getAbsolutePath() + ".sha1").deleteOnExit();
assertTrue("Leaking file handle in metadata download", tmpFile.delete());
connector.close();
}
use of org.sonatype.aether.spi.connector.ArtifactUpload in project sonatype-aether by sonatype.
the class ConnectorTestSuite method testTransferZeroBytesFile.
/**
* See https://issues.sonatype.org/browse/AETHER-8
*/
@Test
public void testTransferZeroBytesFile() throws IOException, NoRepositoryConnectorException {
File emptyFile = TestFileUtils.createTempFile("");
Artifact artifact = new StubArtifact("gid:aid:ext:ver");
ArtifactUpload upA = new ArtifactUpload(artifact, emptyFile);
File dir = TestFileUtils.createTempDir("con-test");
File downAFile = new File(dir, "downA.file");
downAFile.deleteOnExit();
ArtifactDownload downA = new ArtifactDownload(artifact, "", downAFile, RepositoryPolicy.CHECKSUM_POLICY_FAIL);
Metadata metadata = new StubMetadata("gid", "aid", "ver", "maven-metadata.xml", Metadata.Nature.RELEASE_OR_SNAPSHOT);
MetadataUpload upM = new MetadataUpload(metadata, emptyFile);
File downMFile = new File(dir, "downM.file");
downMFile.deleteOnExit();
MetadataDownload downM = new MetadataDownload(metadata, "", downMFile, RepositoryPolicy.CHECKSUM_POLICY_FAIL);
RepositoryConnector connector = factory().newInstance(session, repository);
connector.put(Arrays.asList(upA), Arrays.asList(upM));
connector.get(Arrays.asList(downA), Arrays.asList(downM));
assertNull(String.valueOf(upA.getException()), upA.getException());
assertNull(String.valueOf(upM.getException()), upM.getException());
assertNull(String.valueOf(downA.getException()), downA.getException());
assertNull(String.valueOf(downM.getException()), downM.getException());
assertEquals(0, downAFile.length());
assertEquals(0, downMFile.length());
connector.close();
}
use of org.sonatype.aether.spi.connector.ArtifactUpload in project sonatype-aether by sonatype.
the class ConnectorTestSuite method testMkdirConcurrencyBug.
@Test
public void testMkdirConcurrencyBug() throws IOException, NoRepositoryConnectorException {
RepositoryConnector connector = factory().newInstance(session, repository);
File artifactFile = TestFileUtils.createTempFile("mkdirsBug0");
File metadataFile = TestFileUtils.createTempFile("mkdirsBug1");
int numTransfers = 2;
ArtifactUpload[] artUps = new ArtifactUpload[numTransfers];
MetadataUpload[] metaUps = new MetadataUpload[numTransfers];
for (int i = 0; i < numTransfers; i++) {
StubArtifact art = new StubArtifact("testGroup", "testArtifact", "", "jar", i + "-test");
StubMetadata meta = new StubMetadata("testGroup", "testArtifact", i + "-test", "maven-metadata.xml", Metadata.Nature.RELEASE_OR_SNAPSHOT);
ArtifactUpload artUp = new ArtifactUpload(art, artifactFile);
MetadataUpload metaUp = new MetadataUpload(meta, metadataFile);
artUps[i] = artUp;
metaUps[i] = metaUp;
}
connector.put(Arrays.asList(artUps), null);
connector.put(null, Arrays.asList(metaUps));
File localRepo = session.getLocalRepository().getBasedir();
StringBuilder localPath = new StringBuilder(localRepo.getAbsolutePath());
for (int i = 0; i < 50; i++) {
localPath.append("/d");
}
ArtifactDownload[] artDowns = new ArtifactDownload[numTransfers];
MetadataDownload[] metaDowns = new MetadataDownload[numTransfers];
for (int m = 0; m < 20; m++) {
for (int i = 0; i < numTransfers; i++) {
File artFile = new File(localPath.toString() + "/a" + i);
File metaFile = new File(localPath.toString() + "/m" + i);
StubArtifact art = new StubArtifact("testGroup", "testArtifact", "", "jar", i + "-test");
StubMetadata meta = new StubMetadata("testGroup", "testArtifact", i + "-test", "maven-metadata.xml", Metadata.Nature.RELEASE_OR_SNAPSHOT);
ArtifactDownload artDown = new ArtifactDownload(art, null, artFile, RepositoryPolicy.CHECKSUM_POLICY_FAIL);
MetadataDownload metaDown = new MetadataDownload(meta, null, metaFile, RepositoryPolicy.CHECKSUM_POLICY_FAIL);
artDowns[i] = artDown;
metaDowns[i] = metaDown;
}
connector.get(Arrays.asList(artDowns), Arrays.asList(metaDowns));
for (int j = 0; j < numTransfers; j++) {
ArtifactDownload artDown = artDowns[j];
MetadataDownload metaDown = metaDowns[j];
assertNull("artifact download had exception: " + artDown.getException(), artDown.getException());
assertNull("metadata download had exception: " + metaDown.getException(), metaDown.getException());
assertEquals(State.DONE, artDown.getState());
assertEquals(State.DONE, metaDown.getState());
}
TestFileUtils.delete(localRepo);
}
connector.close();
}
Aggregations