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

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

      
    
Rootfs path

      
    
Size
3004 (2.9 KB)
MD5
0f29a981c689f230ac1df21110ff6cb4
SHA1
ba24c96af2b0d5bb462e621593a40760a33af9d1
SHA256
9d7d77cb322aa29329803a3e73932ea05a3fa8b65d4b5b7ba83f8187a9d371d8
SHA512

      
    
SHA1_git
672d26da8db70bee320ff9a8f310609d71618507
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestFileHandlerNonRotatable.java | 2.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.net.URLDecoder; import org.junit.After; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; import org.apache.catalina.startup.LoggingBaseTest; public class TestFileHandlerNonRotatable extends LoggingBaseTest { private FileHandler testHandler; @BeforeClass public static void setUpPerTestClass() throws Exception { LoggingBaseTest.setUpPerTestClass(); System.setProperty("java.util.logging.manager", "org.apache.juli.ClassLoaderLogManager"); String configLoggingPath = TestFileHandlerNonRotatable.class .getResource("logging-non-rotatable.properties") .getFile(); System.setProperty("java.util.logging.config.file", URLDecoder.decode(configLoggingPath, java.nio.charset.StandardCharsets.UTF_8.toString())); } @Override @After public void tearDown() throws Exception { if (testHandler != null) { testHandler.close(); } super.tearDown(); } @Test public void testBug61232() throws Exception { testHandler = new FileHandler(this.getTemporaryDirectory().toString(), "juli.", ".log"); testHandler.open(); File logFile = new File(this.getTemporaryDirectory(), "juli.log"); Assert.assertTrue(logFile.exists()); } @Test public void testCustomSuffixWithoutSeparator() throws Exception { testHandler = new FileHandler(this.getTemporaryDirectory().toString(), "juli.", "log"); testHandler.open(); File logFile = new File(this.getTemporaryDirectory(), "juli.log"); Assert.assertTrue(logFile.exists()); } @Test public void testCustomPrefixWithoutSeparator() throws Exception { testHandler = new FileHandler(this.getTemporaryDirectory().toString(), "juli", ".log"); testHandler.open(); File logFile = new File(this.getTemporaryDirectory(), "juli.log"); Assert.assertTrue(logFile.exists()); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
39.27
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