Merge pull request #439 from mono-soc-2012/garyb/iconfix
[mono.git] / mcs / class / corlib / Test / System.IO.IsolatedStorage / IsolatedStorageFileTest.cs
index 9f7d3e7d0dd51d99d6165a539bf934b194575cbe..10bf9bf136714c5f21bcb07ef21a0697cae110b3 100644 (file)
@@ -6,6 +6,7 @@
 //     Sebastien Pouliot  <sebastien@ximian.com>
 //
 // Copyright (C) 2005 Novell Inc. (http://www.novell.com)
+// Copyright 2011 Xamarin Inc (http://www.xamarin.com).
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
@@ -29,6 +30,7 @@
 
 using System;
 using System.Collections;
+using System.IO;
 using System.IO.IsolatedStorage;
 using System.Reflection;
 using System.Security;
@@ -126,12 +128,14 @@ namespace MonoTests.System.IO.IsolatedStorageTest {
                        IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
                        Assert.AreEqual (Int64.MaxValue, isf.MaximumSize, "MaximumSize");
                        Assert.AreEqual (IsolatedStorageScope.User | IsolatedStorageScope.Assembly, isf.Scope, "Scope");
+#if !NET_2_1
                        Assert.IsTrue ((isf.AssemblyIdentity is Url), "AssemblyIdentity");
                        // note: mono transforms the CodeBase into uppercase
                        // for net 1.1 which uses file:// and not file:///
                        string codebase = Assembly.GetExecutingAssembly ().CodeBase.ToUpper ().Substring (8);
                        Assert.IsTrue ((isf.AssemblyIdentity.ToString ().ToUpper ().IndexOf (codebase) > 0), "Url");
                        Assert.IsTrue ((isf.AssemblyIdentity.ToString ().ToUpper ().IndexOf (codebase) > 0), "Url");
+#endif
                        Assert.IsTrue ((isf.CurrentSize >= 0), "CurrentSize");
                }
 
@@ -159,6 +163,7 @@ namespace MonoTests.System.IO.IsolatedStorageTest {
                        IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForDomain ();
                        Assert.AreEqual (Int64.MaxValue, isf.MaximumSize, "MaximumSize");
                        Assert.AreEqual (IsolatedStorageScope.User | IsolatedStorageScope.Domain | IsolatedStorageScope.Assembly, isf.Scope, "Scope");
+#if !NET_2_1
                        Assert.IsTrue ((isf.AssemblyIdentity is Url), "AssemblyIdentity");
                        // note: mono transforms the CodeBase into uppercase
                        // for net 1.1 which uses file:// and not file:///
@@ -169,6 +174,7 @@ namespace MonoTests.System.IO.IsolatedStorageTest {
                        // so we're using the first parameter to GetCommandLineArgs
                        string exe = Environment.GetCommandLineArgs ()[0].Replace ("\\", "/").ToUpper ();
                        Assert.IsTrue ((isf.DomainIdentity.ToString ().ToUpper ().IndexOf (exe) > 0), exe + "\n" + isf.DomainIdentity.ToString ().ToUpper ()); //"Url - Domain");
+#endif
                        Assert.IsTrue ((isf.CurrentSize >= 0), "CurrentSize");
                }
 
@@ -195,12 +201,15 @@ namespace MonoTests.System.IO.IsolatedStorageTest {
                {
                        IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication ();
                        Assert.AreEqual (Int64.MaxValue, isf.MaximumSize, "MaximumSize");
+#if !NET_2_1
                        Assert.AreEqual (IsolatedStorageScope.User | IsolatedStorageScope.Assembly, isf.Scope, "Scope");
                        Assert.IsTrue ((isf.AssemblyIdentity is Url), "AssemblyIdentity");
                        Assert.IsTrue ((isf.AssemblyIdentity.ToString ().IndexOf (Assembly.GetExecutingAssembly ().CodeBase) > 0), "Url");
+#endif
                        Assert.IsTrue ((isf.CurrentSize >= 0), "CurrentSize");
                }
-
+               
+#if !NET_2_1
                [Test]
                [ExpectedException (typeof (IsolatedStorageException))]
                public void GetUserStoreForApplication_AssemblyIdentity ()
@@ -217,6 +226,17 @@ namespace MonoTests.System.IO.IsolatedStorageTest {
                        object o = isf.DomainIdentity;
                }
 #endif
+#endif
+
+#if NET_4_0
+               // This is supposed to be working only in SL.
+               [Test]
+               [ExpectedException (typeof (NotSupportedException))]
+               public void GetUserStoreForSite ()
+               {
+                       IsolatedStorageFile.GetUserStoreForSite ();
+               }
+#endif
 
                [Test]
                public void GetStore_Domain_Zone ()
@@ -224,11 +244,13 @@ namespace MonoTests.System.IO.IsolatedStorageTest {
                        IsolatedStorageScope scope = IsolatedStorageScope.User | IsolatedStorageScope.Domain | IsolatedStorageScope.Assembly;
                        IsolatedStorageFile isf = IsolatedStorageFile.GetStore (scope, typeof (Zone), typeof (Zone));
                        Assert.AreEqual (Int64.MaxValue, isf.MaximumSize, "MaximumSize");
+#if !NET_2_1
                        Assert.AreEqual (IsolatedStorageScope.User | IsolatedStorageScope.Domain | IsolatedStorageScope.Assembly, isf.Scope, "Scope");
                        Assert.IsTrue ((isf.AssemblyIdentity is Zone), "AssemblyIdentity");
                        Assert.IsTrue ((isf.AssemblyIdentity.ToString ().IndexOf ("MyComputer") > 0), "Zone - Assembly");
                        Assert.IsTrue ((isf.DomainIdentity is Zone), "DomainIdentity");
                        Assert.IsTrue ((isf.DomainIdentity.ToString ().IndexOf ("MyComputer") > 0), "Zone - Domain");
+#endif
                        Assert.IsTrue ((isf.CurrentSize >= 0), "CurrentSize");
                }
 
@@ -247,12 +269,14 @@ namespace MonoTests.System.IO.IsolatedStorageTest {
                        IsolatedStorageFile isf = IsolatedStorageFile.GetStore (scope, typeof (StrongName), typeof (Url));
                        Assert.AreEqual (Int64.MaxValue, isf.MaximumSize, "MaximumSize");
                        Assert.AreEqual (scope, isf.Scope, "Scope");
+#if !NET_2_1
                        Assert.IsTrue ((isf.AssemblyIdentity is Url), "AssemblyIdentity");
                        // note: mono transforms the CodeBase into uppercase
                        // for net 1.1 which uses file:// and not file:///
                        string codebase = Assembly.GetExecutingAssembly ().CodeBase.ToUpper ().Substring (8);
                        Assert.IsTrue ((isf.AssemblyIdentity.ToString ().ToUpper ().IndexOf (codebase) > 0), "Url");
                        // DomainIdentity throws a InvalidOperationException
+#endif
                        Assert.IsTrue ((isf.CurrentSize >= 0), "CurrentSize");
                }
 
@@ -337,10 +361,12 @@ namespace MonoTests.System.IO.IsolatedStorageTest {
 
                        // Maximum size for Internet isn't (by default) Int64.MaxValue
                        Assert.AreEqual (scope, isf.Scope, "Scope");
+#if !NET_2_1
                        Assert.IsTrue ((isf.AssemblyIdentity is Zone), "AssemblyIdentity");
                        Assert.IsTrue ((isf.AssemblyIdentity.ToString ().IndexOf ("Intranet") > 0), "Zone - Assembly");
                        Assert.IsTrue ((isf.DomainIdentity is Zone), "DomainIdentity");
                        Assert.IsTrue ((isf.DomainIdentity.ToString ().IndexOf ("Internet") > 0), isf.DomainIdentity.ToString ()); //"Zone - Domain");
+#endif
                        Assert.IsTrue ((isf.CurrentSize >= 0), "CurrentSize");
                }
 
@@ -386,5 +412,732 @@ namespace MonoTests.System.IO.IsolatedStorageTest {
                        ae.AddHost (new Zone (SecurityZone.Internet));
                        IsolatedStorageFile isf = IsolatedStorageFile.GetStore (scope, null, null, ae, typeof (Zone));
                }
+
+               [Test]
+               public void RegressionBNC354539 ()
+               {
+                       string filename = "test-bnc-354539";
+                       byte[] expected = new byte[] { 0x01, 0x42, 0x00 };
+                       byte[] actual = new byte [expected.Length];
+
+                       using (IsolatedStorageFile file = IsolatedStorageFile.GetStore (IsolatedStorageScope.User | IsolatedStorageScope.Assembly, null, null)) {
+                               using (IsolatedStorageFileStream stream = new IsolatedStorageFileStream (filename, FileMode.Create, FileAccess.Write, FileShare.None, file)) {
+                                       stream.Write (expected, 0, expected.Length);
+                               }
+                       }
+
+                       using (IsolatedStorageFile file = IsolatedStorageFile.GetUserStoreForAssembly ()) {
+                               using (IsolatedStorageFileStream stream = new IsolatedStorageFileStream (filename, FileMode.Open, FileAccess.Read, FileShare.Read, file)) {
+                                       stream.Read (actual, 0, actual.Length);
+                               }
+
+                               file.DeleteFile (filename);
+                       }
+                       
+                       Assert.AreEqual (expected, actual);
+               }
+
+               [Test]
+               [ExpectedException (typeof (ArgumentNullException))]
+               public void CreateDirectory_Null ()
+               {
+                       IsolatedStorageFile.GetUserStoreForAssembly ().CreateDirectory (null);
+               }
+
+               [Test]
+               public void CreateDirectory_FileWithSameNameExists ()
+               {
+                       string path = "bug374377";
+                       using (IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForDomain ()) {
+                               using (IsolatedStorageFileStream fs = new IsolatedStorageFileStream (path, FileMode.OpenOrCreate, isf)) {
+                               }
+                               try {
+                                       isf.CreateDirectory (path);
+                               }
+#if NET_4_0 || NET_2_1
+                               catch (IsolatedStorageException ex) {
+                                       Assert.IsFalse (ex.Message.IndexOf (path) >= 0, "Message");
+                                       Assert.IsNull (ex.InnerException, "InnerException");
+                               }
+#else
+                               catch (IOException ex) {
+                                       Assert.AreEqual (typeof (IOException), ex.GetType (), "Type");
+                                       // don't leak path information
+                                       Assert.IsFalse (ex.Message.IndexOf (path) >= 0, "Message");
+                                       Assert.IsNull (ex.InnerException, "InnerException");
+                               }
+#endif
+                       }
+               }
+
+               [Test]
+               public void CreateDirectory_DirectoryWithSameNameExists ()
+               {
+                       string dir = "new-dir";
+                       string file = Path.Combine (dir, "new-file");
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       try {
+                               isf.CreateDirectory (dir);
+                               using (IsolatedStorageFileStream isfs = new IsolatedStorageFileStream (file, FileMode.OpenOrCreate, isf)) {
+                                       isfs.WriteByte (0);
+                               }
+                               string pattern = Path.Combine (dir, "*");
+                               Assert.AreEqual (1, isf.GetFileNames (file).Length, "file exists");
+
+                               // create again directory
+                               isf.CreateDirectory (dir);
+                               Assert.AreEqual (1, isf.GetFileNames (file).Length, "file still exists");
+                       }
+                       finally {
+                               isf.DeleteFile (file);
+                               isf.DeleteDirectory (dir);
+                       }
+               }
+
+               [Test]
+#if NET_4_0 || NET_2_1
+               [ExpectedException (typeof (ArgumentException))]
+#else
+               [ExpectedException (typeof (SecurityException))]
+#endif
+               public void GetFilesInSubdirs ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       string pattern = Path.Combine ("..", "*");
+                       isf.GetFileNames (pattern);
+               }
+
+        
+#if NET_4_0
+               [Test]
+               [ExpectedException (typeof (ArgumentException))]
+               public void GetDirsInSubDirs ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       isf.CreateDirectory ("subdir");
+                       string [] dir_names = isf.GetDirectoryNames ("subdir/../*");
+               }
+#endif
+
+               [Test] // https://bugzilla.novell.com/show_bug.cgi?id=376188
+               public void CreateSubDirectory ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       isf.CreateDirectory ("subdir");
+                       isf.CreateDirectory ("subdir/subdir2");
+                       Assert.AreEqual (1, isf.GetDirectoryNames ("*").Length, "subdir");
+                       Assert.AreEqual (1, isf.GetDirectoryNames ("subdir/*").Length, "subdir/subdir2");
+                       isf.DeleteDirectory ("subdir/subdir2");
+                       isf.DeleteDirectory ("subdir");
+               }
+
+               [Test]
+               [ExpectedException (typeof (IsolatedStorageException))]
+               public void DeleteDirectory_NonEmpty ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       isf.CreateDirectory ("subdir");
+                       isf.CreateDirectory ("subdir/subdir2");
+                       isf.DeleteDirectory ("subdir");
+               }
+
+               [Test]
+               public void DeleteFile ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+
+                       try {
+                               isf.DeleteFile (null);
+                               Assert.Fail ("#Exc0");
+                       } catch (ArgumentNullException) {
+                       }
+
+#if NET_4_0
+                       // We are getting an internal IndexOutOfRangeException in 2.0
+                       // Not sure we want to mimic that one.
+                       try {
+                               isf.DeleteFile (String.Empty);
+                               Assert.Fail ("#Exc1");
+                       } catch (IsolatedStorageException) {
+                       }
+#endif
+
+                       try {
+                               isf.DeleteFile ("idontexist");
+                               Assert.Fail ("#Exc2");
+                       } catch (IsolatedStorageException) {
+                       }
+
+#if NET_4_0
+                       try {
+                               isf.DeleteFile ("../../file");
+                               Assert.Fail ("#Exc3");
+                       } catch (IsolatedStorageException) {
+                       }
+#endif
+               
+                       try {
+                               isf.DeleteFile ("subdir/file");
+                               Assert.Fail ("#Exc4");
+                       } catch (IsolatedStorageException) {
+                       }
+
+                       isf.CreateDirectory ("subdir");
+                       try {
+                               isf.DeleteFile ("subdir");
+                               Assert.Fail ("#Exc5");
+                       } catch (IsolatedStorageException) {
+                       }
+               }
+
+               [Test]
+               public void GetStore_NullTypes ()
+               {
+                       IsolatedStorageScope scope = IsolatedStorageScope.User | IsolatedStorageScope.Roaming | IsolatedStorageScope.Assembly | IsolatedStorageScope.Domain;
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetStore (scope, null, null);
+#if !NET_2_1
+                       Assert.AreEqual (typeof (Url), isf.AssemblyIdentity.GetType (), "AssemblyIdentity");
+                       Assert.AreEqual (typeof (Url), isf.DomainIdentity.GetType (), "DomainIdentity");
+#endif
+               }
+
+               [Test]
+               public void RemoveFromOtherInstance ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       IsolatedStorageFile isf2 = IsolatedStorageFile.GetUserStoreForAssembly ();
+
+                       isf.Remove ();
+                       try {
+                               isf2.Remove ();
+                               Assert.Fail ("#Exc1");
+                       } catch (IsolatedStorageException) {
+                       }
+               }
+
+#if NET_4_0
+               [Test]
+               public void Remove ()
+               {
+                       // Test that we can call Remove several times
+                       IsolatedStorageFile.Remove (IsolatedStorageScope.User);
+                       IsolatedStorageFile.Remove (IsolatedStorageScope.User);
+
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       isf.Remove ();
+
+                       // The second call to Remove should cause an InvalidOperationException, due to
+                       // marking itself as closed.
+                       try {
+                               isf.Remove ();
+                               Assert.Fail ("#Exc1");
+                       } catch (InvalidOperationException) {
+                       }
+
+                       // Open, Close and try to Remove
+                       isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       isf.Close ();
+                       try {
+                               isf.Remove ();
+                               Assert.Fail ("#Exc2");
+                       } catch (InvalidOperationException) {
+                       }
+               }
+
+               [Test]
+               public void UsedSize ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       IsolatedStorageFileStream isfs = isf.CreateFile ("file");
+                       StreamWriter writer = new StreamWriter (isfs);
+                       writer.WriteLine ("hello mono");
+                       writer.Close ();
+
+                       Assert.AreEqual (true, isf.UsedSize > 0, "#A0");
+
+                       isf.Close ();
+                       try {
+                               Console.WriteLine (isf.UsedSize);
+                               Assert.Fail ("#Exc1");
+                       } catch (InvalidOperationException) {
+                       }
+
+                       isf.Dispose ();
+                       try {
+                               Console.WriteLine (isf.UsedSize);
+                               Assert.Fail ("#Exc2");
+                       } catch (ObjectDisposedException) {
+                       }
+               }
+
+               [Test]
+               public void IncreateQuotaTo ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+
+                       try {
+                               isf.IncreaseQuotaTo (-2);
+                               Assert.Fail ("#Exc1");
+                       } catch (ArgumentException) {
+                       }
+
+                       // I wonder how this behaves on some systems
+                       try {
+                               isf.IncreaseQuotaTo (100);
+                               Assert.Fail ("#Exc2");
+                       } catch (ArgumentException) {
+                       }
+
+                       // Since 'Quota' seems to be returning Int64.MaxValue, we cannot truly test against a value
+                       // larger than that.
+               }
+
+               [Test]
+               public void DirectoryExists ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       isf.CreateDirectory ("subdir");
+                       isf.CreateDirectory ("subdir/subdir2");
+                       isf.CreateDirectory ("subdir3");
+
+                       Assert.AreEqual (true, isf.DirectoryExists ("subdir/"), "#A0");
+                       Assert.AreEqual (true, isf.DirectoryExists ("subdir/subdir2/"), "#A1");
+                       Assert.AreEqual (true, isf.DirectoryExists ("subdir3"), "#A2");
+                       Assert.AreEqual (true, isf.DirectoryExists (String.Empty), "#A3"); // Weird
+                       Assert.AreEqual (false, isf.DirectoryExists ("subdir99"), "#A4");
+                       Assert.AreEqual (false, isf.DirectoryExists ("../../subdir"), "#A5");
+                       Assert.AreEqual (false, isf.DirectoryExists ("*"), "#A5");
+                       Assert.AreEqual (false, isf.DirectoryExists ("subdir*"), "#A6");
+
+                       isf.DeleteDirectory ("subdir3");
+                       Assert.AreEqual (false, isf.DirectoryExists ("subdir3"), "#B0");
+
+                       isf.DeleteDirectory ("subdir/subdir2");
+                       isf.DeleteDirectory ("subdir");
+
+                       try {
+                               isf.DirectoryExists (null);
+                               Assert.Fail ("#Exc1");
+                       } catch (ArgumentNullException) {
+                       }
+
+                       isf.Close ();
+                       try {
+                               isf.DirectoryExists ("subdir");
+                               Assert.Fail ("#Exc2");
+                       } catch (InvalidOperationException) {
+                       }
+
+                       isf.Dispose ();
+                       try {
+                               isf.DirectoryExists ("subdir");
+                               Assert.Fail ("#Exc3");
+                       } catch (ObjectDisposedException) {
+                       }
+
+                       // We want to be sure that if not closing but disposing
+                       // should fire ObjectDisposedException instead of InvalidOperationException
+                       isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       isf.Dispose ();
+
+                       try {
+                               isf.DirectoryExists ("subdir");
+                               Assert.Fail ("#Exc4");
+                       } catch (ObjectDisposedException) {
+                       }
+               }
+
+               [Test]
+               public void FileExists ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       IsolatedStorageFileStream file_a = new IsolatedStorageFileStream ("file-a", FileMode.Create, isf);
+                       IsolatedStorageFileStream file_b = new IsolatedStorageFileStream ("file-b", FileMode.Create, isf);
+                       file_a.Close ();
+                       file_b.Close ();
+
+                       Assert.AreEqual (true, isf.FileExists ("file-a"), "#A0");
+                       Assert.AreEqual (true, isf.FileExists ("file-b"), "#A1");
+                       Assert.AreEqual (false, isf.FileExists (String.Empty), "#A2");
+                       Assert.AreEqual (false, isf.FileExists ("file-"), "#A3");
+                       Assert.AreEqual (false, isf.FileExists ("file-*"), "#A4");
+                       Assert.AreEqual (false, isf.FileExists ("../../file-a"), "#A5");
+
+                       isf.CreateDirectory ("subdir");
+                       Assert.AreEqual (false, isf.FileExists ("subdir"), "#B0");
+
+                       try {
+                               isf.FileExists (null);
+                               Assert.Fail ("#Exc1");
+                       } catch (ArgumentNullException) {
+                       }
+
+                       isf.Close ();
+                       try {
+                               isf.FileExists ("file-a");
+                               Assert.Fail ("#Exc2");
+                       } catch (InvalidOperationException) {
+                       }
+
+                       isf.Dispose ();
+                       try {
+                               isf.FileExists ("file-a");
+                               Assert.Fail ("#Exc3");
+                       } catch (ObjectDisposedException) {
+                       }
+               }
+
+               [Test]
+               public void CreateFile ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       // Make sure we are actually creating it, by first removing it in case it already exists
+                       if (isf.FileExists ("file-a"))
+                               isf.DeleteFile ("file-a");
+
+                       IsolatedStorageFileStream isf_stream = isf.CreateFile ("file-a");
+                       isf_stream.Close ();
+                       Assert.AreEqual (true, isf.FileExists ("file-a"), "#A0");
+
+                       // Re-open the file that is already created, so we make sure we are passing
+                       // the proper FileOpen
+                       isf_stream = isf.CreateFile ("file-a");
+                       isf_stream.Close ();
+
+                       try {
+                               isf.CreateFile (null);
+                               Assert.Fail ("#Exc1");
+                       } catch (ArgumentNullException) {
+                       }
+
+                       try {
+                               isf.CreateFile ("random-dir/fileb");
+                               Assert.Fail ("#Exc2");
+                       } catch (DirectoryNotFoundException) {
+                       }
+
+                       isf.Close ();
+                       try {
+                               isf.CreateFile ("file-b");
+                               Assert.Fail ("#Exc3");
+                       } catch (InvalidOperationException) {
+                       }
+
+                       isf.Dispose ();
+                       try {
+                               isf.CreateFile ("file-a");
+                               Assert.Fail ("#Exc4");
+                       } catch (ObjectDisposedException) {
+                       }
+               }
+
+               [Test]
+               public void GetCreationTime ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+
+                       // This is not causing an exception
+                       isf.GetCreationTime ("doesntexist");
+                       isf.GetCreationTime ("dir/doesntexist");
+
+                       try {
+                               isf.GetCreationTime (String.Empty);
+                               Assert.Fail ("#Exc1");
+                       } catch (ArgumentException) {
+                       }
+
+                       try {
+                               isf.GetCreationTime ("   ");
+                               Assert.Fail ("#Exc2");
+                       } catch (ArgumentException) {
+                       }
+
+                       isf.Close ();
+                       try {
+                               isf.GetCreationTime ("doesntexist");
+                               Assert.Fail ("#Exc3");
+                       } catch (InvalidOperationException) {
+                       }
+
+                       isf.Dispose ();
+                       try {
+                               isf.GetCreationTime ("doesntexist");
+                               Assert.Fail ("#Exc4");
+                       } catch (ObjectDisposedException) {
+                       }
+               }
+
+               [Test]
+               public void MoveDirectory ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       // Mare sure to remove them if they exist already
+                       if (isf.DirectoryExists ("subdir"))
+                               isf.DeleteDirectory ("subdir");
+                       if (isf.DirectoryExists ("subdir-new"))
+                               isf.DeleteDirectory ("subdir-new");
+
+                       isf.CreateDirectory ("subdir");
+                       Assert.AreEqual (true, isf.DirectoryExists ("subdir"), "#A0");
+
+                       isf.MoveDirectory ("subdir", "subdir-new");
+                       Assert.AreEqual (false, isf.DirectoryExists ("subdir"), "#A1");
+                       Assert.AreEqual (true, isf.DirectoryExists ("subdir-new"), "#A2");
+
+                       try {
+                               isf.MoveDirectory (String.Empty, "subdir-new-new");
+                               Assert.Fail ("#Exc1");
+                       } catch (ArgumentException) {
+                       }
+
+                       try {
+                               isf.MoveDirectory ("  ", "subdir-new-new");
+                               Assert.Fail ("#Exc2");
+                       } catch (ArgumentException) {
+                       }
+
+                       try {
+                               isf.MoveDirectory ("doesntexist", "subdir-new-new");
+                               Assert.Fail ("#Exc3");
+                       } catch (DirectoryNotFoundException) {
+                       }
+
+                       try {
+                               isf.MoveDirectory ("doesnexist/doesntexist", "subdir-new-new");
+                               Assert.Fail ("#Exc4");
+                       } catch (DirectoryNotFoundException) {
+                       }
+
+                       try {
+                               isf.MoveDirectory ("subdir-new", "doesntexist/doesntexist");
+                               Assert.Fail ("#Exc5");
+                       } catch (DirectoryNotFoundException) {
+                       }
+
+                       // Out of storage dir
+                       try {
+                               isf.MoveDirectory ("subdir-new", "../../subdir-new");
+                               Assert.Fail ("#Exc6");
+                       } catch (IsolatedStorageException) {
+                       }
+
+                       isf.Remove ();
+                       isf.Close ();
+                       isf.Dispose ();
+               }
+
+               [Test]
+               public void CopyFile ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       if (isf.FileExists ("file"))
+                               isf.DeleteFile ("file");
+                       if (isf.FileExists ("file-new"))
+                               isf.DeleteFile ("file-new");
+
+                       isf.CreateFile ("file").Close ();
+                       isf.CopyFile ("file", "file-new");
+                       Assert.AreEqual (true, isf.FileExists ("file"), "#A0");
+                       Assert.AreEqual (true, isf.FileExists ("file-new"), "#A1");
+
+                       // At this point 'file-exists' already exists.
+                       isf.CopyFile ("file", "file-new", true);
+                       Assert.AreEqual (true, isf.FileExists ("file"), "#B0");
+                       Assert.AreEqual (true, isf.FileExists ("file-new"), "#B1");
+
+                       isf.CreateDirectory ("subdir");
+                       isf.CreateFile ("subdir/subfile").Close ();
+                       isf.CopyFile ("subdir/subfile", "subdir/subfile-new");
+                       Assert.AreEqual (true, isf.FileExists ("subdir/subfile"), "#C0");
+                       Assert.AreEqual (true, isf.FileExists ("subdir/subfile-new"), "#C1");
+
+                       try {
+                               isf.CopyFile ("file", "file-new");
+                               Assert.Fail ("#Exc0");
+                       } catch (IsolatedStorageException) {
+                       }
+
+                       // Using the same file name is failing for even when passing override=true.
+                       try {
+                               isf.CopyFile ("file-new", "file-new", true);
+                               Assert.Fail ("#Exc1");
+                       } catch (IsolatedStorageException) {
+                       }
+
+                       try {
+                               isf.CopyFile ("file-new", "file-new", false);
+                               Assert.Fail ("#Exc2");
+                       } catch (IsolatedStorageException) {
+                       }
+
+                       // Remove 'file-new' for cleaness purposes.
+                       isf.DeleteFile ("file-new");
+
+                       try {
+                               isf.CopyFile ("doesntexist", "file-new", false);
+                               Assert.Fail ("#Exc3");
+                       } catch (FileNotFoundException) {
+                       }
+
+                       try {
+                               isf.CopyFile ("doesnexist/doesntexist", "file-new", false);
+                               Assert.Fail ("#Exc4");
+                       } catch (DirectoryNotFoundException) {
+                       }
+
+                       // I'd have expected a DirectoryNotFoundException here.
+                       try {
+                               isf.CopyFile ("file", "doesntexist/doesntexist");
+                               Assert.Fail ("#Exc5");
+                       } catch (IsolatedStorageException) {
+                       }
+
+                       // Out of storage dir
+                       try {
+                               isf.CopyFile ("file", "../../file");
+                               Assert.Fail ("#Exc6");
+                       } catch (IsolatedStorageException) {
+                       }
+
+                       try {
+                               isf.CopyFile ("../file", "file-new");
+                               Assert.Fail ("#Exc7");
+                       } catch (IsolatedStorageException) {
+                       }
+
+                       // We are creating a subdirectory and files within it, so remove it just in case.
+                       isf.Remove ();
+
+                       isf.Close ();
+                       isf.Dispose ();
+               }
+
+               [Test]
+               public void MoveFile ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       // Mare sure to remove them if they exist already
+                       if (isf.FileExists ("file"))
+                               isf.DeleteFile ("file");
+                       if (isf.FileExists ("file-new"))
+                               isf.DeleteFile ("file-new");
+                       if (isf.FileExists ("subdir/subfile"))
+                               isf.DeleteFile ("subdir/subfile");
+                       if (isf.FileExists ("subdir/subfile-new"))
+                               isf.DeleteFile ("subdir/subfile-new");
+
+                       isf.CreateFile ("file").Close ();
+                       Assert.AreEqual (true, isf.FileExists ("file"), "#A0");
+
+                       // Same file
+                       isf.MoveFile ("file", "file");
+                       Assert.AreEqual (true, isf.FileExists ("file"), "#A0-1");
+
+                       isf.MoveFile ("file", "file-new");
+                       Assert.AreEqual (false, isf.FileExists ("file"), "#A1");
+                       Assert.AreEqual (true, isf.FileExists ("file-new"), "#A2");
+
+                       isf.CreateDirectory ("subdir");
+                       isf.CreateFile ("subdir/subfile").Close ();
+                       isf.MoveFile ("subdir/subfile", "subdir/subfile-new");
+                       Assert.AreEqual (false, isf.FileExists ("subdir/subfile"), "#B0");
+                       Assert.AreEqual (true, isf.FileExists ("subdir/subfile-new"), "#B1");
+
+                       try {
+                               isf.MoveFile (String.Empty, "file-new-new");
+                               Assert.Fail ("#Exc1");
+                       } catch (ArgumentException) {
+                       }
+
+                       try {
+                               isf.MoveFile ("  ", "file-new-new");
+                               Assert.Fail ("#Exc2");
+                       } catch (ArgumentException e) {
+                               Console.WriteLine (e);
+                       }
+
+                       try {
+                               isf.MoveFile ("doesntexist", "file-new-new");
+                               Assert.Fail ("#Exc3");
+                       } catch (FileNotFoundException) {
+                       }
+
+                       // CopyFile is throwing a DirectoryNotFoundException here.
+                       try {
+                               isf.MoveFile ("doesnexist/doesntexist", "file-new-new");
+                               Assert.Fail ("#Exc4");
+                       } catch (FileNotFoundException) {
+                       }
+
+                       // I'd have expected a DirectoryNotFoundException here.
+                       try {
+                               isf.MoveFile ("file-new", "doesntexist/doesntexist");
+                               Assert.Fail ("#Exc5");
+                       } catch (IsolatedStorageException) {
+                       }
+
+                       // Out of storage dir
+                       try {
+                               isf.MoveFile ("file-new", "../../file-new");
+                               Assert.Fail ("#Exc6");
+                       } catch (IsolatedStorageException) {
+                       }
+
+                       isf.Remove ();
+                       isf.Close ();
+                       isf.Dispose ();
+               }
+
+               [Test]
+               public void MultiLevel ()
+               {
+                       // see bug #4101
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       try {
+                               isf.CreateDirectory ("dir1");
+                               string [] dirs = isf.GetDirectoryNames ("*");
+                               Assert.AreEqual (dirs.Length, 1, "1a");
+                               Assert.AreEqual (dirs [0], "dir1", "1b");
+       
+                               isf.CreateDirectory ("dir1/test");
+                               dirs = isf.GetDirectoryNames ("dir1/*");
+                               Assert.AreEqual (dirs.Length, 1, "2a");
+                               Assert.AreEqual (dirs [0], "test", "2b");
+       
+                               isf.CreateDirectory ("dir1/test/test2a");
+                               isf.CreateDirectory ("dir1/test/test2b");
+                               dirs = isf.GetDirectoryNames ("dir1/test/*");
+                               Assert.AreEqual (dirs.Length, 2, "3a");
+                               Assert.AreEqual (dirs [0], "test2a", "3b");
+                               Assert.AreEqual (dirs [1], "test2b", "3c");
+                       }
+                       finally {
+                               isf.DeleteDirectory ("dir1/test/test2a");
+                               isf.DeleteDirectory ("dir1/test/test2b");
+                               isf.DeleteDirectory ("dir1/test");
+                               isf.DeleteDirectory ("dir1");
+                       }
+               }
+#endif
+               [Test]
+               public void RootedDirectory ()
+               {
+                       IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly ();
+                       try {
+                               isf.CreateDirectory ("test/nested/directory/structure/without/root");
+                               isf.CreateDirectory ("/test/nested/directory/structure/with/root");
+                       }
+                       finally {
+                               isf.DeleteDirectory ("test/nested/directory/structure/without/root");
+                               isf.DeleteDirectory ("test/nested/directory/structure/without");
+
+                               isf.DeleteDirectory ("/test/nested/directory/structure/with/root");
+                               isf.DeleteDirectory ("/test/nested/directory/structure/with");
+                               isf.DeleteDirectory ("/test/nested/directory/structure");
+                               isf.DeleteDirectory ("/test/nested/directory");
+                               isf.DeleteDirectory ("/test/nested");
+                               isf.DeleteDirectory ("/test");
+                       }
+               }
        }
 }