Log file cleaner (#153)

Removes old log files to limit disk usage.
This commit is contained in:
Chris Gerth
2020-11-11 13:09:31 -06:00
committed by GitHub
parent e74f750fc0
commit da2aaba033
3 changed files with 157 additions and 4 deletions

View File

@@ -0,0 +1,84 @@
/*
* Copyright (C) 2020 Photon Vision.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package org.photonvision.common.util;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.time.LocalDateTime;
import java.time.ZoneOffset;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.filefilter.WildcardFileFilter;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.photonvision.common.configuration.ConfigManager;
import org.photonvision.common.logging.Logger;
public class LogFileManagementTest {
@Test
public void fileCleanupTest() throws IOException {
// Ensure we instantiate the new log correctly
ConfigManager.getInstance();
String testDir = ConfigManager.getInstance().getLogsDir().toString() + "/test";
Files.createDirectories(Path.of(testDir));
// Create a bunch of log files with dummy contents.
for (int fileIdx = 0; fileIdx < Logger.MAX_LOGS_TO_KEEP + 5; fileIdx++) {
String fname =
ConfigManager.getInstance()
.taToLogFname(
LocalDateTime.ofEpochSecond(1500000000 + fileIdx * 60, 0, ZoneOffset.UTC));
try {
FileWriter testLogWriter = new FileWriter(Path.of(testDir, fname).toString());
testLogWriter.write("Test log contents created for testing purposes only");
testLogWriter.close();
} catch (IOException e) {
Assertions.fail("Could not create test files");
}
}
// Confirm new log files were created
Assertions.assertEquals(
true,
Logger.MAX_LOGS_TO_KEEP + 5 <= countLogFiles(testDir),
"Not enough log files discovered");
// Run the log cleanup routine
Logger.cleanLogs(Path.of(testDir));
// Confirm we deleted log files
Assertions.assertEquals(
true, Logger.MAX_LOGS_TO_KEEP == countLogFiles(testDir), "Not enough log files deleted");
// Clean uptest directory
org.photonvision.common.util.file.FileUtils.deleteDirectory(Path.of(testDir));
Files.delete(Path.of(testDir));
}
private int countLogFiles(String testDir) {
return FileUtils.listFiles(
new File(testDir), new WildcardFileFilter("photonvision-*.log"), null)
.size();
}
}