Wed Feb 24 15:47:16 CET 2010 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / System.Web / Test / System.Web.Caching / FileResponseElementTest.cs
1 //
2 // FileResponseElementTest.cs
3 //
4 // Authors:
5 //      Marek Habersack <mhabersack@novell.com>
6 //
7 // Copyright (C) 2010 Novell Inc. http://novell.com
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_4_0
32 using System;
33 using System.Web;
34 using System.Web.Caching;
35
36 using NUnit.Framework;
37 using MonoTests.Common;
38
39 namespace MonoTests.System.Web.Caching
40 {
41         [TestFixture]
42         public class FileResponseElementTest
43         {
44                 [Test]
45                 public void Constructor ()
46                 {
47                         FileResponseElement fre;
48
49                         AssertExtensions.Throws<ArgumentNullException> (() => {
50                                 fre = new FileResponseElement (null, 0, 0);
51                         }, "#A1");
52
53                         AssertExtensions.Throws<ArgumentOutOfRangeException> (() => {
54                                 fre = new FileResponseElement ("file.txt", -1, 0);
55                         }, "#A2");
56
57                         AssertExtensions.Throws<ArgumentOutOfRangeException> (() => {
58                                 fre = new FileResponseElement ("file.txt", 0, -1);
59                         }, "#A3");
60
61                         fre = new FileResponseElement (String.Empty, 0, 0);
62                         Assert.AreEqual (String.Empty, fre.Path, "#B1-1");
63                         Assert.AreEqual (0, fre.Length, "#B1-2");
64                         Assert.AreEqual (0, fre.Offset, "#B1-3");
65
66                         fre = new FileResponseElement ("file.txt", 10, 30);
67                         Assert.AreEqual ("file.txt", fre.Path, "#C1-1");
68                         Assert.AreEqual (30, fre.Length, "#C1-2");
69                         Assert.AreEqual (10, fre.Offset, "#C1-3");
70                 }
71         }
72 }
73 #endif