Fixing paths in unit tests

This commit is contained in:
Martin Stockhammer 2019-08-03 21:00:48 +02:00
parent 34806cdf35
commit ee2c1a7b2b
3 changed files with 10 additions and 26 deletions

View File

@ -22,6 +22,7 @@ package org.apache.archiva.repository;
import org.apache.archiva.indexer.ArchivaIndexingContext;
import org.apache.archiva.repository.storage.RepositoryStorage;
import org.apache.archiva.repository.features.RepositoryFeature;
import org.apache.archiva.repository.storage.StorageAsset;
import java.net.URI;
import java.nio.file.Path;
@ -89,19 +90,12 @@ public interface Repository extends RepositoryEventHandler, RepositoryStorage {
/**
* Returns the local path that this repository uses, if it stores data locally. You should keep in
* mind, that repository implementations may not store any data in this directory. E.g. if the
* repository data is handled by a database. So the content of this directory is very implementation
* specific. Users of this directory must know about the repository file layout if they use this
* path.
* Returns a storage representation to the local data stored for this repository.
* The repository implementation may not store the real artifacts in this path. The directory structure
* is completely implementation dependant.
*
* Repository implementations should always return a valid path, even if there is no locally stored data.
*
* Some extensions may use the path to store their own repository specific data, e.g. statistics, metadata,...
*
* @return the filesystem path to the repository.
*/
Path getLocalPath();
StorageAsset getLocalPath();
/**

View File

@ -21,6 +21,7 @@ package org.apache.archiva.repository;
import org.apache.archiva.repository.storage.RepositoryStorage;
import org.apache.archiva.repository.storage.StorageAsset;
import java.net.URI;
import java.nio.file.Path;
@ -147,8 +148,8 @@ public abstract class AbstractRemoteRepository extends AbstractRepository implem
* @return
*/
@Override
public Path getLocalPath() {
return getStorage().getAsset("").getFilePath();
public StorageAsset getLocalPath() {
return getStorage().getAsset("");
}
@Override

View File

@ -147,19 +147,8 @@ public abstract class AbstractRepository implements EditableRepository, Reposito
}
@Override
public Path getLocalPath() {
return storage.getAsset("").getFilePath();
// Path localPath;
// if (StringUtils.isEmpty(getLocation().getScheme()) || "file".equals(getLocation().getScheme()) ) {
// localPath = PathUtil.getPathFromUri(getLocation());
// if (localPath.isAbsolute()) {
// return localPath;
// } else {
// return repositoryBase.resolve(localPath);
// }
// } else {
// return repositoryBase.resolve(getId());
// }
public StorageAsset getLocalPath() {
return storage.getAsset("");
}
@Override