alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Jetty example source code file (HttpURITest.java)

This example Jetty source code file (HttpURITest.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Jetty tags/keywords

exception, exception, httpuri, httpuri, httpuritest, string, string, testcase, testcase

The Jetty HttpURITest.java source code

//========================================================================
//Copyright 2006 Mort Bay Consulting Pty. Ltd.
//------------------------------------------------------------------------
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at 
//http://www.apache.org/licenses/LICENSE-2.0
//Unless required by applicable law or agreed to in writing, software
//distributed under the License is distributed on an "AS IS" BASIS,
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//See the License for the specific language governing permissions and
//limitations under the License.
//========================================================================

package org.mortbay.jetty;

import junit.framework.TestCase;

public class HttpURITest extends TestCase
{
    String[][] partial_tests=
    { 
       /* 0*/ {"/path/info",null,null,null,null,"/path/info",null,null,null}, 
       /* 1*/ {"/path/info#fragment",null,null,null,null,"/path/info",null,null,"fragment"}, 
       /* 2*/ {"/path/info?query",null,null,null,null,"/path/info",null,"query",null}, 
       /* 3*/ {"/path/info?query#fragment",null,null,null,null,"/path/info",null,"query","fragment"}, 
       /* 4*/ {"/path/info;param",null,null,null,null,"/path/info","param",null,null},    
       /* 5*/ {"/path/info;param#fragment",null,null,null,null,"/path/info","param",null,"fragment"}, 
       /* 6*/ {"/path/info;param?query",null,null,null,null,"/path/info","param","query",null}, 
       /* 7*/ {"/path/info;param?query#fragment",null,null,null,null,"/path/info","param","query","fragment"}, 
       /* 8*/ {"//host/path/info",null,"//host","host",null,"/path/info",null,null,null}, 
       /* 9*/ {"//user@host/path/info",null,"//user@host","host",null,"/path/info",null,null,null}, 
       /*10*/ {"//user@host:8080/path/info",null,"//user@host:8080","host","8080","/path/info",null,null,null}, 
       /*11*/ {"//host:8080/path/info",null,"//host:8080","host","8080","/path/info",null,null,null}, 
       /*12*/ {"http:/path/info","http",null,null,null,"/path/info",null,null,null},    
       /*13*/ {"http:/path/info#fragment","http",null,null,null,"/path/info",null,null,"fragment"}, 
       /*14*/ {"http:/path/info?query","http",null,null,null,"/path/info",null,"query",null}, 
       /*15*/ {"http:/path/info?query#fragment","http",null,null,null,"/path/info",null,"query","fragment"}, 
       /*16*/ {"http:/path/info;param","http",null,null,null,"/path/info","param",null,null},    
       /*17*/ {"http:/path/info;param#fragment","http",null,null,null,"/path/info","param",null,"fragment"}, 
       /*18*/ {"http:/path/info;param?query","http",null,null,null,"/path/info","param","query",null}, 
       /*19*/ {"http:/path/info;param?query#fragment","http",null,null,null,"/path/info","param","query","fragment"},                
       /*20*/ {"http://user@host:8080/path/info;param?query#fragment","http","//user@host:8080","host","8080","/path/info","param","query","fragment"}, 
       /*21*/ {"xxxxx://user@host:8080/path/info;param?query#fragment","xxxxx","//user@host:8080","host","8080","/path/info","param","query","fragment"}, 
       /*22*/ {"http:///;?#","http","//",null,null,"/","","",""}, 
       /*23*/ {"/path/info?a=?query",null,null,null,null,"/path/info",null,"a=?query",null}, 
       /*24*/ {"/path/info?a=;query",null,null,null,null,"/path/info",null,"a=;query",null}, 
       /*25*/ {"//host:8080//",null,"//host:8080","host","8080","//",null,null,null}, 
       /*26*/ {"file:///path/info","file","//",null,null,"/path/info",null,null,null},    
       /*27*/ {"//",null,"//",null,null,null,null,null,null},  
       /*28*/ {"/;param",null, null, null,null,"/", "param",null,null},
       /*29*/ {"/?x=y",null, null, null,null,"/", null,"x=y",null},
       /*30*/ {"/?abc=test",null, null, null,null,"/", null,"abc=test",null},
       /*31*/ {"/#fragment",null, null, null,null,"/", null,null,"fragment"},  
    };

    public void testPartialURIs()
        throws Exception
    {
        HttpURI uri = new HttpURI(true);
        
        for (int t=0;t<partial_tests.length;t++)
        {
            uri.parse(partial_tests[t][0].getBytes(),0,partial_tests[t][0].length());
            assertEquals(t+" "+partial_tests[t][0],partial_tests[t][1],uri.getScheme());
            assertEquals(t+" "+partial_tests[t][0],partial_tests[t][2],uri.getAuthority());
            assertEquals(t+" "+partial_tests[t][0],partial_tests[t][3],uri.getHost());
            assertEquals(t+" "+partial_tests[t][0],partial_tests[t][4]==null?-1:Integer.parseInt(partial_tests[t][4]),uri.getPort());
            assertEquals(t+" "+partial_tests[t][0],partial_tests[t][5],uri.getPath());
            assertEquals(t+" "+partial_tests[t][0],partial_tests[t][6],uri.getParam());
            assertEquals(t+" "+partial_tests[t][0],partial_tests[t][7],uri.getQuery());
            assertEquals(t+" "+partial_tests[t][0],partial_tests[t][8],uri.getFragment());
            assertEquals(partial_tests[t][0], uri.toString());
        }
        
    }

    String[][] path_tests=
    { 
       /* 0*/ {"/path/info",null,null,null,null,"/path/info",null,null,null}, 
       /* 1*/ {"/path/info#fragment",null,null,null,null,"/path/info",null,null,"fragment"}, 
       /* 2*/ {"/path/info?query",null,null,null,null,"/path/info",null,"query",null}, 
       /* 3*/ {"/path/info?query#fragment",null,null,null,null,"/path/info",null,"query","fragment"}, 
       /* 4*/ {"/path/info;param",null,null,null,null,"/path/info","param",null,null},    
       /* 5*/ {"/path/info;param#fragment",null,null,null,null,"/path/info","param",null,"fragment"}, 
       /* 6*/ {"/path/info;param?query",null,null,null,null,"/path/info","param","query",null}, 
       /* 7*/ {"/path/info;param?query#fragment",null,null,null,null,"/path/info","param","query","fragment"}, 
       /* 8*/ {"//host/path/info",null,null,null,null,"//host/path/info",null,null,null}, 
       /* 9*/ {"//user@host/path/info",null,null,null,null,"//user@host/path/info",null,null,null}, 
       /*10*/ {"//user@host:8080/path/info",null,null,null,null,"//user@host:8080/path/info",null,null,null}, 
       /*11*/ {"//host:8080/path/info",null,null,null,null,"//host:8080/path/info",null,null,null}, 
       /*12*/ {"http:/path/info","http",null,null,null,"/path/info",null,null,null},    
       /*13*/ {"http:/path/info#fragment","http",null,null,null,"/path/info",null,null,"fragment"}, 
       /*14*/ {"http:/path/info?query","http",null,null,null,"/path/info",null,"query",null}, 
       /*15*/ {"http:/path/info?query#fragment","http",null,null,null,"/path/info",null,"query","fragment"}, 
       /*16*/ {"http:/path/info;param","http",null,null,null,"/path/info","param",null,null},    
       /*17*/ {"http:/path/info;param#fragment","http",null,null,null,"/path/info","param",null,"fragment"}, 
       /*18*/ {"http:/path/info;param?query","http",null,null,null,"/path/info","param","query",null}, 
       /*19*/ {"http:/path/info;param?query#fragment","http",null,null,null,"/path/info","param","query","fragment"},                
       /*20*/ {"http://user@host:8080/path/info;param?query#fragment","http","//user@host:8080","host","8080","/path/info","param","query","fragment"}, 
       /*21*/ {"xxxxx://user@host:8080/path/info;param?query#fragment","xxxxx","//user@host:8080","host","8080","/path/info","param","query","fragment"}, 
       /*22*/ {"http:///;?#","http","//",null,null,"/","","",""}, 
       /*23*/ {"/path/info?a=?query",null,null,null,null,"/path/info",null,"a=?query",null}, 
       /*24*/ {"/path/info?a=;query",null,null,null,null,"/path/info",null,"a=;query",null}, 
       /*25*/ {"//host:8080//",null,null,null,null,"//host:8080//",null,null,null}, 
       /*26*/ {"file:///path/info","file","//",null,null,"/path/info",null,null,null},    
       /*27*/ {"//",null,null,null,null,"//",null,null,null}, 
       /*28*/ {"http://localhost/","http","//localhost","localhost",null,"/",null,null,null},
       /*29*/ {"http://localhost:8080/", "http", "//localhost:8080", "localhost","8080","/", null, null,null},
       /*30*/ {"http://localhost/?x=y", "http", "//localhost", "localhost",null,"/", null,"x=y",null},
       /*31*/ {"/;param",null, null, null,null,"/", "param",null,null},
       /*32*/ {"/?x=y",null, null, null,null,"/", null,"x=y",null},
       /*33*/ {"/?abc=test",null, null, null,null,"/", null,"abc=test",null},
       /*34*/ {"/#fragment",null, null, null,null,"/", null,null,"fragment"},
    };
    
    
    public void testPathURIs()
        throws Exception
    {
        HttpURI uri = new HttpURI();
        
        for (int t=0;t<path_tests.length;t++)
        {
            uri.parse(path_tests[t][0].getBytes(),0,path_tests[t][0].length());
            assertEquals(t+" "+path_tests[t][0],path_tests[t][1],uri.getScheme());
            assertEquals(t+" "+path_tests[t][0],path_tests[t][2],uri.getAuthority());
            assertEquals(t+" "+path_tests[t][0],path_tests[t][3],uri.getHost());
            assertEquals(t+" "+path_tests[t][0],path_tests[t][4]==null?-1:Integer.parseInt(path_tests[t][4]),uri.getPort());
            assertEquals(t+" "+path_tests[t][0],path_tests[t][5],uri.getPath());
            assertEquals(t+" "+path_tests[t][0],path_tests[t][6],uri.getParam());
            assertEquals(t+" "+path_tests[t][0],path_tests[t][7],uri.getQuery());
            assertEquals(t+" "+path_tests[t][0],path_tests[t][8],uri.getFragment());
            assertEquals(path_tests[t][0], uri.toString());
        }
        
    }

}

Other Jetty examples (source code examples)

Here is a short list of links related to this Jetty HttpURITest.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.