Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle logs with positive CountDirection, extension preservation and placed in dir #232

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions src/log4net.Tests/Appender/RollingFileAppenderTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ namespace log4net.Tests.Appender;
/// Used for internal unit testing the <see cref="RollingFileAppender"/> class.
/// </summary>
[TestFixture]
public sealed class RollingFileAppenderTest
public class RollingFileAppenderTest
{
private const string FileName = "test_41d3d834_4320f4da.log";
protected string FileName = "test_41d3d834_4320f4da.log";

private const string TestMessage98Chars =
"01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567";
Expand Down Expand Up @@ -99,7 +99,7 @@ private void InitializeVariables()
/// with all appenders, and deletes any test files used
/// for logging.
/// </summary>
private static void ResetAndDeleteTestFiles()
private void ResetAndDeleteTestFiles()
{
// Regular users should not use the clear method lightly!
LogManager.GetRepository().ResetConfiguration();
Expand Down Expand Up @@ -144,7 +144,7 @@ public void TearDown()
/// Finds the number of files that match the base file name,
/// and matches the result against an expected count
/// </summary>
private static void VerifyFileCount(int expectedCount, bool preserveLogFileNameExtension = false)
private void VerifyFileCount(int expectedCount, bool preserveLogFileNameExtension = false)
{
List<string> files = GetExistingFiles(FileName, preserveLogFileNameExtension);
Assert.That(files, Is.Not.Null);
Expand All @@ -154,7 +154,7 @@ private static void VerifyFileCount(int expectedCount, bool preserveLogFileNameE
/// <summary>
/// Creates a file with the given number, and the shared base file name
/// </summary>
private static void CreateFile(int fileNumber)
private void CreateFile(int fileNumber)
{
FileInfo fileInfo = new(MakeFileName(FileName, fileNumber));

Expand Down Expand Up @@ -240,7 +240,7 @@ public void RollingCombinedWithPreserveExtension()
/// <summary>
/// Removes all test files that exist
/// </summary>
private static void DeleteTestFiles()
private void DeleteTestFiles()
{
List<string> files = GetExistingFiles(FileName);
files.AddRange(GetExistingFiles(FileName, true));
Expand Down Expand Up @@ -469,7 +469,7 @@ private static int MessagesPerFile(int messageLength)
/// Current file name is always the base file name when counting. Dates will need a different approach.
/// </summary>
/// <returns></returns>
private static string GetCurrentFile() => FileName;
private string GetCurrentFile() => FileName;

/// <summary>
/// Turns a group of file names into an array of file entries that include the name
Expand Down Expand Up @@ -604,7 +604,7 @@ private static RollConditions BuildTableEntry(string backupFiles,
/// <param name="rollingStats"></param>
/// <param name="currentNext"></param>
/// <returns></returns>
private static RollFileEntry MoveNextEntry(RollingStats rollingStats, RollFileEntry currentNext)
private RollFileEntry MoveNextEntry(RollingStats rollingStats, RollFileEntry currentNext)
{
rollingStats.MessagesThisFile++;
if (rollingStats.MessagesThisFile >= rollingStats.MessagesPerFile)
Expand All @@ -621,7 +621,7 @@ private static RollFileEntry MoveNextEntry(RollingStats rollingStats, RollFileEn
/// Callback point for the regular expression parser. Turns
/// the number into a file name.
/// </summary>
private static string NumberedNameMaker(Match match)
private string NumberedNameMaker(Match match)
=> MakeFileName(FileName, int.Parse(match.Value));

/// <summary>
Expand All @@ -642,7 +642,7 @@ private static string ConvertToFiles(string backupInfo, MatchEvaluator evaluator
/// that results after each message is logged</param>
/// <param name="messagesToLog">How many times the test message will be repeatedly logged</param>
/// <returns></returns>
private static RollConditions[] MakeNumericTestEntries(
private RollConditions[] MakeNumericTestEntries(
string testMessage,
string backupInfo,
int messagesToLog)
Expand All @@ -660,7 +660,7 @@ private static RollConditions[] MakeNumericTestEntries(
/// <param name="messagesToLog">How many times the test message will be repeatedly logged</param>
/// <param name="evaluator">Function that can turn a number into a filename</param>
/// <returns></returns>
private static RollConditions[] MakeTestEntries(
private RollConditions[] MakeTestEntries(
string testMessage,
string backupInfo,
int messagesToLog,
Expand Down Expand Up @@ -1592,7 +1592,7 @@ private static void VerifyInitializeDownFixedExpectedValue(List<string> files, s
///
/// </summary>
/// <param name="fileNumbers">Comma separated list of numbers for counted file names</param>
private static List<string> MakeTestDataFromString(string fileNumbers)
private List<string> MakeTestDataFromString(string fileNumbers)
=> MakeTestDataFromString(FileName, fileNumbers);

/// <summary>
Expand Down
33 changes: 33 additions & 0 deletions src/log4net.Tests/Appender/RollingFileAppenderWithDirTest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#region Apache License

//
// 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.
//

#endregion

using System.IO;
using NUnit.Framework;

namespace log4net.Tests.Appender;

[TestFixture]
public class RollingFileAppenderWithDirTest : RollingFileAppenderTest {
public RollingFileAppenderWithDirTest()
{
base.FileName = Path.Combine(@".\dir\", base.FileName);
}
}
13 changes: 10 additions & 3 deletions src/log4net/Appender/RollingFileAppender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,7 @@ protected List<string> GetExistingFiles(string baseFilePath)
using (SecurityContext?.Impersonate(this))
{
string fullPath = Path.GetFullPath(baseFilePath);
string dir = Path.GetDirectoryName(baseFilePath);

directory = Path.GetDirectoryName(fullPath);
if (Directory.Exists(directory))
Expand All @@ -690,7 +691,8 @@ protected List<string> GetExistingFiles(string baseFilePath)
string[] files = Directory.GetFiles(directory, GetWildcardPatternForFile(baseFileName));
result.AddRange(files
.Select(Path.GetFileName)
.Where(curFileName => curFileName.StartsWith(Path.GetFileNameWithoutExtension(baseFileName))));
.Where(curFileName => curFileName.StartsWith(Path.GetFileNameWithoutExtension(baseFileName)))
.Select(file => Path.Combine(dir, file)));
}
}
LogLog.Debug(_declaringType, "Searched for existing files in [" + directory + "]");
Expand Down Expand Up @@ -789,7 +791,9 @@ private void InitializeFromOneFile(string baseFile, string curFileName)
{
curFileName = curFileName.ToLowerInvariant();
baseFile = baseFile.ToLowerInvariant();
if (curFileName.StartsWith(Path.GetFileNameWithoutExtension(baseFile)) == false)
var baseFileWithoutExtension = Path.Combine(Path.GetDirectoryName(baseFile), Path.GetFileNameWithoutExtension(baseFile));

if (curFileName.StartsWith(baseFileWithoutExtension) == false)
{
return; // This is not a log file, so ignore
}
Expand Down Expand Up @@ -1171,8 +1175,11 @@ protected bool FileExists(string path)
/// </remarks>
protected void DeleteFile(string fileName)
{
LogLog.Debug(_declaringType, $"Trying to delete [{fileName}]");

if (!FileExists(fileName))
{
LogLog.Debug(_declaringType, $"[{fileName}] does not exist");
return;
}
// We may not have permission to delete the file, or the file may be locked
Expand Down Expand Up @@ -1346,7 +1353,7 @@ protected virtual void RollOverRenameFiles(string baseFileName)
if (PreserveLogFileNameExtension)
{
string extension = Path.GetExtension(archiveFileBaseName);
string baseName = Path.GetFileNameWithoutExtension(archiveFileBaseName);
string baseName = Path.Combine(Path.GetDirectoryName(archiveFileBaseName), Path.GetFileNameWithoutExtension(archiveFileBaseName));
int lastDotIndex = baseName.LastIndexOf(".", StringComparison.Ordinal);
if (lastDotIndex >= 0)
{
Expand Down