]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/cgi.t
update copyright headers and email addresses
[public-inbox.git] / t / cgi.t
diff --git a/t/cgi.t b/t/cgi.t
index a6600c20081c9ecfbfd748f260cb84ea2fb84ecf..18632cee6c366ee0d6e00c801cb497d1783828bf 100644 (file)
--- a/t/cgi.t
+++ b/t/cgi.t
@@ -1,4 +1,4 @@
-# Copyright (C) 2014, Eric Wong <normalperson@yhbt.net> and all contributors
+# Copyright (C) 2014-2015 all contributors <meta@public-inbox.org>
 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
 use strict;
 use warnings;
@@ -160,19 +160,19 @@ EOF
        like($res->{body}, qr/Message-Id: <blahblah\@example\.com>/,
                "mid raw hit");
        $res = cgi_run("/test/blahblah\@example.con/raw");
-       like($res->{head}, qr/Status: 404 Not Found/, "mid raw miss");
+       like($res->{head}, qr/Status: 300 Multiple Choices/, "mid raw miss");
 
        $res = cgi_run("/test/blahblah\@example.com/");
        like($res->{body}, qr/\A<html>/, "mid html hit");
        like($res->{head}, qr/Status: 200 OK/, "200 response");
        $res = cgi_run("/test/blahblah\@example.con/");
-       like($res->{head}, qr/Status: 404 Not Found/, "mid html miss");
+       like($res->{head}, qr/Status: 300 Multiple Choices/, "mid html miss");
 
        $res = cgi_run("/test/blahblah\@example.com/f/");
        like($res->{body}, qr/\A<html>/, "mid html");
        like($res->{head}, qr/Status: 200 OK/, "200 response");
        $res = cgi_run("/test/blahblah\@example.con/f/");
-       like($res->{head}, qr/Status: 404 Not Found/, "mid html miss");
+       like($res->{head}, qr/Status: 300 Multiple Choices/, "mid html miss");
 
        $res = cgi_run("/test/");
        like($res->{body}, qr/slashy%2Fasdf%40example\.com/,
@@ -206,7 +206,7 @@ EOF
                $path = "/test/blahblah%40example.com/t.atom";
                $res = cgi_run($path);
                like($res->{head}, qr/^Status: 200 /, "atom returned 200");
-               like($res->{head}, qr!^Content-Type: application/xml!m,
+               like($res->{head}, qr!^Content-Type: application/atom\+xml!m,
                        "search returned atom");
                my $p = XML::Feed->parse(\($res->{body}));
                is($p->format, "Atom", "parsed atom feed");