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
|
// FileSystemWatcherTest.cs - NUnit Test Cases for the System.IO.FileSystemWatcher class
//
// Authors:
// Gonzalo Paniagua Javier (gonzalo@ximian.com)
//
// (C) 2004 Novell, Inc. http://www.novell.com
//
using NUnit.Framework;
using System;
using System.IO;
namespace MonoTests.System.IO
{
[TestFixture]
public class FileSystemWatcherTest : Assertion
{
[Test]
public void CheckDefaults ()
{
FileSystemWatcher fw = new FileSystemWatcher ();
AssertEquals ("#01", fw.EnableRaisingEvents, false);
AssertEquals ("#02", fw.Filter, "*.*");
AssertEquals ("#03", fw.IncludeSubdirectories, false);
AssertEquals ("#04", fw.InternalBufferSize, 8192);
AssertEquals ("#05", fw.NotifyFilter, NotifyFilters.FileName | NotifyFilters.DirectoryName | NotifyFilters.LastWrite);
AssertEquals ("#06", fw.Path, "");
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void CheckCtor1 ()
{
FileSystemWatcher fw = new FileSystemWatcher (null);
}
[Test]
[ExpectedException (typeof (ArgumentException))]
public void CheckCtor2 ()
{
FileSystemWatcher fw = new FileSystemWatcher ("");
}
[Test]
[ExpectedException (typeof (ArgumentException))]
public void CheckCtor3 ()
{
FileSystemWatcher fw = new FileSystemWatcher ("notexistsblahblah");
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void CheckCtor4 ()
{
FileSystemWatcher fw = new FileSystemWatcher (Path.GetTempPath (), null);
}
[Test]
// Doesn't throw here :-?
// [ExpectedException (typeof (ArgumentException))]
public void CheckCtor5 ()
{
FileSystemWatcher fw = new FileSystemWatcher (Path.GetTempPath (), "invalidpath|");
fw = new FileSystemWatcher (Path.GetTempPath (), "*");
}
[Test]
// ...But here it does...
[ExpectedException (typeof (ArgumentException))]
public void CheckInvalidPath ()
{
FileSystemWatcher fw = new FileSystemWatcher (Path.GetTempPath (), "invalidpath|");
fw.Path = "invalidpath|";
}
[Test]
// ...and here too
[ExpectedException (typeof (ArgumentException))]
public void CheckPathWildcard ()
{
FileSystemWatcher fw = new FileSystemWatcher (Path.GetTempPath (), "*");
fw.Path = "*";
}
}
}
|