/* * Copyright (c) 2008-2024 Jonathan Schleifer * * All rights reserved. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3.0 only, * as published by the Free Software Foundation. * * 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 Lesser General Public License * version 3.0 for more details. * * You should have received a copy of the GNU Lesser General Public License * version 3.0 along with this program. If not, see * . */ #include "config.h" #import "ObjFW.h" #import "ObjFWTest.h" #define bufferSize 4096 @interface OFZIPArchiveTests: OTTestCase { char _buffer[bufferSize]; } @end @implementation OFZIPArchiveTests - (void)testCreateAndExtractArchive { OFMemoryStream *stream = [OFMemoryStream streamWithMemoryAddress: _buffer size: bufferSize writable: true]; OFZIPArchive *archive = [OFZIPArchive archiveWithStream: stream mode: @"w"]; OFZIPArchiveEntry *entry = [OFMutableZIPArchiveEntry entryWithFileName: @"testfile.txt"]; OFStream *entryStream = [archive streamForWritingEntry: entry]; size_t size; [entryStream writeString: @"Hello World!"]; [archive close]; size = (size_t)[stream seekToOffset: 0 whence: OFSeekCurrent]; OTAssertLessThanOrEqual(size, bufferSize); stream = [OFMemoryStream streamWithMemoryAddress: _buffer size: size writable: false]; archive = [OFZIPArchive archiveWithStream: stream mode: @"r"]; OTAssertEqual(archive.entries.count, 1); entry = archive.entries.firstObject; OTAssertEqualObjects(entry.fileName, @"testfile.txt"); entryStream = [archive streamForReadingFile: entry.fileName]; OTAssertEqualObjects([entryStream readLine], @"Hello World!"); OTAssertNil([entryStream readLine]); } @end