Package org.simpleframework.http.parse

Examples of org.simpleframework.http.parse.AddressParser


   public MockHeader(String address) {
      this.address = address;
   }
   public Address getAddress() {
      if(parser == null) {
         parser = new AddressParser(address);
      }
      return parser;
   }
View Full Code Here


    *
    * @return this returns the address of the request line
    */
   public Address getAddress() {
      if(parser == null) {
         parser = new AddressParser(target);
      }
      return parser;
   }
View Full Code Here

   public void setTarget(String target) {
      this.target = target;
   }
  
   public Path getPath() {
      return new AddressParser(target).getPath();
   }
View Full Code Here

   public Path getPath() {
      return new AddressParser(target).getPath();
   }
 
   public Query getQuery() {
      return new AddressParser(target).getQuery();
   }
View Full Code Here

public class FileIndexerTest extends TestCase {
  
   public void testFileIndexer() {
      FileIndexer indexer = new FileIndexer(new File("."));
      Address address = new AddressParser("/path/index.html");
     
      assertEquals(indexer.getContentType(address), "text/html");
      assertEquals(indexer.getPath(address).getName(), "index.html");
      assertEquals(indexer.getPath(address).getExtension(), "html");
      assertEquals(indexer.getPath(address).getDirectory(), "/path/");
View Full Code Here

   public void setTarget(String target) {
      this.target = target;
   }
  
   public Path getPath() {
      return new AddressParser(target).getPath();
   }
View Full Code Here

   public Path getPath() {
      return new AddressParser(target).getPath();
   }
 
   public Query getQuery() {
      return new AddressParser(target).getQuery();
   }
View Full Code Here

    *
    * @return this returns the address of the request line
    */
   public Address getAddress() {
      if(parser == null) {
         parser = new AddressParser(target);
      }
      return parser;
   }
View Full Code Here

    private final CiEyeResourceEngine engine = new CiEyeResourceEngine(landscapeFetcher, pictureFetcher, configurationFetcher,
                                                                       tracker, intermediary, updateChecker);
   
    @Test public void
    resolvesWelcomePage() {
        final Resource resource = engine.resolve(new AddressParser("http://ci-eye/"));
        assertThat(resource, is(instanceOf(CiEyeResource.class)));
    }
View Full Code Here

        assertThat(resource, is(instanceOf(CiEyeResource.class)));
    }
   
    @Test public void
    indicatesResourcesThatAreNotFound() throws IOException {
        final Resource resource = engine.resolve(new AddressParser("http://ci-eye/sausage"));
        final Request request = context.mock(Request.class);
        final Response response = context.mock(Response.class);
       
        context.checking(new Expectations() {{
            oneOf(response).setCode(404);
View Full Code Here

TOP

Related Classes of org.simpleframework.http.parse.AddressParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.