blob: 0f1faa03eabe6fe61fce7cbc957d87137d22e911 [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.annotation2;
import static org.junit.runners.MethodSorters.*;
import org.apache.juneau.http.annotation.HasFormData;
import org.apache.juneau.rest.*;
import org.apache.juneau.rest.annotation.*;
import org.apache.juneau.rest.mock2.*;
import org.junit.*;
@FixMethodOrder(NAME_ASCENDING)
public class HasFormDataAnnotationTest {
//=================================================================================================================
// Simple tests
//=================================================================================================================
@Rest
public static class A {
@RestMethod
public String post(RestRequest req, @HasFormData("p1") boolean p1, @HasFormData("p2") Boolean p2) throws Exception {
RequestFormData f = req.getFormData();
return "p1=["+p1+","+f.containsKey("p1")+"],p2=["+p2+","+f.containsKey("p2")+"]";
}
}
static MockRestClient a = MockRestClient.build(A.class);
@Test
public void a01_post() throws Exception {
a.post("", "p1=p1&p2=2").run().assertBody().is("p1=[true,true],p2=[true,true]");
a.post("", "p1&p2").run().assertBody().is("p1=[true,true],p2=[true,true]");
a.post("", "p1=&p2=").run().assertBody().is("p1=[true,true],p2=[true,true]");
a.post("", null).run().assertBody().is("p1=[false,false],p2=[false,false]");
a.post("", "p1").run().assertBody().is("p1=[true,true],p2=[false,false]");
a.post("", "p1=").run().assertBody().is("p1=[true,true],p2=[false,false]");
a.post("", "p2").run().assertBody().is("p1=[false,false],p2=[true,true]");
a.post("", "p2=").run().assertBody().is("p1=[false,false],p2=[true,true]");
a.post("", "p1=foo&p2").run().assertBody().is("p1=[true,true],p2=[true,true]");
a.post("", "p1&p2=1").run().assertBody().is("p1=[true,true],p2=[true,true]");
String x = "a%2Fb%25c%3Dd+e"; // [x/y%z=a+b]
a.post("", "p1="+x+"&p2=1").run().assertBody().is("p1=[true,true],p2=[true,true]");
}
}