connect-max per IP MP-632
[metaproxy-moved-to-github.git] / src / test_html_parser.cpp
index dd66b57..5ba7e5a 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of Metaproxy.
-   Copyright (C) 2005-2013 Index Data
+   Copyright (C) Index Data
 
 Metaproxy is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
@@ -70,7 +70,7 @@ public:
         out.append(value, len);
     }
 };
-#if 0
+
 BOOST_AUTO_TEST_CASE( test_html_parser_1 )
 {
     try
@@ -270,18 +270,20 @@ BOOST_AUTO_TEST_CASE( test_html_parser_6 )
         BOOST_CHECK (false);
     }
 }
-#endif
+
 BOOST_AUTO_TEST_CASE( test_html_parser_7 )
 {
     try
     {
         mp::HTMLParser hp;
         const char* html =
-            "<html><script>x=1; for (i=0;i<x;i++) ;\nx=2;\n</script></html>";
+            "<html><Script>x=1; for (i=0;i<x;i++) </y>;"
+            "</SCRIPT ;>"
+            "</1>\nx=2;\n</Script></html>";
 
         const char* expected = html;
         MyEvent e;
-        hp.set_verbose(1);
+        hp.set_verbose(0);
         hp.parse(e, html);
 
         BOOST_CHECK_EQUAL(std::string(expected), e.out);