1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
/* -*- Mode: csharp; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
//
// DeflateStreamTest.cs - NUnit Test Cases for the System.IO.Compression.DeflateStream class
//
// Authors:
// Christopher James Lahey <clahey@ximian.com>
//
// (C) 2004 Novell, Inc. <http://www.novell.com>
//
#if NET_2_0
using NUnit.Framework;
using System;
using System.IO;
using System.IO.Compression;
namespace MonoTests.System.IO.Compression
{
[TestFixture]
public class DeflateStreamTest : Assertion
{
private static void CopyStream (Stream src, Stream dest)
{
byte[] array = new byte[1024];
int bytes_read;
bytes_read = src.Read (array, 0, 1024);
while (bytes_read != 0) {
dest.Write (array, 0, bytes_read);
bytes_read = src.Read (array, 0, 1024);
}
}
private static bool compare_buffers (byte[] first, byte[] second, int length)
{
if (first.Length < length || second.Length < length) {
return false;
}
for (int i = 0; i < length; i++) {
if (first[i] != second[i]) {
return false;
}
}
return true;
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void Constructor_Null ()
{
DeflateStream ds = new DeflateStream (null, CompressionMode.Compress);
}
[Test]
[ExpectedException (typeof (ArgumentException))]
public void Constructor_InvalidCompressionMode ()
{
DeflateStream ds = new DeflateStream (new MemoryStream (), (CompressionMode)Int32.MinValue);
}
[Test]
public void CheckCompressDecompress () {
byte [] data = new byte[100000];
for (int i = 0; i < 100000; i++) {
data[i] = (byte) i;
}
MemoryStream dataStream = new MemoryStream (data);
MemoryStream backing = new MemoryStream ();
DeflateStream compressing = new DeflateStream (backing, CompressionMode.Compress, true);
CopyStream (dataStream, compressing);
dataStream.Close();
compressing.Close();
backing.Seek (0, SeekOrigin.Begin);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
MemoryStream output = new MemoryStream ();
CopyStream (decompressing, output);
Assert (compare_buffers (data, output.GetBuffer(), (int) output.Length));
decompressing.Close();
output.Close();
}
[Test]
public void CheckDecompress () {
byte [] data = {0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
MemoryStream backing = new MemoryStream (data);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
StreamReader reader = new StreamReader (decompressing);
AssertEquals (reader.ReadLine (), "Hello");
decompressing.Close();
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void CheckNullRead () {
byte [] data = {0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
MemoryStream backing = new MemoryStream (data);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
decompressing.Read (null, 0, 20);
}
[Test]
[ExpectedException (typeof (InvalidOperationException))]
public void CheckCompressingRead () {
byte [] dummy = new byte[20];
MemoryStream backing = new MemoryStream ();
DeflateStream compressing = new DeflateStream (backing, CompressionMode.Compress);
compressing.Read (dummy, 0, 20);
}
[Test]
[ExpectedException (typeof (ArgumentException))]
public void CheckRangeRead () {
byte [] data = {0x11, 0x78, 0x89, 0x91, 0xbe, 0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
byte [] dummy = new byte[20];
MemoryStream backing = new MemoryStream (data);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
decompressing.Read (dummy, 10, 20);
}
[Test]
[ExpectedException (typeof (InvalidDataException))]
public void CheckInvalidDataRead () {
byte [] data = {0x11, 0x78, 0x89, 0x91, 0xbe, 0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
byte [] dummy = new byte[20];
MemoryStream backing = new MemoryStream (data);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
decompressing.Read (dummy, 0, 20);
}
[Test]
[ExpectedException (typeof (ObjectDisposedException))]
public void CheckClosedRead () {
byte [] data = {0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
byte [] dummy = new byte[20];
MemoryStream backing = new MemoryStream (data);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
decompressing.Close ();
decompressing.Read (dummy, 0, 20);
}
[Test]
[ExpectedException (typeof (ObjectDisposedException))]
public void CheckClosedFlush () {
MemoryStream backing = new MemoryStream ();
DeflateStream compressing = new DeflateStream (backing, CompressionMode.Compress);
compressing.Close ();
compressing.Flush ();
}
[Test]
[ExpectedException (typeof (NotSupportedException))]
public void CheckSeek () {
byte [] data = {0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
MemoryStream backing = new MemoryStream (data);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
decompressing.Seek (20, SeekOrigin.Current);
}
[Test]
[ExpectedException (typeof (NotSupportedException))]
public void CheckSetLength () {
byte [] data = {0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
MemoryStream backing = new MemoryStream (data);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
decompressing.SetLength (20);
}
[Test]
public void CheckGetCanSeekProp () {
byte [] data = {0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
MemoryStream backing = new MemoryStream (data);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
AssertEquals (false, decompressing.CanSeek);
}
[Test]
public void CheckGetCanReadProp () {
byte [] data = {0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
MemoryStream backing = new MemoryStream (data);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
AssertEquals (true, decompressing.CanRead);
}
[Test]
public void CheckGetCanWriteProp () {
MemoryStream backing = new MemoryStream ();
DeflateStream compressing = new DeflateStream (backing, CompressionMode.Decompress);
AssertEquals (false, compressing.CanWrite);
}
[Test]
[ExpectedException (typeof (NotSupportedException))]
public void CheckSetLengthProp () {
byte [] data = {0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
MemoryStream backing = new MemoryStream (data);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
decompressing.SetLength (20);
}
[Test]
[ExpectedException (typeof (NotSupportedException))]
public void CheckGetLengthProp () {
byte [] data = {0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
MemoryStream backing = new MemoryStream (data);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
long length = decompressing.Length;
}
[Test]
[ExpectedException (typeof (NotSupportedException))]
public void CheckGetPositionProp () {
byte [] data = {0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00 };
MemoryStream backing = new MemoryStream (data);
DeflateStream decompressing = new DeflateStream (backing, CompressionMode.Decompress);
long position = decompressing.Position;
}
}
}
#endif
|