dev@grizzly.java.net

bug with alias mapping

From: Survivant 00 <survivant00_at_gmail.com>
Date: Tue, 28 Apr 2009 08:31:22 -0400

Can someone confirm that this is a bug.

I was trying to test the mapping for a helloworld servlet.. but even when I
enter a invalid URL.. the HelloWorld was return.

so I create another test.

I took the com.sun.grizzly.http.MappingTest

and add this test

public void testWrongMapping2() throws IOException {
        System.out.println("testWrongMapping2");
        try {
            startGrizzlyWebServer(PORT);
            String alias = "/*.a";
            addAdapter(alias);
            HttpURLConnection conn = getConnection("/aaa.html");
            assertEquals(HttpServletResponse.SC_NOT_FOUND,
getResponseCodeFromAlias(conn));
        } finally {
            stopGrizzlyWebServer();
        }
    }

I receive a 200 code return instead of a 404.

my helloworld test was something like this:

public void testHelloWorld() throws Exception {
        System.out.println("testHelloWorld");
        try {
            startGrizzlyWebServer(PORT);
            String[] aliases = new String[] { "/*.hello" };

            String context = "/";
            String servletPath = "";
            String rootFolder = ".";

            ServletAdapter adapter =
getServletAdapter("servlet.HelloServlet", context, servletPath, rootFolder);

            gws.addGrizzlyAdapter(adapter, aliases);

            gws.start();

            String url = context + servletPath + "/index.php"; // not
suppose the return a 200.
            HttpURLConnection conn = getConnection(url);
            assertEquals(HttpServletResponse.SC_OK,
getResponseCodeFromAlias(conn));

            System.out.println(readResponse(conn));

            //assertEquals(url, );

        } finally {
            stopGrizzlyWebServer();
        }
    }

I receive a HelloWorld :(