mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-13 13:35:28 +00:00
45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
using System.IO;
|
|
|
|
namespace SharpCompress.Test.Mocks;
|
|
|
|
public class TestStream(Stream stream, bool read, bool write, bool seek) : Stream
|
|
{
|
|
public TestStream(Stream stream)
|
|
: this(stream, stream.CanRead, stream.CanWrite, stream.CanSeek) { }
|
|
|
|
public bool IsDisposed { get; private set; }
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
base.Dispose(disposing);
|
|
stream.Dispose();
|
|
IsDisposed = true;
|
|
}
|
|
|
|
public override bool CanRead { get; } = read;
|
|
|
|
public override bool CanSeek { get; } = seek;
|
|
|
|
public override bool CanWrite { get; } = write;
|
|
|
|
public override void Flush() => stream.Flush();
|
|
|
|
public override long Length => stream.Length;
|
|
|
|
public override long Position
|
|
{
|
|
get => stream.Position;
|
|
set => stream.Position = value;
|
|
}
|
|
|
|
public override int Read(byte[] buffer, int offset, int count) =>
|
|
stream.Read(buffer, offset, count);
|
|
|
|
public override long Seek(long offset, SeekOrigin origin) => stream.Seek(offset, origin);
|
|
|
|
public override void SetLength(long value) => stream.SetLength(value);
|
|
|
|
public override void Write(byte[] buffer, int offset, int count) =>
|
|
stream.Write(buffer, offset, count);
|
|
}
|