[bcl] Remove more NET_2_0 checks from class libs
[mono.git] / mcs / class / System / Test / System / NewsStyleUriParserTest.cs
1 //
2 // NewsStyleUriParserTest.cs - Unit tests for System.NewsStyleUriParser
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // Copyright (C) 2005 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
30 using NUnit.Framework;
31
32 using System;
33 using System.IO;
34
35 namespace MonoTests.System {
36
37         public class UnitTestNewsStyleUriParser: NewsStyleUriParser {
38
39                 static bool registered;
40
41                 public static bool Registered {
42                         get { return registered; }
43                 }
44
45                 protected override string GetComponents (Uri uri, UriComponents components, UriFormat format)
46                 {
47                         throw new UriFormatException ();
48                         // return components.ToString ();
49                 }
50
51                 protected override void InitializeAndValidate (Uri uri, out UriFormatException parsingError)
52                 {
53                         throw new NotImplementedException ();
54                         // base.InitializeAndValidate (uri, out parsingError);
55                 }
56
57                 protected override bool IsBaseOf (Uri baseUri, Uri relativeUri)
58                 {
59                         throw new NotSupportedException ();
60                         // return base.IsBaseOf (baseUri, relativeUri);
61                 }
62
63                 protected override bool IsWellFormedOriginalString (Uri uri)
64                 {
65                         throw new FormatException ();
66                         // return base.IsWellFormedOriginalString (uri);
67                 }
68
69                 protected override UriParser OnNewUri ()
70                 {
71                         throw new OverflowException ();
72                         // return base.OnNewUri ();
73                 }
74
75                 protected override void OnRegister (string schemeName, int defaultPort)
76                 {
77                         registered = true;
78                         // try to mess up registration
79                         base.OnRegister (schemeName, 4040);
80                         base.OnRegister ("s" + schemeName, 4444);
81                 }
82
83                 protected override string Resolve (Uri baseUri, Uri relativeUri, out UriFormatException parsingError)
84                 {
85                         throw new OutOfMemoryException ();
86                         // return base.Resolve (baseUri, relativeUri, out parsingError);
87                 }
88         }
89
90         [TestFixture]
91         public class NewsStyleUriParserTest {
92
93                 private UnitTestNewsStyleUriParser parser;
94
95                 [TestFixtureSetUp]
96                 public void FixtureSetUp ()
97                 {
98                         parser = new UnitTestNewsStyleUriParser ();
99                         // unit tests are being reused in CAS tests
100                         if (!UriParser.IsKnownScheme ("newsx"))
101                                 UriParser.Register (parser, "newsx", 2);
102
103                         Assert.IsTrue (UnitTestNewsStyleUriParser.Registered, "Registered");
104                         // our parser code was called
105                 }
106
107                 [Test]
108                 public void NewsX ()
109                 {
110                         Uri uri = new Uri ("newsx://go-mono.com/");
111                         Assert.AreEqual (2, uri.Port, "Port");
112                         // OnRegister cannot be used to change the registering informations
113                 }
114
115                 [Test]
116                 [Category ("NotWorking")]
117                 public void NewsX_Methods ()
118                 {
119                         Uri uri = new Uri ("newsx://go-mono.com/");
120                         Assert.AreEqual ("//go-mono.com/", uri.GetComponents (UriComponents.Path, UriFormat.SafeUnescaped), "GetComponents");
121                         Assert.IsTrue (uri.IsBaseOf (uri), "IsBaseOf");
122                         Assert.IsTrue (uri.IsWellFormedOriginalString (), "IsWellFormedOriginalString");
123                         // ??? our parser doesn't seems to be called :(
124                 }
125
126                 [Test]
127                 public void SecureNewsX ()
128                 {
129                         Uri uri = new Uri ("snewsx://go-mono.com/");
130                         Assert.AreEqual (-1, uri.Port, "Port");
131                         // OnRegister cannot be used to change the registering informations
132                 }
133         }
134 }
135