2019-06-21 14:35:57 +02:00
|
|
|
package sonia.scm.store;
|
|
|
|
|
|
|
|
|
|
import org.junit.jupiter.api.BeforeEach;
|
|
|
|
|
import org.junit.jupiter.api.Nested;
|
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
|
import org.junit.jupiter.api.extension.ExtendWith;
|
|
|
|
|
import org.junitpioneer.jupiter.TempDirectory;
|
|
|
|
|
import org.mockito.Mock;
|
|
|
|
|
import org.mockito.junit.jupiter.MockitoExtension;
|
|
|
|
|
import sonia.scm.SCMContextProvider;
|
|
|
|
|
import sonia.scm.io.DefaultFileSystem;
|
|
|
|
|
import sonia.scm.repository.InitialRepositoryLocationResolver;
|
|
|
|
|
import sonia.scm.repository.RepositoryLocationResolver;
|
|
|
|
|
import sonia.scm.repository.xml.PathBasedRepositoryLocationResolver;
|
|
|
|
|
import sonia.scm.update.PropertyFileAccess;
|
|
|
|
|
import sonia.scm.util.IOUtil;
|
|
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.nio.file.Files;
|
|
|
|
|
import java.nio.file.Path;
|
|
|
|
|
import java.nio.file.Paths;
|
|
|
|
|
|
2019-06-25 09:12:57 +02:00
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
2019-06-21 14:35:57 +02:00
|
|
|
import static org.mockito.ArgumentMatchers.any;
|
|
|
|
|
import static org.mockito.Mockito.lenient;
|
|
|
|
|
|
|
|
|
|
@ExtendWith(TempDirectory.class)
|
|
|
|
|
@ExtendWith(MockitoExtension.class)
|
|
|
|
|
class JAXBPropertyFileAccessTest {
|
|
|
|
|
|
|
|
|
|
public static final String REPOSITORY_ID = "repoId";
|
|
|
|
|
public static final String STORE_NAME = "test";
|
|
|
|
|
|
|
|
|
|
@Mock
|
|
|
|
|
SCMContextProvider contextProvider;
|
|
|
|
|
|
|
|
|
|
RepositoryLocationResolver locationResolver;
|
|
|
|
|
|
|
|
|
|
JAXBPropertyFileAccess fileAccess;
|
|
|
|
|
|
|
|
|
|
@BeforeEach
|
|
|
|
|
void initTempDir(@TempDirectory.TempDir Path tempDir) {
|
|
|
|
|
lenient().when(contextProvider.getBaseDirectory()).thenReturn(tempDir.toFile());
|
|
|
|
|
lenient().when(contextProvider.resolve(any())).thenAnswer(invocation -> tempDir.resolve(invocation.getArgument(0).toString()));
|
|
|
|
|
|
2019-06-25 09:12:57 +02:00
|
|
|
locationResolver = new PathBasedRepositoryLocationResolver(contextProvider, new InitialRepositoryLocationResolver(), new DefaultFileSystem());
|
2019-06-21 14:35:57 +02:00
|
|
|
|
|
|
|
|
fileAccess = new JAXBPropertyFileAccess(contextProvider, locationResolver);
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-25 09:12:57 +02:00
|
|
|
@Test
|
|
|
|
|
void shouldRenameGlobalConfigFile() throws IOException {
|
|
|
|
|
Path baseDirectory = contextProvider.getBaseDirectory().toPath();
|
|
|
|
|
Path configDirectory = baseDirectory.resolve(StoreConstants.CONFIG_DIRECTORY_NAME);
|
|
|
|
|
|
|
|
|
|
Files.createDirectories(configDirectory);
|
|
|
|
|
|
|
|
|
|
Path oldPath = configDirectory.resolve("old" + StoreConstants.FILE_EXTENSION);
|
|
|
|
|
Files.createFile(oldPath);
|
|
|
|
|
|
|
|
|
|
fileAccess.renameGlobalConfigurationFrom("old").to("new");
|
|
|
|
|
|
|
|
|
|
Path newPath = configDirectory.resolve("new" + StoreConstants.FILE_EXTENSION);
|
|
|
|
|
assertThat(oldPath).doesNotExist();
|
|
|
|
|
assertThat(newPath).exists();
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-21 14:35:57 +02:00
|
|
|
@Nested
|
|
|
|
|
class ForExistingRepository {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@BeforeEach
|
|
|
|
|
void createRepositoryLocation() {
|
|
|
|
|
locationResolver.forClass(Path.class).createLocation(REPOSITORY_ID);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void shouldMoveStoreFileToRepositoryBasedLocation(@TempDirectory.TempDir Path tempDir) throws IOException {
|
|
|
|
|
createV1StoreFile(tempDir, "myStore.xml");
|
|
|
|
|
|
|
|
|
|
fileAccess.forStoreName(STORE_NAME).moveAsRepositoryStore(Paths.get("myStore.xml"), REPOSITORY_ID);
|
|
|
|
|
|
2019-06-25 09:12:57 +02:00
|
|
|
assertThat(tempDir.resolve("repositories").resolve(REPOSITORY_ID).resolve("store").resolve("data").resolve(STORE_NAME).resolve("myStore.xml")).exists();
|
2019-06-21 14:35:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void shouldMoveAllStoreFilesToRepositoryBasedLocations(@TempDirectory.TempDir Path tempDir) throws IOException {
|
|
|
|
|
locationResolver.forClass(Path.class).createLocation("repoId2");
|
|
|
|
|
|
|
|
|
|
createV1StoreFile(tempDir, REPOSITORY_ID + ".xml");
|
|
|
|
|
createV1StoreFile(tempDir, "repoId2.xml");
|
|
|
|
|
|
|
|
|
|
PropertyFileAccess.StoreFileTools statisticStoreAccess = fileAccess.forStoreName(STORE_NAME);
|
|
|
|
|
statisticStoreAccess.forStoreFiles(statisticStoreAccess::moveAsRepositoryStore);
|
|
|
|
|
|
2019-06-25 09:12:57 +02:00
|
|
|
assertThat(tempDir.resolve("repositories").resolve(REPOSITORY_ID).resolve("store").resolve("data").resolve(STORE_NAME).resolve("repoId.xml")).exists();
|
|
|
|
|
assertThat(tempDir.resolve("repositories").resolve("repoId2").resolve("store").resolve("data").resolve(STORE_NAME).resolve("repoId2.xml")).exists();
|
2019-06-21 14:35:57 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void createV1StoreFile(@TempDirectory.TempDir Path tempDir, String name) throws IOException {
|
|
|
|
|
Path v1Dir = tempDir.resolve("var").resolve("data").resolve(STORE_NAME);
|
|
|
|
|
IOUtil.mkdirs(v1Dir.toFile());
|
|
|
|
|
Files.createFile(v1Dir.resolve(name));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Nested
|
|
|
|
|
class ForMissingRepository {
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void shouldIgnoreStoreFile(@TempDirectory.TempDir Path tempDir) throws IOException {
|
|
|
|
|
createV1StoreFile(tempDir, "myStore.xml");
|
|
|
|
|
|
|
|
|
|
fileAccess.forStoreName(STORE_NAME).moveAsRepositoryStore(Paths.get("myStore.xml"), REPOSITORY_ID);
|
|
|
|
|
|
2019-06-25 09:12:57 +02:00
|
|
|
assertThat(tempDir.resolve("repositories").resolve(REPOSITORY_ID).resolve("store").resolve("data").resolve(STORE_NAME).resolve("myStore.xml")).doesNotExist();
|
2019-06-21 14:35:57 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|