public void CheckSetLengthProp () { byte [] data = {0x1f, 0x8b, 0x08, 0x08, 0x70, 0xbb, 0x5d, 0x41, 0x00, 0x03, 0x74, 0x65, 0x73, 0x74, 0x00, 0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00, 0x16, 0x35, 0x96, 0x31, 0x06, 0x00, 0x00, 0x00 }; MemoryStream backing = new MemoryStream (data); GZipStream decompressing = new GZipStream (backing, CompressionMode.Decompress); decompressing.SetLength (20); }
public static void TestSeekMethodsCompress() { var ms = new MemoryStream(); var zip = new GZipStream(ms, CompressionMode.Compress); Assert.False(zip.CanSeek); Assert.Throws<NotSupportedException>(delegate { long value = zip.Length; }); Assert.Throws<NotSupportedException>(delegate { long value = zip.Position; }); Assert.Throws<NotSupportedException>(delegate { zip.Position = 100L; }); Assert.Throws<NotSupportedException>(delegate { zip.SetLength(100L); }); //Should we try all the enums? doesn't seem necessary Assert.Throws<NotSupportedException>(delegate { zip.Seek(100L, SeekOrigin.Begin); }); }
public void CheckSetLengthProp () { MemoryStream backing = new MemoryStream (compressed_data); GZipStream decompressing = new GZipStream (backing, CompressionMode.Decompress); decompressing.SetLength (20); }