use of org.apache.archiva.repository.storage.StorageAsset in project archiva by apache.
the class ManagedRepositoryContentMock method getArtifact.
@Override
public Artifact getArtifact(String path) throws LayoutException, ContentAccessException {
StorageAsset asset = fsStorage.getAsset(path.toString());
String artifactId = asset.getName();
StorageAsset namespacePath = asset.getParent().getParent().getParent();
String namespaceId = namespacePath.getPath().replace("/", ".");
StorageAsset projectPath = asset.getParent().getParent();
String projectId = projectPath.getName();
StorageAsset versionPath = asset.getParent();
String versionId = versionPath.getName();
ArchivaNamespace ns = ArchivaNamespace.withRepository(repository.getContent()).withAsset(namespacePath).withNamespace(namespaceId).build();
ArchivaProject project = ArchivaProject.withRepository(repository.getContent()).withAsset(projectPath).withNamespace(ns).withId(projectId).build();
ArchivaVersion version = ArchivaVersion.withRepository(repository.getContent()).withAsset(versionPath).withProject(project).withVersion(versionId).build();
ArchivaArtifact artifact = ArchivaArtifact.withAsset(asset).withVersion(version).withId(projectId).withArtifactVersion(versionId).build();
return artifact;
}
use of org.apache.archiva.repository.storage.StorageAsset in project archiva by apache.
the class ManagedDefaultTransferTest method testGetDefaultLayoutNotPresent.
@Test
public void testGetDefaultLayoutNotPresent() throws Exception {
String path = "org/apache/maven/test/get-default-layout/1.0/get-default-layout-1.0.jar";
setupTestableManagedRepository(path);
Path expectedFile = managedDefaultDir.resolve(path);
BaseRepositoryContentLayout layout = managedDefaultRepository.getLayout(BaseRepositoryContentLayout.class);
Artifact artifact = layout.getArtifact(path);
// Ensure file isn't present first.
assertNotExistsInManagedDefaultRepo(expectedFile);
// Configure Connector (usually done within archiva.xml configuration)
saveConnector(ID_DEFAULT_MANAGED, ID_PROXIED1, ChecksumPolicy.FIX, ReleasesPolicy.ONCE, SnapshotsPolicy.ONCE, CachedFailuresPolicy.NO, false);
// Attempt the proxy fetch.
StorageAsset downloadedFile = proxyHandler.fetchFromProxies(managedDefaultRepository.getRepository(), artifact);
Path sourceFile = Paths.get(REPOPATH_PROXIED1, path);
assertFileEquals(expectedFile, downloadedFile.getFilePath(), sourceFile);
assertNoTempFiles(expectedFile);
}
use of org.apache.archiva.repository.storage.StorageAsset in project archiva by apache.
the class ManagedDefaultTransferTest method testGetAllRepositoriesFail.
@Test
public void testGetAllRepositoriesFail() throws Exception {
String path = "org/apache/maven/test/get-in-second-proxy/1.0/get-in-second-proxy-1.0.jar";
setupTestableManagedRepository(path);
Path expectedFile = managedDefaultDir.resolve(path);
BaseRepositoryContentLayout layout = managedDefaultRepository.getLayout(BaseRepositoryContentLayout.class);
Artifact artifact = layout.getArtifact(path);
assertNotExistsInManagedDefaultRepo(expectedFile);
// Configure Repository (usually done within archiva.xml configuration)
saveRemoteRepositoryConfig("badproxied1", "Bad Proxied 1", "http://bad.machine.com/repo/", "default");
saveRemoteRepositoryConfig("badproxied2", "Bad Proxied 2", "http://dead.machine.com/repo/", "default");
// Configure Connector (usually done within archiva.xml configuration)
saveConnector(ID_DEFAULT_MANAGED, "badproxied1", false);
saveConnector(ID_DEFAULT_MANAGED, "badproxied2", false);
Path tmpFile = expectedFile.getParent().resolve(expectedFile.getFileName() + ".tmp");
doThrow(new ResourceDoesNotExistException("Can't find resource.")).when(wagonMock).get(eq(path), any());
StorageAsset downloadedFile = proxyHandler.fetchFromProxies(managedDefaultRepository.getRepository(), artifact);
verify(wagonMock, atLeastOnce()).get(eq(path), any());
assertNotDownloaded(downloadedFile);
assertNoTempFiles(expectedFile);
// TODO: do not want failures to present as a not found [MRM-492]
// TODO: How much information on each failure should we pass back to the user vs. logging in the proxy?
}
use of org.apache.archiva.repository.storage.StorageAsset in project archiva by apache.
the class ManagedDefaultTransferTest method testGetDefaultLayoutAlreadyPresentNewerThanRemotePolicyIgnored.
/**
* <p>
* Request a file, that exists locally, and remotely.
* </p>
* <p>
* All policies are set to IGNORE.
* </p>
* <p>
* Managed file is newer than remote file.
* </p>
* <p>
* Transfer should not have occured, as managed file is newer.
* </p>
*
* @throws Exception
*/
@Test
public void testGetDefaultLayoutAlreadyPresentNewerThanRemotePolicyIgnored() throws Exception {
String path = "org/apache/maven/test/get-default-layout-present/1.0/get-default-layout-present-1.0.jar";
setupTestableManagedRepository(path);
Path expectedFile = managedDefaultDir.resolve(path);
Path remoteFile = Paths.get(REPOPATH_PROXIED1, path);
// Set the managed File to be newer than local.
setManagedNewerThanRemote(expectedFile, remoteFile);
long originalModificationTime = Files.getLastModifiedTime(expectedFile).toMillis();
BaseRepositoryContentLayout layout = managedDefaultRepository.getLayout(BaseRepositoryContentLayout.class);
Artifact artifact = layout.getArtifact(path);
assertTrue(Files.exists(expectedFile));
// Configure Connector (usually done within archiva.xml configuration)
saveConnector(ID_DEFAULT_MANAGED, ID_PROXIED1, ChecksumPolicy.FIX, ReleasesPolicy.ALWAYS, SnapshotsPolicy.ALWAYS, CachedFailuresPolicy.NO, false);
// Attempt the proxy fetch.
StorageAsset downloadedFile = proxyHandler.fetchFromProxies(managedDefaultRepository.getRepository(), artifact);
assertNotDownloaded(downloadedFile);
assertNotModified(expectedFile, originalModificationTime);
assertNoTempFiles(expectedFile);
}
use of org.apache.archiva.repository.storage.StorageAsset in project archiva by apache.
the class ManagedDefaultTransferTest method testGetWhenInBothProxiedRepos.
@Test
public void testGetWhenInBothProxiedRepos() throws Exception {
String path = "org/apache/maven/test/get-in-both-proxies/1.0/get-in-both-proxies-1.0.jar";
setupTestableManagedRepository(path);
Path expectedFile = managedDefaultDir.resolve(path);
BaseRepositoryContentLayout layout = managedDefaultRepository.getLayout(BaseRepositoryContentLayout.class);
Artifact artifact = layout.getArtifact(path);
assertNotExistsInManagedDefaultRepo(expectedFile);
// Configure Connector (usually done within archiva.xml configuration)
saveConnector(ID_DEFAULT_MANAGED, ID_PROXIED1, false);
saveConnector(ID_DEFAULT_MANAGED, ID_PROXIED2, false);
// Attempt the proxy fetch.
StorageAsset downloadedFile = proxyHandler.fetchFromProxies(managedDefaultRepository.getRepository(), artifact);
Path proxied1File = Paths.get(REPOPATH_PROXIED1, path);
Path proxied2File = Paths.get(REPOPATH_PROXIED2, path);
assertFileEquals(expectedFile, downloadedFile.getFilePath(), proxied1File);
assertNoTempFiles(expectedFile);
// TODO: is this check even needed if it passes above?
String actualContents = FileUtils.readFileToString(downloadedFile.getFilePath().toFile(), Charset.defaultCharset());
String badContents = FileUtils.readFileToString(proxied2File.toFile(), Charset.defaultCharset());
assertFalse("Downloaded file contents should not be that of proxy 2", StringUtils.equals(actualContents, badContents));
}
Aggregations