* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Web / Test / mainsoft / MainsoftWebApp / System_Web / HttpRequest / HttpRequest_Browser.aspx.cs
1 //
2 // Authors:
3 //   Rafael Mizrahi   <rafim@mainsoft.com>
4 //   Erez Lotan       <erezl@mainsoft.com>
5 //   Vladimir Krasnov <vladimirk@mainsoft.com>
6 //
7 //
8 // Copyright (c) 2002-2005 Mainsoft Corporation.
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.Collections;
32 using System.ComponentModel;
33 using System.Data;
34 using System.Drawing;
35 using System.Web;
36 using System.Web.SessionState;
37 using System.Web.UI;
38 using System.Web.UI.WebControls;
39 using System.Web.UI.HtmlControls;
40
41 namespace GHTTests.System_Web_dll.System_Web
42 {
43         public class HttpRequest_Browser
44                 : GHTBaseWeb 
45         {
46
47                 private void Page_Load(object sender, System.EventArgs e) 
48                 {
49                         System.Web.UI.HtmlControls.HtmlForm frm = (HtmlForm)FindControl("Form1");
50                         GHTTestBegin(frm);
51                         // ===================================
52                         // testing if the Browser object is set
53                         // ===================================
54                         this.GHTSubTestBegin("Request.Browser1");
55                         try
56                         {
57                                 if (this.Request.Browser == null)
58                                 {
59                                         this.GHTSubTestAddResult("Failed");
60                                 }
61                                 else
62                                 {
63                                         this.GHTSubTestAddResult("Success");
64                                 }
65                         }
66                         catch (Exception ex)
67                         {
68                                 this.GHTSubTestAddResult("unxpected " + ex.GetType().Name + " exception was caught-" + ex.Message);
69                         }
70                         this.GHTSubTestEnd();
71
72                         // ===================================
73                         // testing if the objects return is from the 
74                         // correct type
75                         // ===================================
76                         this.GHTSubTestBegin("Request.Browser2");
77                         try
78                         {
79                                 HttpBrowserCapabilities capabilities1 = this.Request.Browser;
80                                 this.GHTSubTestAddResult("success");
81                         }
82                         catch (Exception ex)
83                         {
84                                 this.GHTSubTestAddResult("Unxpected " + ex.GetType().Name + " exception was caught-" + ex.Message);
85                         }
86                         this.GHTSubTestEnd();
87
88                         // ===================================
89                         // testing if the Browser contains the
90                         // right context. This is basic testing
91                         // a more rigorous testing needs to be included
92                         // in the HTTPBrowserCapabilities object
93                         // ===================================
94                         GHTSubTestBegin("Request.Browser3");
95                         try
96                         {
97                                 HttpBrowserCapabilities capabilities2 = this.Request.Browser;
98                                 this.GHTSubTestAddResult(capabilities2.Browser);
99                         }
100                         catch (Exception ex)
101                         {
102                                 GHTSubTestAddResult("Unxpected " + ex.GetType().Name + " exception was caught-" + ex.Message);
103                         }
104
105                         GHTSubTestEnd();
106
107                         // ===================================
108                         // testing if the Browser contains the
109                         // right context. This is basic testing
110                         // a more rigorous testing needs to be included
111                         // in the HTTPBrowserCapabilities object
112                         // ===================================
113                         GHTSubTestBegin("Request.Browser4");
114                         try
115                         {
116                                 HttpBrowserCapabilities brw = Request.Browser;
117                                 GHTSubTestAddResult(brw.MajorVersion.ToString() + "." + brw.MinorVersion.ToString());
118                         }
119                         catch (Exception ex)
120                         {
121                                 GHTSubTestAddResult("Unxpected " + ex.GetType().Name + " exception was caught-" + ex.Message);
122                         }
123
124                         GHTSubTestEnd();
125                         GHTTestEnd();
126                 }
127
128                 #region Web Form Designer generated code
129                 override protected void OnInit(EventArgs e)
130                 {
131                         //
132                         // CODEGEN: This call is required by the ASP.NET Web Form Designer.
133                         //
134                         InitializeComponent();
135                         base.OnInit(e);
136                 }
137                 
138                 /// <summary>
139                 /// Required method for Designer support - do not modify
140                 /// the contents of this method with the code editor.
141                 /// </summary>
142                 private void InitializeComponent()
143                 {    
144                         this.Load += new System.EventHandler(this.Page_Load);
145                 }
146                 #endregion
147         }
148 }