**** Merged r40732-r40872 from MCS ****
[mono.git] / mcs / class / corlib / Test / System.IO.IsolatedStorage / IsolatedStorageFileStreamTest.cs
1 //
2 // IsolatedStorageFileStreamTest.cs 
3 //      - Unit Tests for abstract IsolatedStorageFileStream class
4 //
5 // Author:
6 //      Sebastien Pouliot  <sebastien@ximian.com>
7 //
8 // Copyright (C) 2005 Novell Inc. (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System;
31 using System.IO;
32 using System.IO.IsolatedStorage;
33 #if NET_2_0
34 using Microsoft.Win32.SafeHandles;
35 #endif
36
37 using NUnit.Framework;
38
39 namespace MonoTests.System.IO.IsolatedStorageTests {
40
41         [TestFixture]
42         public class IsolatedStorageFileStreamTest {
43
44                 private void CheckCommonDetails (string prefix, IsolatedStorageFileStream isfs, bool read, bool write)
45                 {
46                         Assert.AreEqual (read, isfs.CanRead, prefix + ".CanRead");
47                         Assert.IsTrue (isfs.CanSeek, prefix + ".CanSeek");
48                         Assert.AreEqual (write, isfs.CanWrite, prefix + ".CanWrite");
49                         Assert.IsFalse (isfs.IsAsync, prefix + ".IsAsync");
50                         Assert.AreEqual (0, isfs.Length, prefix + ".Length");
51                         Assert.AreEqual ("[Unknown]", isfs.Name, prefix + ".Name");
52                         Assert.AreEqual (0, isfs.Position, prefix + ".Position");
53 #if NET_2_0_NOTYET
54                         Assert.IsFalse (isfs.CanTimeout, prefix + ".CanTimeout");
55 #endif
56                 }
57
58                 [Test]
59                 [ExpectedException (typeof (ArgumentNullException))]
60                 public void Constructor_StringNullMode ()
61                 {
62                         IsolatedStorageFileStream isfs = new IsolatedStorageFileStream (null, FileMode.CreateNew);
63                 }
64
65                 [Test]
66                 [Category ("NotWorking")]
67                 [ExpectedException (typeof (ArgumentException))] // Mono's FileStream throw an ArgumentOutOfRangeException
68                 public void Constructor_StringModeBad ()
69                 {
70                         IsolatedStorageFileStream isfs = new IsolatedStorageFileStream ("badmode", (FileMode)Int32.MinValue);
71                 }
72
73                 [Test]
74                 public void Constructor_StringMode ()
75                 {
76                         string test = "string-filemode";
77                         IsolatedStorageFileStream isfs = new IsolatedStorageFileStream (test, FileMode.Create);
78                         CheckCommonDetails (test, isfs, true, true);
79                 }
80
81                 [Test]
82                 [ExpectedException (typeof (ArgumentOutOfRangeException))]
83                 public void Constructor_StringModeAccessBad ()
84                 {
85                         IsolatedStorageFileStream isfs = new IsolatedStorageFileStream ("badaccess", FileMode.Create, (FileAccess)Int32.MinValue);
86                 }
87
88                 [Test]
89                 public void Constructor_StringModeAccess ()
90                 {
91                         string test = "string-filemode-fileaccess";
92                         IsolatedStorageFileStream isfs = new IsolatedStorageFileStream (test, FileMode.Create, FileAccess.ReadWrite);
93                         CheckCommonDetails (test, isfs, true, true);
94                 }
95
96                 [Test]
97                 [ExpectedException (typeof (ArgumentOutOfRangeException))]
98                 public void Constructor_StringModeAccessShareBad ()
99                 {
100                         IsolatedStorageFileStream isfs = new IsolatedStorageFileStream ("badshare", FileMode.Create, FileAccess.Read, (FileShare)Int32.MinValue);
101                 }
102
103                 [Test]
104                 public void Constructor_StringModeAccessShare ()
105                 {
106                         string test = "string-filemode-fileaccess-fileshare";
107                         IsolatedStorageFileStream isfs = new IsolatedStorageFileStream (test, FileMode.Create, FileAccess.Write, FileShare.Read);
108                         CheckCommonDetails (test, isfs, false, true);
109                 }
110
111                 [Test]
112                 [ExpectedException (typeof (IsolatedStorageException))]
113                 public void Handle ()
114                 {
115                         IsolatedStorageFileStream isfs = new IsolatedStorageFileStream ("handle", FileMode.Create);
116                         IntPtr p = isfs.Handle;
117                 }
118 #if NET_2_0_NOTYET
119                 [Test]
120                 [ExpectedException (typeof (IsolatedStorageException))]
121                 public void SafeFileHandle_ ()
122                 {
123                         IsolatedStorageFileStream isfs = new IsolatedStorageFileStream ("safeFileHandle", FileMode.Create);
124                         SafeFileHandle sfh = isfs.SafeFileHandle;
125                 }
126
127                 [Test]
128                 [ExpectedException (typeof (InvalidOperationException))]
129                 public void ReadTimeOut ()
130                 {
131                         IsolatedStorageFileStream isfs = new IsolatedStorageFileStream ("readTimeout", FileMode.Create);
132                         int t = isfs.ReadTimeout;
133                 }
134
135                 [Test]
136                 [ExpectedException (typeof (InvalidOperationException))]
137                 public void WriteTimeOut ()
138                 {
139                         IsolatedStorageFileStream isfs = new IsolatedStorageFileStream ("writeTimeout", FileMode.Create);
140                         int t = isfs.WriteTimeout;
141                 }
142 #endif
143         }
144 }