blob: b7c20e0ab1342720ae911187f5460a2e6f9d78f2 [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you 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.apache.juneau.rest.annotation;
import static org.apache.juneau.http.HttpMethod.*;
import static org.junit.runners.MethodSorters.*;
import org.apache.juneau.http.annotation.HasQuery;
import org.apache.juneau.rest.*;
import org.apache.juneau.rest.RestRequest;
import org.apache.juneau.rest.client2.*;
import org.apache.juneau.rest.mock2.*;
import org.junit.*;
@FixMethodOrder(NAME_ASCENDING)
public class HasQuery_Test {
//------------------------------------------------------------------------------------------------------------------
// Simple tests
//------------------------------------------------------------------------------------------------------------------
@Rest
public static class A {
@RestMethod
public String a(RestRequest req, @HasQuery("p1") boolean p1, @HasQuery("p2") Boolean p2) throws Exception {
RequestQuery q = req.getQuery();
return "p1=["+p1+","+q.containsKey("p1")+"],p2=["+p2+","+q.containsKey("p2")+"]";
}
@RestMethod(name=POST)
public String b(RestRequest req, @HasQuery("p1") boolean p1, @HasQuery("p2") Boolean p2) throws Exception {
RequestQuery q = req.getQuery();
return "p1=["+p1+","+q.containsKey("p1")+"],p2=["+p2+","+q.containsKey("p2")+"]";
}
}
@Test
public void a01_basic() throws Exception {
RestClient a = MockRestClient.build(A.class);
a.get("/a?p1=p1&p2=2").run().assertBody().is("p1=[true,true],p2=[true,true]");
a.get("/a?p1&p2").run().assertBody().is("p1=[true,true],p2=[true,true]");
a.get("/a?p1=&p2=").run().assertBody().is("p1=[true,true],p2=[true,true]");
a.get("/a").run().assertBody().is("p1=[false,false],p2=[false,false]");
a.get("/a?p1").run().assertBody().is("p1=[true,true],p2=[false,false]");
a.get("/a?p1=").run().assertBody().is("p1=[true,true],p2=[false,false]");
a.get("/a?p2").run().assertBody().is("p1=[false,false],p2=[true,true]");
a.get("/a?p2=").run().assertBody().is("p1=[false,false],p2=[true,true]");
a.get("/a?p1=foo&p2").run().assertBody().is("p1=[true,true],p2=[true,true]");
a.get("/a?p1&p2=1").run().assertBody().is("p1=[true,true],p2=[true,true]");
String x1 = "a%2Fb%25c%3Dd+e"; // [x/y%z=a+b]
a.get("/a?p1="+x1+"&p2=1").run().assertBody().is("p1=[true,true],p2=[true,true]");
a.post("/b?p1=p1&p2=2", null).run().assertBody().is("p1=[true,true],p2=[true,true]");
a.post("/b?p1&p2", null).run().assertBody().is("p1=[true,true],p2=[true,true]");
a.post("/b?p1=&p2=", null).run().assertBody().is("p1=[true,true],p2=[true,true]");
a.post("/b", null).run().assertBody().is("p1=[false,false],p2=[false,false]");
a.post("/b?p1", null).run().assertBody().is("p1=[true,true],p2=[false,false]");
a.post("/b?p1=", null).run().assertBody().is("p1=[true,true],p2=[false,false]");
a.post("/b?p2", null).run().assertBody().is("p1=[false,false],p2=[true,true]");
a.post("/b?p2=", null).run().assertBody().is("p1=[false,false],p2=[true,true]");
a.post("/b?p1=foo&p2", null).run().assertBody().is("p1=[true,true],p2=[true,true]");
a.post("/b?p1&p2=1", null).run().assertBody().is("p1=[true,true],p2=[true,true]");
String x2 = "a%2Fb%25c%3Dd+e"; // [x/y%z=a+b]
a.post("/b?p1="+x2+"&p2=1", null).run().assertBody().is("p1=[true,true],p2=[true,true]");
}
}