| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 |
- // Software License Agreement (BSD License)
- //
- // Copyright (c) 2010-2025, Deusty, LLC
- // All rights reserved.
- //
- // Redistribution and use of this software in source and binary forms,
- // with or without modification, are permitted provided that the following conditions are met:
- //
- // * Redistributions of source code must retain the above copyright notice,
- // this list of conditions and the following disclaimer.
- //
- // * Neither the name of Deusty nor the names of its contributors may be used
- // to endorse or promote products derived from this software without specific
- // prior written permission of Deusty, LLC.
- @import XCTest;
- #import <CocoaLumberjack/DDFileLogger.h>
- #import <CocoaLumberjack/DDFileLogger+Buffering.h>
- #import <CocoaLumberjack/DDLogMacros.h>
- #import <sys/xattr.h>
- #import "DDSampleFileManager.h"
- static const DDLogLevel ddLogLevel = DDLogLevelAll;
- @interface DDFileLogger (Testing)
- - (nullable NSData *)lt_dataForMessage:(nonnull DDLogMessage *)logMessage;
- @end
- @interface DDMockedSerializer: NSObject <DDFileLogMessageSerializer>
- @property (nonatomic, nonnull, readonly) NSData * _Nonnull(^serializerBlock)(NSString * _Nonnull, DDLogMessage * _Nullable);
- - (instancetype)initWithSerializerBlock:(NSData * _Nonnull(^_Nonnull)(NSString * _Nonnull, DDLogMessage * _Nullable))serializerBlock;
- @end
- @implementation DDMockedSerializer
- @synthesize serializerBlock = _serializerBlock;
- - (instancetype)initWithSerializerBlock:(NSData * _Nonnull(^)(NSString * _Nonnull, DDLogMessage * _Nullable))serializerBlock {
- if (self = [super init]) {
- self->_serializerBlock = serializerBlock;
- }
- return self;
- }
- - (NSData *)dataForString:(NSString *)string originatingFromMessage:(DDLogMessage *)message {
- return self.serializerBlock(string, message);
- }
- @end
- @interface DDFileLoggerTests : XCTestCase {
- DDSampleFileManager *logFileManager;
- DDFileLogger *logger;
- NSString *logsDirectory;
- }
- @end
- @implementation DDFileLoggerTests
- - (void)setUp {
- [super setUp];
- logFileManager = [[DDSampleFileManager alloc] initWithLogFileHeader:@"header"];
- logger = [[DDFileLogger alloc] initWithLogFileManager:logFileManager];
- logsDirectory = logger.logFileManager.logsDirectory;
- }
- - (void)tearDown {
- [super tearDown];
- [DDLog removeAllLoggers];
- // We need to sync all involved queues to wait for the post-removal processing of the logger to finish before deleting the files.
- NSAssert(![self->logger isOnGlobalLoggingQueue], @"Trouble ahead!");
- dispatch_sync(DDLog.loggingQueue, ^{
- NSAssert(![self->logger isOnInternalLoggerQueue], @"Trouble ahead!");
- dispatch_sync(self->logger.loggerQueue, ^{
- /* noop */
- });
- });
- NSError *error = nil;
- __auto_type contents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:logsDirectory error:&error];
- XCTAssertNil(error);
- for (NSString *path in contents) {
- error = nil;
- XCTAssertTrue([[NSFileManager defaultManager] removeItemAtPath:[logsDirectory stringByAppendingPathComponent:path] error:&error]);
- XCTAssertNil(error);
- }
- error = nil;
- XCTAssertTrue([[NSFileManager defaultManager] removeItemAtPath:logsDirectory error:&error]);
- XCTAssertNil(error);
- logFileManager = nil;
- logger = nil;
- logsDirectory = nil;
- }
- - (void)testExplicitLogFileRolling {
- [DDLog addLogger:logger];
- DDLogError(@"Some log in the old file");
- __auto_type oldLogFileInfo = [logger currentLogFileInfo];
- __auto_type expectation = [self expectationWithDescription:@"Waiting for the log file to be rolled"];
- [logger rollLogFileWithCompletionBlock:^{
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:3 handler:^(NSError * _Nullable error) {
- XCTAssertNil(error);
- }];
- __auto_type newLogFileInfo = [logger currentLogFileInfo];
- XCTAssertNotNil(oldLogFileInfo);
- XCTAssertNotNil(newLogFileInfo);
- XCTAssertNotEqualObjects(oldLogFileInfo.filePath, newLogFileInfo.filePath);
- XCTAssertEqualObjects(oldLogFileInfo.filePath, logFileManager.archivedLogFilePath);
- XCTAssertTrue(oldLogFileInfo.isArchived);
- XCTAssertFalse(newLogFileInfo.isArchived);
- }
- - (void)testLoggingAfterLogFileRolling {
- [DDLog addLogger:logger];
- DDLogError(@"Some log in the old file");
- __auto_type oldLogFileInfo = [logger currentLogFileInfo];
- __auto_type expectation = [self expectationWithDescription:@"Waiting for the log file to be rolled"];
- [logger rollLogFileWithCompletionBlock:^{
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:3 handler:^(NSError * _Nullable error) {
- XCTAssertNil(error);
- }];
- DDLogError(@"Some log in the new file");
- __auto_type newLogFileInfo = [logger currentLogFileInfo];
- XCTAssertTrue([[NSFileManager defaultManager] fileExistsAtPath:oldLogFileInfo.filePath]);
- XCTAssertTrue([[NSFileManager defaultManager] fileExistsAtPath:newLogFileInfo.filePath]);
- __auto_type oldString = [NSString stringWithContentsOfFile:oldLogFileInfo.filePath
- encoding:NSUTF8StringEncoding
- error:nil];
- __auto_type newString = [NSString stringWithContentsOfFile:newLogFileInfo.filePath
- encoding:NSUTF8StringEncoding
- error:nil];
- XCTAssertFalse(oldString.length == 0);
- XCTAssertFalse(newString.length == 0);
- XCTAssertTrue([oldString containsString:@"Some log in the old file"]);
- XCTAssertTrue([newString containsString:@"Some log in the new file"]);
- }
- - (void)testExplicitLogFileRollingWhenNotReusingLogFiles {
- logger.doNotReuseLogFiles = YES;
- [DDLog addLogger:logger];
- DDLogError(@"Log 1 in the old file");
- DDLogError(@"Log 2 in the old file");
- __auto_type expectation = [self expectationWithDescription:@"Waiting for the log file to be rolled"];
- [logger rollLogFileWithCompletionBlock:^{
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:3 handler:^(NSError * _Nullable error) {
- XCTAssertNil(error);
- }];
- DDLogError(@"Log 1 in the new file");
- DDLogError(@"Log 2 in the new file");
- XCTAssertEqual(logger.logFileManager.unsortedLogFileInfos.count, 2);
- }
- - (void)testAutomaticLogFileRollingWhenNotReusingLogFiles {
- // Use new logger so that it appears to be resuming.
- DDFileLogger *newLogger = [[DDFileLogger alloc] initWithLogFileManager:logFileManager];
- newLogger.doNotReuseLogFiles = YES;
- [DDLog addLogger:logger];
- DDLogError(@"Some log in the old file");
- __auto_type oldLogFileInfo = [logger currentLogFileInfo];
- usleep(1000); // prevent file name clash due to same time.
- __auto_type newLogFileInfo = [newLogger currentLogFileInfo];
- XCTAssertNotNil(oldLogFileInfo);
- XCTAssertNotNil(newLogFileInfo);
- XCTAssertNotEqualObjects(oldLogFileInfo.filePath, newLogFileInfo.filePath);
- XCTAssertEqualObjects(oldLogFileInfo.filePath, logFileManager.archivedLogFilePath);
- XCTAssertTrue(oldLogFileInfo.isArchived);
- XCTAssertFalse(newLogFileInfo.isArchived);
- }
- - (void)testCurrentLogFileInfoWhenNotReusingLogFilesOnlyCreatesNewLogFilesIfNecessary {
- logger.doNotReuseLogFiles = YES;
- __auto_type info1 = logger.currentLogFileInfo;
- __auto_type info2 = logger.currentLogFileInfo;
- XCTAssertEqualObjects(info1.filePath, info2.filePath);
- info2.isArchived = YES;
- usleep(1000); // make sure we have a different msec count. Otherwise the file names might be equal.
- __auto_type info3 = logger.currentLogFileInfo;
- __auto_type info4 = logger.currentLogFileInfo;
- XCTAssertEqualObjects(info3.filePath, info4.filePath);
- XCTAssertNotEqualObjects(info2.filePath, info3.filePath);
- XCTAssertEqual(logger.logFileManager.unsortedLogFileInfos.count, 2);
- }
- - (void)testExtendedAttributes {
- logger.doNotReuseLogFiles = YES;
- __auto_type info = logger.currentLogFileInfo;
- char buffer[1];
- ssize_t result = getxattr([info.filePath fileSystemRepresentation], "lumberjack.log.archived", buffer, 1, 0, 0);
- XCTAssertLessThan(result, 0);
- XCTAssertEqual(errno, ENOATTR);
- info.isArchived = YES;
- XCTAssertTrue(info.isArchived);
- result = getxattr([info.filePath fileSystemRepresentation], "lumberjack.log.archived", buffer, 1, 0, 0);
- XCTAssertEqual(result, 1);
- XCTAssertEqual(buffer[0], 0x01);
- info.isArchived = NO;
- XCTAssertFalse(info.isArchived);
- result = getxattr([info.filePath fileSystemRepresentation], "lumberjack.log.archived", buffer, 1, 0, 0);
- XCTAssertLessThan(result, 0);
- XCTAssertEqual(errno, ENOATTR);
- }
- - (void)testExtendedAttributesBackwardCompatibility {
- logger.doNotReuseLogFiles = YES;
- __auto_type info = logger.currentLogFileInfo;
- char buffer[1];
- #if TARGET_IPHONE_SIMULATOR
- [info renameFile:@"dummy.archived.log"];
- XCTAssertTrue(info.isArchived);
- ssize_t result = getxattr([info.filePath fileSystemRepresentation], "lumberjack.log.archived", buffer, 1, 0, 0);
- XCTAssertEqual(result, 1);
- XCTAssertEqual(buffer[0], 0x01);
- XCTAssertEqualObjects(info.fileName, @"dummy.log");
- [info renameFile:@"dummy.archived.log"];
- info.isArchived = YES;
- XCTAssertTrue(info.isArchived);
- XCTAssertEqualObjects(info.fileName, @"dummy.log");
- [info renameFile:@"dummy.archived.log"];
- info.isArchived = NO;
- XCTAssertFalse(info.isArchived);
- XCTAssertEqualObjects(info.fileName, @"dummy.log");
- #else
- int err = setxattr([info.filePath fileSystemRepresentation], "lumberjack.log.archived", "", 0, 0, 0);
- XCTAssertEqual(err, 0);
- XCTAssertTrue(info.isArchived);
- ssize_t result = getxattr([info.filePath fileSystemRepresentation], "lumberjack.log.archived", buffer, 1, 0, 0);
- XCTAssertEqual(result, 1);
- XCTAssertEqual(buffer[0], 0x01);
- #endif
- }
- - (void)testMaximumNumberOfLogFiles {
- logger.doNotReuseLogFiles = YES;
- logger.logFileManager.maximumNumberOfLogFiles = 4;
- logger.maximumFileSize = 10;
- [DDLog addLogger:logger];
- DDLogError(@"Log 1 in the file");
- DDLogError(@"Log 2 in the file");
- DDLogError(@"Log 3 in the file");
- DDLogError(@"Log 4 in the file");
-
- /// wait log queue finish.
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
- NSArray *oldFileNames = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:self->logger.logFileManager.logsDirectory error:nil];
- XCTAssertEqual(oldFileNames.count, 4);
-
- self->logger.logFileManager.maximumNumberOfLogFiles = 2;
-
- /// wait delete old files finish.
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
- NSArray *newFileNames = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:self->logger.logFileManager.logsDirectory error:nil];
- XCTAssertEqual(newFileNames.count, 2);
- });
- });
- }
- - (void)testWrapping {
- __auto_type wrapped = [logger wrapWithBuffer];
- XCTAssert([wrapped.class isSubclassOfClass:NSProxy.class]);
- __auto_type wrapped2 = [wrapped wrapWithBuffer];
- XCTAssertEqual(wrapped2, wrapped);
- __auto_type unwrapped = [wrapped unwrapFromBuffer];
- XCTAssert([unwrapped.class isSubclassOfClass:DDFileLogger.class]);
- __auto_type unwrapped2 = [unwrapped unwrapFromBuffer];
- XCTAssertEqual(unwrapped2, unwrapped);
- }
- - (void)testWriteToFileUnbuffered {
- logger = [logger unwrapFromBuffer];
- [DDLog addLogger:logger];
- DDLogError(@"%@", @"error");
- DDLogWarn(@"%@", @"warn");
- DDLogInfo(@"%@", @"info");
- DDLogDebug(@"%@", @"debug");
- DDLogVerbose(@"%@", @"verbose");
- [DDLog flushLog];
-
- NSString* filePath = logger.currentLogFileInfo.filePath;
- XCTAssertNotNil(filePath);
- NSError *error = nil;
- NSData *data = [NSData dataWithContentsOfFile:filePath options:NSDataReadingUncached error:&error];
- XCTAssertNil(error);
- NSString *contents = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
- XCTAssertEqual([contents componentsSeparatedByString:@"\n"].count, 5 + 2);
- }
- - (void)testWriteToFileBuffered {
- logger = [logger wrapWithBuffer];
- [DDLog addLogger:logger];
- DDLogError(@"%@", @"error");
- DDLogWarn(@"%@", @"warn");
- DDLogInfo(@"%@", @"info");
- DDLogDebug(@"%@", @"debug");
- DDLogVerbose(@"%@", @"verbose");
- [DDLog flushLog];
-
- NSString* filePath = logger.currentLogFileInfo.filePath;
- XCTAssertNotNil(filePath);
- NSError *error = nil;
- NSData *data = [NSData dataWithContentsOfFile:filePath options:NSDataReadingUncached error:&error];
- XCTAssertNil(error);
- NSString *contents = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
- XCTAssertEqual([contents componentsSeparatedByString:@"\n"].count, 5 + 2);
- }
- - (void)testOverwriteSymlink {
- NSString* customFileName = @"testIgnoreSymlink_file_name.log";
- logFileManager.customLogFileName = customFileName;
- NSString* logFileName = [logFileManager.logsDirectory stringByAppendingPathComponent:customFileName];
- NSString *tempFilePath = [NSTemporaryDirectory() stringByAppendingPathComponent:[[NSUUID UUID] UUIDString]];
- [NSFileManager.defaultManager createFileAtPath:tempFilePath contents:nil attributes:nil];
- [NSFileManager.defaultManager createDirectoryAtPath:logFileManager.logsDirectory
- withIntermediateDirectories:YES
- attributes:nil
- error:nil];
- [NSFileManager.defaultManager createSymbolicLinkAtPath:logFileName withDestinationPath:tempFilePath error:nil];
- __auto_type info = logger.currentLogFileInfo;
- XCTAssertEqualObjects(info.fileName, customFileName);
- XCTAssertFalse(info.isSymlink);
- }
- - (void)testSerializer {
- logFileManager.logMessageSerializer = [[DDMockedSerializer alloc] initWithSerializerBlock:^NSData *(NSString * string, DDLogMessage * msg) {
- NSString *resultingString = [NSString stringWithFormat:@"MessageLength: %lu; Message: %@", string.length, string];
- if (msg) {
- resultingString = [resultingString stringByAppendingString:@"; Message was non-nil"];
- }
- return [resultingString dataUsingEncoding:NSUTF8StringEncoding];
- }];
- logger.logFormatter = nil;
- __auto_type msg = [[DDLogMessage alloc] initWithFormat:@"SOME FORMAT"
- formatted:@"FORMATTED"
- level:DDLogLevelInfo
- flag:DDLogFlagInfo
- context:0
- file:@"FILE"
- function:@"FUNCTION"
- line:1
- tag:nil
- options:0
- timestamp:[NSDate date]];
- __block NSData *data = nil;
- dispatch_sync(DDLog.loggingQueue, ^{
- dispatch_sync(logger->_loggerQueue, ^{
- data = [logger lt_dataForMessage:msg];
- });
- });
- XCTAssertNotNil(data);
- __auto_type string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
- XCTAssertNotNil(string);
- __auto_type formattedMsg = [msg.message stringByAppendingString:@"\n"];
- __auto_type expectedString = [NSString stringWithFormat:@"MessageLength: %ld; Message: %@; Message was non-nil", formattedMsg.length, formattedMsg];
- XCTAssertEqualObjects(string, expectedString);
- }
- @end
|