You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2015/10/06 07:58:57 UTC

svn commit: r1706952 - /httpd/test/framework/trunk/t/modules/digest.t

Author: jailletc36
Date: Tue Oct  6 05:58:56 2015
New Revision: 1706952

URL: http://svn.apache.org/viewvc?rev=1706952&view=rev
Log:
Tweak test framework after the removal of 'AuthDigestEnableQueryStringHack' in 2.5.x  in r1703305

Modified:
    httpd/test/framework/trunk/t/modules/digest.t

Modified: httpd/test/framework/trunk/t/modules/digest.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/modules/digest.t?rev=1706952&r1=1706951&r2=1706952&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/modules/digest.t (original)
+++ httpd/test/framework/trunk/t/modules/digest.t Tue Oct  6 05:58:56 2015
@@ -111,14 +111,20 @@ my $query = 'try=til%7Ede';
 # finally, the MSIE tests
 
 {
-  # fake current MSIE behavior - this should work as of 2.0.51
-  my $response = GET "$url?$query",
-                   Authorization => $no_query_auth, 
-                   'X-Browser'   => 'MSIE';
-
-  ok t_cmp($response->code,
-           200,
-           'manual Authorization with no query string in header + MSIE');
+  if (have_min_apache_version("2.5.0")) {
+    skip "'AuthDigestEnableQueryStringHack' has been removed in r1703305";
+  } 
+  else  
+  {
+    # fake current MSIE behavior - this should work as of 2.0.51
+    my $response = GET "$url?$query",
+                     Authorization => $no_query_auth, 
+                     'X-Browser'   => 'MSIE';
+  
+    ok t_cmp($response->code,
+             200,
+             'manual Authorization with no query string in header + MSIE');
+  }
 }
 
 {