8047da25ee2487acab23f7a589e464ce9fb39416
[mono.git] / mcs / class / System.Core / Test / System.IO.MemoryMappedFiles / MemoryMappedFileTest.cs
1 //
2 // MemoryMappedFileTest.cs
3 //
4 // Author:
5 //   Zoltan Varga (vargaz@gmail.com)
6 //
7 // (C) 2009 Novell, Inc. (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 #if NET_4_0
30
31 using System;
32 using System.IO;
33 using System.IO.MemoryMappedFiles;
34 using System.Linq;
35
36 using NUnit.Framework;
37
38 namespace MonoTests.System.IO.MemoryMappedFiles {
39
40         [TestFixture]
41         public class MemoryMappedFileTest {
42
43                 void AssertThrows<ExType> (Action del) where ExType : Exception {
44                         bool thrown = false;
45
46                         try {
47                                 del ();
48                         } catch (ExType) {
49                                 thrown = true;
50                         }
51                         Assert.IsTrue (thrown);
52                 }
53
54                 static string tempDir = Path.Combine (Path.GetTempPath (), typeof (MemoryMappedFileTest).FullName);
55
56                 string fname;
57
58                 [SetUp]
59                 protected void SetUp () {
60                         if (Directory.Exists (tempDir))
61                                 Directory.Delete (tempDir, true);
62
63                         Directory.CreateDirectory (tempDir);
64
65                         fname = Path.Combine (tempDir, "basic.txt");
66
67                         using (StreamWriter sw = new StreamWriter (fname)) {
68                                 sw.WriteLine ("Hello!");
69                                 sw.WriteLine ("World!");
70                         }
71                 }
72
73                 [TearDown]
74                 protected void TearDown () {
75                         if (Directory.Exists (tempDir))
76                                 Directory.Delete (tempDir, true);
77                 }
78
79                 [Test]
80                 public void Basic () {
81                         var file = MemoryMappedFile.CreateFromFile (fname, FileMode.Open);
82
83                         using (var stream = file.CreateViewStream ()) {
84                                 TextReader r = new StreamReader (stream);
85
86                                 string s;
87
88                                 s = r.ReadLine ();
89                                 Assert.AreEqual ("Hello!", s);
90                                 s = r.ReadLine ();
91                                 Assert.AreEqual ("World!", s);
92                         }
93                 }
94
95                 [Test]
96                 public void CreateFromFile_Null () {
97                         AssertThrows<ArgumentNullException> (delegate () {
98                                         MemoryMappedFile.CreateFromFile (null);
99                                 });
100                 }
101
102                 [Test]
103                 public void CreateViewStream_Offsets () {
104                         var file = MemoryMappedFile.CreateFromFile (fname, FileMode.Open);
105
106                         using (var stream = file.CreateViewStream (2, 3)) {
107                                 byte[] arr = new byte [128];
108
109                                 int len = stream.Read (arr, 0, 128);
110
111                                 Assert.AreEqual (3, len);
112
113                                 Assert.AreEqual ('l', (char)arr [0]);
114                                 Assert.AreEqual ('l', (char)arr [1]);
115                                 Assert.AreEqual ('o', (char)arr [2]);
116                         }
117                 }
118
119                 [Test]
120                 public void CreateViewStream_Rights () {
121                         var file = MemoryMappedFile.CreateFromFile (fname, FileMode.Open);
122
123                         using (var stream = file.CreateViewStream (0, 0, MemoryMappedFileAccess.Read)) {
124                                 AssertThrows<NotSupportedException> (delegate () {
125                                                 stream.WriteByte (0);
126                                         });
127                         }
128
129                         using (var stream = file.CreateViewStream (0, 0, MemoryMappedFileAccess.Write)) {
130                                 AssertThrows<NotSupportedException> (delegate () {
131                                                 stream.ReadByte ();
132                                         });
133                         }
134                 }
135
136                 [Test]
137                 public unsafe void CreateViewBasic () {
138                         var file = MemoryMappedFile.CreateFromFile (fname, FileMode.Open);
139
140                         using (var v = file.CreateViewAccessor ()) {
141                                 string s = "";
142
143                                 // FIXME: Use using
144                                 var handle = v.SafeMemoryMappedViewHandle;
145                                 byte *b = null;
146
147                                 try {
148                                         handle.AcquirePointer (ref b);
149
150                                         for (int i = 0; i < 5; ++i)
151                                                 s += (char)b [i];
152                                 } finally {
153                                         handle.ReleasePointer ();
154                                 }
155
156                                 Assert.AreEqual ("Hello", s);
157                         }
158                 }
159
160                 [Test]
161                 public unsafe void ViewReadArray () {
162                         var file = MemoryMappedFile.CreateFromFile (fname, FileMode.Open);
163
164                         using (var v = file.CreateViewAccessor ()) {
165                                 var a = new byte [5];
166                                 var n = v.ReadArray (0, a, 0, 5);
167                                 Assert.AreEqual (5, n);
168                                 var s = new string (Array.ConvertAll (a, b => (char)b));
169                                 Assert.AreEqual ("Hello", s);
170                         }
171                 }
172         }
173 }
174
175 #endif
176