2010-06-17 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / Test / System.Web.Compilation / TemplateControlCompilerTest.cs
index b09207f55c969fe7c29bcbfa1550e34bc54b9932..9d2f2f77413682790624aaabea41ca0ea5ddc3e7 100644 (file)
@@ -54,6 +54,14 @@ namespace MonoTests.System.Web.Compilation {
                        WebTest.CopyResource (GetType (), "ReadOnlyPropertyControl.ascx", "ReadOnlyPropertyControl.ascx");
                        WebTest.CopyResource (GetType (), "TemplateControlParsingTest.aspx", "TemplateControlParsingTest.aspx");
                        WebTest.CopyResource (GetType (), "ServerSideControlsInScriptBlock.aspx", "ServerSideControlsInScriptBlock.aspx");
+                       WebTest.CopyResource (GetType (), "ServerControlInClientSideComment.aspx", "ServerControlInClientSideComment.aspx");
+                       WebTest.CopyResource (GetType (), "UnquotedAngleBrackets.aspx", "UnquotedAngleBrackets.aspx");
+                       WebTest.CopyResource (GetType (), "FullTagsInText.aspx", "FullTagsInText.aspx");
+                       WebTest.CopyResource (GetType (), "TagsExpressionsAndCommentsInText.aspx", "TagsExpressionsAndCommentsInText.aspx");
+                       WebTest.CopyResource (GetType (), "NewlineInCodeExpression.aspx", "NewlineInCodeExpression.aspx");
+                       WebTest.CopyResource (GetType (), "DuplicateControlsInClientComment.aspx", "DuplicateControlsInClientComment.aspx");
+                       WebTest.CopyResource (GetType (), "TagsNestedInClientTag.aspx", "TagsNestedInClientTag.aspx");
+                       WebTest.CopyResource (GetType (), "ConditionalClientComments.aspx", "ConditionalClientComments.aspx");
 #if NET_2_0
                        WebTest.CopyResource (GetType (), "InvalidPropertyBind1.aspx", "InvalidPropertyBind1.aspx");
                        WebTest.CopyResource (GetType (), "InvalidPropertyBind2.aspx", "InvalidPropertyBind2.aspx");
@@ -70,6 +78,11 @@ namespace MonoTests.System.Web.Compilation {
                        WebTest.CopyResource (GetType (), "ContentPlaceHolderInTemplate.master", "ContentPlaceHolderInTemplate.master");
                        WebTest.CopyResource (GetType (), "LinkInHeadWithEmbeddedExpression.aspx", "LinkInHeadWithEmbeddedExpression.aspx");
                        WebTest.CopyResource (GetType (), "ExpressionInListControl.aspx", "ExpressionInListControl.aspx");
+                       WebTest.CopyResource (GetType (), "PreprocessorDirectivesInMarkup.aspx", "PreprocessorDirectivesInMarkup.aspx");
+                       WebTest.CopyResource (GetType (), "OneLetterIdentifierInCodeRender.aspx", "OneLetterIdentifierInCodeRender.aspx");
+                       WebTest.CopyResource (GetType (), "NestedParserFileText.aspx", "NestedParserFileText.aspx");
+                       WebTest.CopyResource (GetType (), "TagWithExpressionWithinAttribute.aspx", "TagWithExpressionWithinAttribute.aspx");
+                       WebTest.CopyResource (GetType (), "EnumConverter_Bug578586.aspx", "EnumConverter_Bug578586.aspx");
 #endif
                }
                
@@ -92,7 +105,7 @@ namespace MonoTests.System.Web.Compilation {
                }
                
                [Test]
-               [ExpectedException (typeof (CompilationException))]
+               [ExpectedException ("System.Web.Compilation.CompilationException")]
                public void InvalidPropertyBindTest1 ()
                {
                        new WebTest ("InvalidPropertyBind1.aspx").Run ();
@@ -106,7 +119,7 @@ namespace MonoTests.System.Web.Compilation {
                }
 
                [Test]
-               [ExpectedException (typeof (CompilationException))]
+               [ExpectedException ("System.Web.Compilation.CompilationException")]
                public void InvalidPropertyBindTest3 ()
                {
                        new WebTest ("InvalidPropertyBind3.aspx").Run ();
@@ -191,7 +204,119 @@ namespace MonoTests.System.Web.Compilation {
                        string originalHtml = @"<script type=""text/javascript"">alert (escape(""reporting/location?report=ViewsByDate&minDate=minDate&maxDate=maxDate""));</script>";
                        HtmlDiff.AssertAreEqual (originalHtml, renderedHtml, "#A1");
                }
-#endif
+
+               [Test (Description="Bug #520024")]
+               public void PreprocessorDirectivesInMarkup ()
+               {
+                       // Just test if it doesn't throw an exception
+                       new WebTest ("PreprocessorDirectivesInMarkup.aspx").Run ();
+               }
+
+               [Test (Description="Bug #526449")]
+               public void NewlineInCodeExpression ()
+               {
+                       string pageHtml = new WebTest ("NewlineInCodeExpression.aspx").Run ();
+                       string renderedHtml = HtmlDiff.GetControlFromPageHtml (pageHtml);
+                       string originalHtml = "<a href=\"test\">bla</a>";
+                       HtmlDiff.AssertAreEqual (originalHtml, renderedHtml, "#A1");
+               }
+
+               [Test (Description="Bug #524358")]
+               public void DuplicateControlsInClientComment ()
+               {
+                       // Just test if it throws an exception
+                       string pageHtml = new WebTest ("DuplicateControlsInClientComment.aspx").Run ();
+                       Assert.IsTrue (pageHtml.IndexOf ("[System.Web.Compilation.ParseException]:") != -1, "#A1");
+               }
+
+               [Test (Description="Bug #367723")]
+               public void ConditionalClientComments ()
+               {
+                       string pageHtml = new WebTest ("ConditionalClientComments.aspx").Run ();
+                       string renderedHtml = HtmlDiff.GetControlFromPageHtml (pageHtml);
+                       string originalHtml = @"<!--[if IE 6]>
+               <link rel=""styleheet"" type=""text/css"" href=""~/compat-ie6.css""></link>
+       <![endif]-->";
+                       HtmlDiff.AssertAreEqual (originalHtml, renderedHtml, "#A1");
+               }
+               
+               [Test (Description="Bug #400807")]
+               public void OneLetterIdentifierInCodeRender ()
+               {
+                       string pageHtml = new WebTest ("OneLetterIdentifierInCodeRender.aspx").Run ();
+                       string renderedHtml = HtmlDiff.GetControlFromPageHtml (pageHtml);
+                       string originalHtml = @"bDoR called";
+
+                       HtmlDiff.AssertAreEqual (originalHtml, renderedHtml, "#A1");
+               }
+
+               [Test (Description="Bug #562286")]
+               public void NestedParserFileText ()
+               {
+                       // Just test if it doesn't throw an exception
+                       new WebTest ("NestedParserFileText.aspx").Run ();
+               }
+
+               [Test (Description="Bug #568631")]
+               public void TagWithExpressionWithinAttribute ()
+               {
+                       // Just test if it doesn't throw an exception
+                       new WebTest ("TagWithExpressionWithinAttribute.aspx").Run ();
+               }
+
+               [Test (Description="Bug #578586")]
+               public void EnumConverter_Bug578586 ()
+               {
+                       WebTest t = new WebTest ("EnumConverter_Bug578586.aspx");
+                       string pageHtml = t.Run ();
+                       string renderedHtml = HtmlDiff.GetControlFromPageHtml (pageHtml);
+                       string originalHtml = @"<input type=""text"" value=""FlagOne"" name=""test"" id=""test"" />";
+
+                       HtmlDiff.AssertAreEqual (originalHtml, renderedHtml, "#A1");
+               }
+#endif         
+               [Test (Description="Bug #323719")]
+               public void TagsNestedInClientTag ()
+               {
+                       string pageHtml = new WebTest ("TagsNestedInClientTag.aspx").Run ();
+                       string renderedHtml = HtmlDiff.GetControlFromPageHtml (pageHtml);
+                       string originalHtml = @"<script language=""javascript"" src=""/js/test.js"" type=""text/javascript""></script>
+<sometag language=""javascript"" src=""/js/test.js"" type=""text/javascript""></sometag>";
+
+                       HtmlDiff.AssertAreEqual (originalHtml, renderedHtml, "#A1");
+               }
+               
+               [Test (Description="Bug #517656")]
+               public void ServerControlInClientSideComment ()
+               {
+                       string pageHtml = new WebTest ("ServerControlInClientSideComment.aspx").Run ();
+                       string renderedHtml = HtmlDiff.GetControlFromPageHtml (pageHtml);
+                       string originalHtml = @"<!-- comment start
+  <input id=""testBox"" type=""checkbox"" name=""testBox"" />
+comment end -->";
+                       HtmlDiff.AssertAreEqual (originalHtml, renderedHtml, "#A1");
+               }
+
+               [Test]
+               public void UnquotedAngleBrackets ()
+               {
+                       // We just test if it doesn't throw an exception
+                       new WebTest ("UnquotedAngleBrackets.aspx").Run ();
+               }
+
+               [Test]
+               public void FullTagsInText ()
+               {
+                       // We just test if it doesn't throw an exception
+                       new WebTest ("FullTagsInText.aspx").Run ();
+               }
+
+               [Test]
+               public void TagsExpressionsAndCommentsInText ()
+               {
+                       // We just test if it doesn't throw an exception
+                       new WebTest ("TagsExpressionsAndCommentsInText.aspx").Run ();
+               }
                
                [Test]
                public void ChildTemplatesTest ()