blob: 16bde19f27d80497b04cbe7724b464965e410a56 [file] [log] [blame]
/*
* Copyright (C) 2017 Ericsson and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.internal.storage.file;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.io.File;
import java.nio.file.Paths;
import java.time.Instant;
import org.junit.Before;
import org.junit.Test;
public class GcTemporaryFilesTest extends GcTestCase {
private static final String TEMP_IDX = "gc_1234567890.idx_tmp";
private static final String TEMP_PACK = "gc_1234567890.pack_tmp";
private File packDir;
@Override
@Before
public void setUp() throws Exception {
super.setUp();
packDir = Paths.get(repo.getObjectsDirectory().getAbsolutePath(),
"pack").toFile(); //$NON-NLS-1$
}
@Test
public void oldTempPacksAndIdxAreDeleted() throws Exception {
File tempIndex = new File(packDir, TEMP_IDX);
File tempPack = new File(packDir, TEMP_PACK);
if (!packDir.exists() || !packDir.isDirectory()) {
assertTrue(packDir.mkdirs());
}
assertTrue(tempPack.createNewFile());
assertTrue(tempIndex.createNewFile());
assertTrue(tempIndex.exists());
assertTrue(tempPack.exists());
long _24HoursBefore = Instant.now().toEpochMilli()
- 24 * 60 * 62 * 1000;
tempIndex.setLastModified(_24HoursBefore);
tempPack.setLastModified(_24HoursBefore);
gc.gc();
assertFalse(tempIndex.exists());
assertFalse(tempPack.exists());
}
@Test
public void recentTempPacksAndIdxAreNotDeleted() throws Exception {
File tempIndex = new File(packDir, TEMP_IDX);
File tempPack = new File(packDir, TEMP_PACK);
if (!packDir.exists() || !packDir.isDirectory()) {
assertTrue(packDir.mkdirs());
}
assertTrue(tempPack.createNewFile());
assertTrue(tempIndex.createNewFile());
assertTrue(tempIndex.exists());
assertTrue(tempPack.exists());
gc.gc();
assertTrue(tempIndex.exists());
assertTrue(tempPack.exists());
}
}