ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/juli/TestFileHandler.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/juli/TestFileHandler.java
Status
scanned
Type
file
Name
TestFileHandler.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
4972 (4.9 KB)
MD5
252db5ca66ea72f48f7054c9a408581e
SHA1
bf0d204c2e61c4df7cea4e5327f3b51c62d55ae2
SHA256
3e4856a862f1886ab02d5b6dc4fec31e7b1ca84d3925cabfd4cfb8afc463ed27
SHA512

      
    
SHA1_git
d6a8deee481554c9de69f53ae82d76c14287e228
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestFileHandler.java | 4.9 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.juli; import java.io.File; import java.io.IOException; import java.nio.file.FileSystems; import java.nio.file.Files; import java.nio.file.Path; import java.time.LocalDate; import java.time.LocalDateTime; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; public class TestFileHandler { private static final String PREFIX_1 = "localhost."; private static final String PREFIX_2 = "test."; private static final String PREFIX_3 = ""; private static final String PREFIX_4 = "localhost1"; private static final String SUFFIX_1 = ".log"; private static final String SUFFIX_2 = ".txt"; private File logsDir; @Before public void setUp() throws Exception { File logsBase = new File(System.getProperty("tomcat.test.temp", "output/tmp")); if (!logsBase.mkdirs() && !logsBase.isDirectory()) { Assert.fail("Unable to create logs directory."); } Path logsBasePath = FileSystems.getDefault().getPath(logsBase.getAbsolutePath()); logsDir = Files.createTempDirectory(logsBasePath, "test").toFile(); generateLogFiles(logsDir, PREFIX_1, SUFFIX_2, 3); generateLogFiles(logsDir, PREFIX_2, SUFFIX_1, 3); generateLogFiles(logsDir, PREFIX_3, SUFFIX_1, 3); generateLogFiles(logsDir, PREFIX_4, SUFFIX_1, 3); String date = LocalDateTime.now().minusDays(3).toString().replace(":", "-"); File file = new File(logsDir, PREFIX_1 + date + SUFFIX_1); if (!file.createNewFile()) { Assert.fail("Unable to create " + file.getAbsolutePath()); } } @After public void tearDown() { File[] files = logsDir.listFiles(); if (files != null) { for (File file : files) { Assert.assertTrue("Failed to delete [" + file + "]", file.delete()); } Assert.assertTrue("Failed to create [" + logsDir + "]", logsDir.delete()); } } @Test public void testCleanOnInitOneHandler() throws Exception { generateLogFiles(logsDir, PREFIX_1, SUFFIX_1, 3); FileHandler fh1 = new FileHandler(logsDir.getAbsolutePath(), PREFIX_1, SUFFIX_1, Integer.valueOf(2)); fh1.open(); Thread.sleep(1000); Assert.assertTrue(logsDir.list().length == 16); fh1.close(); } @Test public void testCleanOnInitMultipleHandlers() throws Exception { generateLogFiles(logsDir, PREFIX_1, SUFFIX_1, 3); FileHandler fh1 = new FileHandler(logsDir.getAbsolutePath(), PREFIX_1, SUFFIX_1, Integer.valueOf(2)); FileHandler fh2 = new FileHandler(logsDir.getAbsolutePath(), PREFIX_1, SUFFIX_2, Integer.valueOf(2)); FileHandler fh3 = new FileHandler(logsDir.getAbsolutePath(), PREFIX_2, SUFFIX_1, Integer.valueOf(2)); FileHandler fh4 = new FileHandler(logsDir.getAbsolutePath(), PREFIX_3, SUFFIX_1, Integer.valueOf(2)); fh1.open(); fh2.open(); fh3.open(); fh4.open(); Thread.sleep(1000); Assert.assertTrue(logsDir.list().length == 16); fh1.close(); fh2.close(); fh3.close(); fh4.close(); } @Test public void testCleanDisabled() throws Exception { generateLogFiles(logsDir, PREFIX_1, SUFFIX_1, 3); FileHandler fh1 = new FileHandler(logsDir.getAbsolutePath(), PREFIX_1, SUFFIX_1, null); fh1.open(); Thread.sleep(1000); Assert.assertTrue(logsDir.list().length == 17); fh1.close(); } private void generateLogFiles(File dir, String prefix, String suffix, int amount) throws IOException { for (int i = 0; i < amount; i++) { String date = LocalDate.now().minusDays(i + 1).toString().substring(0, 10); File file = new File(dir, prefix + date + suffix); if (!file.createNewFile()) { Assert.fail("Unable to create " + file.getAbsolutePath()); } } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
21.25
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9