| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055 |
- // FileStreamTests.cs - NUnit2 Test Cases for System.IO.FileStream class
- //
- // Authors:
- // Ville Palo ([email protected])
- // Gert Driesen ([email protected])
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) Ville Palo
- // (c) 2003 Ximian, Inc. (http://www.ximian.com)
- //
- using NUnit.Framework;
- using System;
- using System.IO;
- using System.Text;
- namespace MonoTests.System.IO
- {
- [TestFixture]
- public class FileStreamTest : Assertion
- {
- string TempFolder = Path.Combine (Path.GetTempPath (), "MonoTests.System.IO.Tests");
- static readonly char DSC = Path.DirectorySeparatorChar;
- [TearDown]
- public void TearDown()
- {
- if (Directory.Exists (TempFolder))
- Directory.Delete (TempFolder, true);
- }
- [SetUp]
- public void SetUp ()
- {
- if (Directory.Exists (TempFolder))
- Directory.Delete (TempFolder, true);
- Directory.CreateDirectory (TempFolder);
- }
- public void TestCtr ()
- {
- string path = TempFolder + DSC + "testfilestream.tmp.1";
- DeleteFile (path);
- FileStream stream = null;
- try {
- stream = new FileStream (path, FileMode.Create);
- } finally {
- if (stream != null)
- stream.Close ();
- DeleteFile (path);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void CtorArgumentException1 ()
- {
- FileStream stream;
- stream = new FileStream ("", FileMode.Create);
- stream.Close ();
- }
- [Test]
- [ExpectedException (typeof (ArgumentNullException))]
- public void CtorArgumentNullException ()
- {
- FileStream stream = new FileStream (null, FileMode.Create);
- stream.Close ();
- }
- [Test]
- [ExpectedException (typeof (FileNotFoundException))]
- public void CtorFileNotFoundException1 ()
- {
- string path = TempFolder + DSC + "thisfileshouldnotexists.test";
- DeleteFile (path);
- FileStream stream = null;
- try {
- stream = new FileStream (TempFolder + DSC + "thisfileshouldnotexists.test", FileMode.Open);
- } finally {
- if (stream != null)
- stream.Close ();
- DeleteFile (path);
- }
- }
- [Test]
- [ExpectedException (typeof (FileNotFoundException))]
- public void CtorFileNotFoundException2 ()
- {
- string path = TempFolder + DSC + "thisfileshouldNOTexists.test";
- DeleteFile (path);
- FileStream stream = null;
- try {
- stream = new FileStream (TempFolder + DSC + "thisfileshouldNOTexists.test", FileMode.Truncate);
- } finally {
- if (stream != null)
- stream.Close ();
- DeleteFile (path);
- }
- }
- [Test]
- [ExpectedException (typeof (IOException))]
- public void CtorIOException1 ()
- {
- string path = TempFolder + DSC + "thisfileshouldexists.test";
- FileStream stream = null;
- DeleteFile (path);
- try {
- stream = new FileStream (path, FileMode.CreateNew);
- stream.Close ();
- stream = null;
- stream = new FileStream (path, FileMode.CreateNew);
- } finally {
-
- if (stream != null)
- stream.Close ();
- DeleteFile (path);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void CtorArgumentOutOfRangeException1 ()
- {
- FileStream stream = null;
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- try {
- stream = new FileStream (path, FileMode.Append | FileMode.CreateNew);
- } finally {
- if (stream != null)
- stream.Close ();
- DeleteFile (path);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void CtorArgumentOutOfRangeException2 ()
- {
- FileStream stream = null;
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- try {
- stream = new FileStream ("test.test.test", FileMode.Append | FileMode.Open);
- } finally {
- if (stream != null)
- stream.Close ();
- DeleteFile (path);
- }
- }
- [Test]
- [ExpectedException (typeof (DirectoryNotFoundException))]
- public void CtorDirectoryNotFoundException ()
- {
- string path = TempFolder + DSC + "thisDirectoryShouldNotExists";
- if (Directory.Exists (path))
- Directory.Delete (path, true);
- FileStream stream = null;
- try {
- stream = new FileStream (path + DSC + "eitherthisfile.test", FileMode.CreateNew);
- } finally {
- if (stream != null)
- stream.Close ();
- if (Directory.Exists (path))
- Directory.Delete (path, true);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void CtorArgumentOutOfRangeException3 ()
- {
- string path = TempFolder + DSC + "CtorArgumentOutOfRangeException1";
- DeleteFile (path);
-
- FileStream stream = null;
- try {
- stream = new FileStream (path, FileMode.CreateNew, FileAccess.Read, FileShare.None | FileShare.Inheritable);
- } finally {
- if (stream != null)
- stream.Close ();
- DeleteFile (path);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void CtorArgumentOutOfRangeException4 ()
- {
- string path = TempFolder + DSC + "CtorArgumentOutOfRangeException4";
- DeleteFile (path);
- FileStream stream = null;
- try {
- stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Read, FileShare.ReadWrite, -1);
- } finally {
- if (stream != null)
- stream.Close ();
- DeleteFile (path);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void CtorBufferSizeZero ()
- {
- // Buffer size can't be zero
- string path = Path.Combine (TempFolder, "CtorBufferSizeZero");
- DeleteFile (path);
- FileStream stream = null;
- try {
- stream = new FileStream (path, FileMode.CreateNew, FileAccess.Write, FileShare.ReadWrite, 0);
- } finally {
- if (stream != null)
- stream.Close ();
- DeleteFile (path);
- }
- }
-
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void CtorArgumentException2 ()
- {
- // FileMode.CreateNew && FileAccess.Read
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- FileStream stream = null;
- DeleteFile (path);
- try {
- stream = new FileStream (".test.test.test.2", FileMode.CreateNew, FileAccess.Read, FileShare.None | FileShare.Write);
- } finally {
- if (stream != null)
- stream.Close ();
- DeleteFile (path);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void CtorArgumentOutOfRangeException5 ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- FileStream stream = null;
- try {
- stream = new FileStream (path, FileMode.CreateNew, FileAccess.Read, FileShare.Inheritable | FileShare.ReadWrite);
- } finally {
- if (stream != null)
- stream.Close ();
- DeleteFile (path);
- }
- }
-
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void CtorArgumentException3 ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- FileStream stream = null;
- DeleteFile (path);
-
- try {
- stream = new FileStream (".test.test.test.2", FileMode.Truncate, FileAccess.Read);
- } finally {
- if (stream != null)
- stream.Close ();
-
- DeleteFile (path);
- }
- }
- [Test, ExpectedException (typeof (IOException))]
- public void CtorIOException2 ()
- {
- FileStream stream = null;
- try {
- stream = new FileStream (new IntPtr (Int32.MaxValue), FileAccess.Read);
- } finally {
- if (stream != null)
- stream.Close ();
- }
- }
- [Test, ExpectedException(typeof(IOException))]
- public void CtorIOException ()
- {
- string path = TempFolder + DSC + "CTorIOException.Test";
- FileStream stream = null;
- FileStream stream2 = null;
- DeleteFile (path);
- try {
- stream = new FileStream (path, FileMode.CreateNew);
-
- // used by an another process
- stream2 = new FileStream (path, FileMode.OpenOrCreate);
- } finally {
- if (stream != null)
- stream.Close ();
- if (stream2 != null)
- stream2.Close ();
- DeleteFile (path);
- }
- }
- [Test]
- public void CtorAccess1Read2Read ()
- {
- FileStream fs = null;
- FileStream fs2 = null;
- try {
- if (!File.Exists ("temp")) {
- TextWriter tw = File.CreateText ("temp");
- tw.Write ("FOO");
- tw.Close ();
- }
- fs = new FileStream ("temp", FileMode.Open, FileAccess.Read);
- fs2 = new FileStream ("temp", FileMode.Open, FileAccess.Read);
- } finally {
- if (fs != null)
- fs.Close ();
- if (fs2 != null)
- fs2.Close ();
- if (File.Exists ("temp"))
- File.Delete ("temp");
- }
- }
- [Test]
- [ExpectedException (typeof (IOException))]
- public void CtorAccess1Read2Write ()
- {
- FileStream fs = null;
- try {
- if (!File.Exists ("temp")) {
- using (TextWriter tw = File.CreateText ("temp")) {
- tw.Write ("FOO");
- }
- }
- fs = new FileStream ("temp", FileMode.Open, FileAccess.Read);
- fs = new FileStream ("temp", FileMode.Create, FileAccess.Write);
- } finally {
- if (fs != null)
- fs.Close ();
- if (File.Exists ("temp"))
- File.Delete ("temp");
- }
- }
- [Test]
- [ExpectedException (typeof (IOException))]
- public void CtorAccess1Write2Write ()
- {
- FileStream fs = null;
- try {
- if (File.Exists ("temp"))
- File.Delete ("temp");
- fs = new FileStream ("temp", FileMode.Create, FileAccess.Write);
- fs = new FileStream ("temp", FileMode.Create, FileAccess.Write);
- } finally {
- if (fs != null)
- fs.Close ();
- if (File.Exists ("temp"))
- File.Delete ("temp");
- }
- }
- [Test]
- public void Write ()
- {
- string path = TempFolder + DSC + "FileStreamTest.Write";
- DeleteFile (path);
- FileStream stream = new FileStream (path, FileMode.CreateNew, FileAccess.ReadWrite, FileShare.ReadWrite, 8);
- byte[] outbytes = new byte [] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16};
- byte[] bytes = new byte [15];
- // Check that the data is flushed when we overflow the buffer
- // with a large amount of data
- stream.Write (outbytes, 0, 5);
- stream.Write (outbytes, 5, 10);
- stream.Seek (0, SeekOrigin.Begin);
- stream.Read (bytes, 0, 15);
- for (int i = 0; i < 15; ++i)
- AssertEquals (i + 1, bytes [i]);
- // Check that the data is flushed when we overflow the buffer
- // with a small amount of data
- stream.Write (outbytes, 0, 7);
- stream.Write (outbytes, 7, 7);
- stream.Write (outbytes, 14, 1);
- stream.Read (bytes, 0, 15);
- stream.Seek (15, SeekOrigin.Begin);
- for (int i = 0; i < 15; ++i)
- AssertEquals (i + 1, bytes [i]);
- stream.Close ();
- }
- [Test]
- public void Length ()
- {
- // Test that the Length property takes into account the data
- // in the buffer
- string path = TempFolder + DSC + "FileStreamTest.Length";
- DeleteFile (path);
- FileStream stream = new FileStream (path, FileMode.CreateNew);
- byte[] outbytes = new byte [] {1, 2, 3, 4};
- stream.Write (outbytes, 0, 4);
- AssertEquals (stream.Length, 4);
- stream.Close ();
- }
-
- [Test]
- public void Flush ()
- {
- string path = TempFolder + DSC + "FileStreamTest.Flush";
- FileStream stream = null;
- FileStream stream2 = null;
- DeleteFile (path);
-
- try {
- stream = new FileStream (path, FileMode.CreateNew, FileAccess.ReadWrite, FileShare.ReadWrite);
- stream2 = new FileStream (path, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite);
- stream.Write (new byte [] {1, 2, 3, 4, 5}, 0, 5);
-
- byte [] bytes = new byte [5];
- stream2.Read (bytes, 0, 5);
-
- AssertEquals ("test#01", 0, bytes [0]);
- AssertEquals ("test#02", 0, bytes [1]);
- AssertEquals ("test#03", 0, bytes [2]);
- AssertEquals ("test#04", 0, bytes [3]);
-
- stream.Flush ();
- stream2.Read (bytes, 0, 5);
- AssertEquals ("test#05", 1, bytes [0]);
- AssertEquals ("test#06", 2, bytes [1]);
- AssertEquals ("test#07", 3, bytes [2]);
- AssertEquals ("test#08", 4, bytes [3]);
- } finally {
- if (stream != null)
- stream.Close ();
- if (stream2 != null)
- stream2.Close ();
-
- DeleteFile (path);
- }
- }
-
- public void TestDefaultProperties ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "testfilestream.tmp.2";
- DeleteFile (path);
- FileStream stream = new FileStream (path, FileMode.Create);
-
- AssertEquals ("test#01", true, stream.CanRead);
- AssertEquals ("test#02", true, stream.CanSeek);
- AssertEquals ("test#03", true, stream.CanWrite);
- AssertEquals ("test#04", false, stream.IsAsync);
- AssertEquals ("test#05", true, stream.Name.EndsWith (path));
- AssertEquals ("test#06", 0, stream.Position);
- AssertEquals ("test#07", "System.IO.FileStream", stream.ToString());
- stream.Close ();
- DeleteFile (path);
- stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Read);
- AssertEquals ("test#08", true, stream.CanRead);
- AssertEquals ("test#09", true, stream.CanSeek);
- AssertEquals ("test#10", false, stream.CanWrite);
- AssertEquals ("test#11", false, stream.IsAsync);
- AssertEquals ("test#12", true, stream.Name.EndsWith (path));
- AssertEquals ("test#13", 0, stream.Position);
- AssertEquals ("test#14", "System.IO.FileStream", stream.ToString());
- stream.Close ();
-
- stream = new FileStream (path, FileMode.Truncate, FileAccess.Write, FileShare.ReadWrite);
- AssertEquals ("test#15", false, stream.CanRead);
- AssertEquals ("test#16", true, stream.CanSeek);
- AssertEquals ("test#17", true, stream.CanWrite);
- AssertEquals ("test#18", false, stream.IsAsync);
- AssertEquals ("test#19", true, stream.Name.EndsWith ("testfilestream.tmp.2"));
- AssertEquals ("test#20", 0, stream.Position);
- AssertEquals ("test#21", "System.IO.FileStream", stream.ToString());
- stream.Close ();
- DeleteFile (path);
- }
-
- public void TestLock()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "TestLock";
- DeleteFile (path);
- FileStream stream = new FileStream (path, FileMode.CreateNew, FileAccess.ReadWrite);
-
- stream.Write (new Byte [] {0,1,2,3,4,5,6,7,8,9,10}, 0, 10);
- stream.Close ();
- stream = new FileStream (path, FileMode.Open, FileAccess.ReadWrite);
-
- stream.Lock (0, 5);
-
- FileStream stream2 = new FileStream (path , FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
-
- byte [] bytes = new byte [5];
- try {
- stream2.Read (bytes, 0, 5);
- Fail ();
- } catch (Exception e) {
-
- // locked
- AssertEquals ("test#01", typeof (IOException), e.GetType ());
- }
-
- stream2.Seek (5, SeekOrigin.Begin);
- stream2.Read (bytes, 0, 5);
-
- AssertEquals ("test#02", 5, bytes [0]);
- AssertEquals ("test#03", 6, bytes [1]);
- AssertEquals ("test#04", 7, bytes [2]);
- AssertEquals ("test#05", 8, bytes [3]);
- AssertEquals ("test#06", 9, bytes [4]);
-
- stream.Unlock (0,5);
- stream2.Seek (0, SeekOrigin.Begin);
- stream2.Read (bytes, 0, 5);
-
- AssertEquals ("test#02", 0, bytes [0]);
- AssertEquals ("test#03", 1, bytes [1]);
- AssertEquals ("test#04", 2, bytes [2]);
- AssertEquals ("test#05", 3, bytes [3]);
- AssertEquals ("test#06", 4, bytes [4]);
-
- stream.Close ();
- stream2.Close ();
-
- DeleteFile (path);
- }
- [Test]
- public void Seek ()
- {
- string path = TempFolder + DSC + "FST.Seek.Test";
- DeleteFile (path);
- FileStream stream = new FileStream (path, FileMode.CreateNew, FileAccess.ReadWrite, FileShare.ReadWrite);
- FileStream stream2 = new FileStream (path, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite);
-
- stream.Write (new byte [] {1, 2, 3, 4, 5, 6, 7, 8, 10}, 0, 9);
- AssertEquals ("test#01", 5, stream2.Seek (5, SeekOrigin.Begin));
- AssertEquals ("test#02", -1, stream2.ReadByte ());
-
- AssertEquals ("test#03", 2, stream2.Seek (-3, SeekOrigin.Current));
- AssertEquals ("test#04", -1, stream2.ReadByte ());
-
- AssertEquals ("test#05", 12, stream.Seek (3, SeekOrigin.Current));
- AssertEquals ("test#06", -1, stream.ReadByte ());
- AssertEquals ("test#07", 5, stream.Seek (-7, SeekOrigin.Current));
- AssertEquals ("test#08", 6, stream.ReadByte ());
- AssertEquals ("test#09", 5, stream2.Seek (5, SeekOrigin.Begin));
- AssertEquals ("test#10", 6, stream2.ReadByte ());
-
- stream.Close ();
- stream2.Close ();
-
- DeleteFile (path);
- }
- public void TestSeek ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "TestSeek";
- DeleteFile (path);
- FileStream stream = new FileStream (path, FileMode.CreateNew, FileAccess.ReadWrite, FileShare.ReadWrite);
- stream.Write (new byte[] {1, 2, 3, 4, 5, 6, 7, 8 , 9, 10}, 0, 10);
-
- stream.Seek (5, SeekOrigin.End);
- AssertEquals ("test#01", -1, stream.ReadByte ());
- stream.Seek (-5, SeekOrigin.End);
- AssertEquals ("test#02", 6, stream.ReadByte ());
-
- try {
- stream.Seek (-11, SeekOrigin.End);
- Fail ();
- } catch (Exception e) {
- AssertEquals ("test#03", typeof (IOException), e.GetType ());
- }
-
- stream.Seek (19, SeekOrigin.Begin);
- AssertEquals ("test#04", -1, stream.ReadByte ());
- stream.Seek (1, SeekOrigin.Begin);
- AssertEquals ("test#05", 2, stream.ReadByte ());
-
- stream.Seek (3, SeekOrigin.Current);
- AssertEquals ("test#06", 6, stream.ReadByte ());
- stream.Seek (-2, SeekOrigin.Current);
- AssertEquals ("test#07", 5, stream.ReadByte ());
- stream.Flush ();
- // Test that seeks work correctly when seeking inside the buffer
- stream.Seek (0, SeekOrigin.Begin);
- stream.WriteByte (0);
- stream.WriteByte (1);
- stream.Seek (0, SeekOrigin.Begin);
- byte[] buf = new byte [1];
- buf [0] = 2;
- stream.Write (buf, 0, 1);
- stream.Write (buf, 0, 1);
- stream.Flush ();
- stream.Seek (0, SeekOrigin.Begin);
- AssertEquals ("test#08", 2, stream.ReadByte ());
- AssertEquals ("test#09", 2, stream.ReadByte ());
- stream.Close ();
- DeleteFile (path);
- }
-
- public void TestClose ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "TestClose";
- DeleteFile (path);
-
- FileStream stream = new FileStream (path, FileMode.CreateNew, FileAccess.ReadWrite);
- stream.Write (new byte [] {1, 2, 3, 4}, 0, 4);
- stream.ReadByte ();
- stream.Close ();
-
- try {
- stream.ReadByte ();
- Fail ();
- } catch (Exception e) {
- AssertEquals ("test#01", typeof (ObjectDisposedException), e.GetType ());
- }
-
- try {
- stream.WriteByte (64);
- Fail ();
- } catch (Exception e) {
- AssertEquals ("test#02", typeof (ObjectDisposedException), e.GetType ());
- }
-
- try {
- stream.Flush ();
- Fail ();
- } catch (Exception e) {
- AssertEquals ("test#03", typeof (ObjectDisposedException), e.GetType ());
- }
-
- try {
- long l = stream.Length;
- Fail ();
- } catch (Exception e) {
- AssertEquals ("test#04", typeof (ObjectDisposedException), e.GetType ());
- }
-
- try {
- long l = stream.Position;
- Fail ();
- } catch (Exception e) {
- AssertEquals ("test#05", typeof (ObjectDisposedException), e.GetType ());
- }
- AssertEquals ("test#06", false, stream.CanRead);
- AssertEquals ("test#07", false, stream.CanSeek);
- AssertEquals ("test#08", false, stream.CanWrite);
- AssertEquals ("test#09", true, stream.Name.EndsWith (path));
- DeleteFile (path);
- }
- /// <summary>
- /// Checks whether the <see cref="FileStream" /> throws a <see cref="NotSupportedException" />
- /// when the stream is opened with access mode <see cref="FileAccess.Read" /> and the
- /// <see cref="FileStream.Write(byte[], int, int)" /> method is called.
- /// </summary>
- [Test]
- [ExpectedException (typeof(NotSupportedException))]
- public void TestWriteVerifyAccessMode ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- FileStream stream = null;
- byte[] buffer;
- try {
- buffer = Encoding.ASCII.GetBytes ("test");
- stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Read);
- stream.Write (buffer, 0, buffer.Length);
- } finally {
- if (stream != null)
- stream.Close();
- DeleteFile (path);
- }
- }
- /// <summary>
- /// Checks whether the <see cref="FileStream" /> throws a <see cref="NotSupportedException" />
- /// when the stream is opened with access mode <see cref="FileAccess.Read" /> and the
- /// <see cref="FileStream.WriteByte(byte)" /> method is called.
- /// </summary>
- [Test]
- [ExpectedException (typeof (NotSupportedException))]
- public void TestWriteByteVerifyAccessMode ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- FileStream stream = null;
- try {
- stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Read);
- stream.WriteByte (Byte.MinValue);
- } finally {
- if (stream != null)
- stream.Close ();
- DeleteFile (path);
- }
- }
- /// <summary>
- /// Checks whether the <see cref="FileStream" /> throws a <see cref="NotSupportedException" />
- /// when the stream is opened with access mode <see cref="FileAccess.Write" /> and the
- /// <see cref="FileStream.Read(byte[], int, int)" /> method is called.
- /// </summary>
- [Test]
- [ExpectedException (typeof (NotSupportedException))]
- public void TestReadVerifyAccessMode ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- FileStream stream = null;
- byte[] buffer = new byte [100];
- try {
- stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Write);
- stream.Read (buffer, 0, buffer.Length);
- } finally {
- if (stream != null)
- stream.Close ();
- }
- }
- /// <summary>
- /// Checks whether the <see cref="FileStream" /> throws a <see cref="NotSupportedException" />
- /// when the stream is opened with access mode <see cref="FileAccess.Write" /> and the
- /// <see cref="FileStream.ReadByte()" /> method is called.
- /// </summary>
- [Test]
- [ExpectedException (typeof (NotSupportedException))]
- public void TestReadByteVerifyAccessMode ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- FileStream stream = null;
- try {
- stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Write);
- int readByte = stream.ReadByte ();
- } finally {
- if (stream != null)
- stream.Close();
- DeleteFile (path);
- }
- }
- // Check that the stream is flushed even when it doesn't own the
- // handle
- [Test]
- public void TestFlushNotOwningHandle ()
- {
- string path = Path.Combine (TempFolder, "TestFlushNotOwningHandle");
- DeleteFile (path);
- FileStream s = new FileStream (path, FileMode.Create);
- using (FileStream s2 = new FileStream (s.Handle, FileAccess.Write, false)) {
- byte[] buf = new byte [2];
- buf [0] = (int)'1';
- s2.Write (buf, 0, 1);
- }
- s.Position = 0;
- AssertEquals ((int)'1', s.ReadByte ());
- s.Close ();
- }
- private void DeleteFile (string path)
- {
- if (File.Exists (path))
- File.Delete (path);
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void Read_OffsetNegative ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- using (FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Read)) {
- stream.Read (new byte[0], -1, 1);
- }
- }
-
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void Read_OffsetOverflow ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- using (FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Read)) {
- stream.Read (new byte[0], Int32.MaxValue, 1);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void Read_CountNegative ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- using (FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Read)) {
- stream.Read (new byte[0], 1, -1);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void Read_CountOverflow ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- using (FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Read)) {
- stream.Read (new byte[0], 1, Int32.MaxValue);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void Write_OffsetNegative ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- using (FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Write)) {
- stream.Write (new byte[0], -1, 1);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void Write_OffsetOverflow ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- using (FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Write)) {
- stream.Write (new byte[0], Int32.MaxValue, 1);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentOutOfRangeException))]
- public void Write_CountNegative ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- using (FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Write)) {
- stream.Write (new byte[0], 1, -1);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void Write_CountOverflow ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- using (FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Write)) {
- stream.Write (new byte[0], 1, Int32.MaxValue);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void Seek_InvalidSeekOrigin ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- using (FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Read)) {
- stream.Seek (0, (SeekOrigin) (-1));
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void Constructor_InvalidFileHandle ()
- {
- new FileStream ((IntPtr)(-1), FileAccess.Read);
- }
- [Test]
- public void PositionAfterSetLength ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- using (FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Write)) {
- stream.SetLength (32);
- stream.Position = 32;
- stream.SetLength (16);
- AssertEquals ("Position==16", 16, stream.Position);
- }
- }
- [Test]
- [ExpectedException (typeof (ObjectDisposedException))]
- public void SetLength_Disposed ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Write);
- stream.Close ();
- stream.SetLength (16);
- }
- [Test]
- [ExpectedException (typeof (ObjectDisposedException))]
- public void Position_Disposed ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Read);
- stream.Close ();
- stream.Position = 0;
- }
- [Test]
- [ExpectedException (typeof (ObjectDisposedException))]
- public void BeginRead_Disposed ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Read);
- stream.Close ();
- stream.EndRead (stream.BeginRead (new byte[8], 0, 8, null, null));
- }
- [Test]
- [ExpectedException (typeof (ObjectDisposedException))]
- public void BeginWrite_Disposed ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Write);
- stream.Close ();
- stream.EndWrite (stream.BeginWrite (new byte[8], 0, 8, null, null));
- }
- [Test]
- [ExpectedException (typeof (ObjectDisposedException))]
- public void Lock_Disposed ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Write);
- stream.Close ();
- stream.Lock (0,1);
- }
- [Test]
- [ExpectedException (typeof (ObjectDisposedException))]
- public void Unlock_Disposed ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Write);
- stream.Close ();
- stream.Unlock (0,1);
- }
- [Test]
- public void ReadBytePastEndOfStream ()
- {
- string path = TempFolder + Path.DirectorySeparatorChar + "temp";
- DeleteFile (path);
- using (FileStream stream = new FileStream (path, FileMode.OpenOrCreate, FileAccess.Read)) {
- stream.Seek (0, SeekOrigin.End);
- AssertEquals ("ReadByte", -1, stream.ReadByte ());
- stream.Close ();
- }
- }
- [Test]
- [ExpectedException (typeof (NotSupportedException))]
- public void SetLengthWithClosedBaseStream ()
- {
- FileStream fs = new FileStream ("temp", FileMode.Create);
- BufferedStream bs = new BufferedStream (fs);
- fs.Close ();
-
- bs.SetLength (1000);
- }
- }
- }
|