mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 13:35:38 +00:00
- Refactor `RarReaderTests` to use `ReaderFactory` - Update `ReaderTests.Read` to support Rar tests
67 lines
2.7 KiB
C#
67 lines
2.7 KiB
C#
using System.IO;
|
|
using SharpCompress.Common;
|
|
using SharpCompress.IO;
|
|
using SharpCompress.Readers;
|
|
using SharpCompress.Test.Mocks;
|
|
using Xunit;
|
|
|
|
namespace SharpCompress.Test
|
|
{
|
|
public abstract class ReaderTests : TestBase
|
|
{
|
|
protected void Read(string testArchive, CompressionType expectedCompression, ReaderOptions options = null)
|
|
{
|
|
testArchive = Path.Combine(TEST_ARCHIVES_PATH, testArchive);
|
|
|
|
options = options ?? new ReaderOptions();
|
|
|
|
options.LeaveStreamOpen = true;
|
|
ReadImpl(testArchive, expectedCompression, options);
|
|
|
|
options.LeaveStreamOpen = false;
|
|
ReadImpl(testArchive, expectedCompression, options);
|
|
VerifyFiles();
|
|
}
|
|
|
|
private void ReadImpl(string testArchive, CompressionType expectedCompression, ReaderOptions options)
|
|
{
|
|
using (var file = File.OpenRead(testArchive))
|
|
{
|
|
using (var protectedStream = new NonDisposingStream(new ForwardOnlyStream(file), throwOnDispose: true))
|
|
{
|
|
using (var testStream = new TestStream(protectedStream))
|
|
{
|
|
using (var reader = ReaderFactory.Open(testStream, options))
|
|
{
|
|
UseReader(reader, expectedCompression);
|
|
protectedStream.ThrowOnDispose = false;
|
|
Assert.False(testStream.IsDisposed, "{nameof(testStream)} prematurely closed");
|
|
}
|
|
|
|
// Boolean XOR -- If the stream should be left open (true), then the stream should not be diposed (false)
|
|
// and if the stream should be closed (false), then the stream should be disposed (true)
|
|
var message = $"{nameof(options.LeaveStreamOpen)} is set to '{options.LeaveStreamOpen}', so {nameof(testStream.IsDisposed)} should be set to '{!testStream.IsDisposed}', but is set to {testStream.IsDisposed}";
|
|
Assert.True(options.LeaveStreamOpen != testStream.IsDisposed, message);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public void UseReader(IReader reader, CompressionType expectedCompression)
|
|
{
|
|
while (reader.MoveToNextEntry())
|
|
{
|
|
if (!reader.Entry.IsDirectory)
|
|
{
|
|
Assert.Equal(expectedCompression, reader.Entry.CompressionType);
|
|
reader.WriteEntryToDirectory(SCRATCH_FILES_PATH, new ExtractionOptions()
|
|
{
|
|
ExtractFullPath = true,
|
|
Overwrite = true
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|