blob: b2bb1f98a79e03e4ea0c367b02ba348e2d9a689e [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.junit.runners.MethodSorters.*;
import java.util.*;
import org.apache.juneau.collections.*;
import org.apache.juneau.http.annotation.HasQuery;
import org.apache.juneau.rest.*;
import org.apache.juneau.rest.client2.*;
import org.apache.juneau.rest.mock2.*;
import org.junit.*;
@FixMethodOrder(NAME_ASCENDING)
public class Restx_ReqAttrs_Test {
//------------------------------------------------------------------------------------------------------------------
// Test properties inheritance.
//------------------------------------------------------------------------------------------------------------------
@Rest(reqAttrs={"p1:v1","p2:v2"})
public static class A {}
@Rest(reqAttrs={"p2:v2a","p3:v3","p4:v4"})
public static class A1 extends A {}
@Rest
public static class A2 extends A1 {
@RestMethod
public OMap a(RequestAttributes attrs) {
// Should show {p1:'v1',p2:'v2a',p3:'v3',p4:'v4'}
return transform(attrs);
}
@RestMethod(reqAttrs={"p4:v4a","p5:v5"})
public OMap b(RequestAttributes attrs, @HasQuery("override") boolean override) {
// Should show {p1:'v1',p2:'v2a',p3:'v3',p4:'v4a',p5:'v5'} when override is false.
// Should show {p1:'x',p2:'x',p3:'x',p4:'x',p5:'x'} when override is true.
if (override) {
attrs.put("p1", "x");
attrs.put("p2", "x");
attrs.put("p3", "x");
attrs.put("p4", "x");
attrs.put("p5", "x");
}
return transform(attrs);
}
private OMap transform(RequestAttributes attrs) {
OMap m = new OMap();
for (Map.Entry<String,Object> e : attrs.entrySet()) {
if (e.getKey().startsWith("p"))
m.put(e.getKey(), e.getValue());
}
return m;
}
}
@Test
public void a01_basic() throws Exception {
RestClient a = MockRestClient.build(A2.class);
a.get("/a").run().assertBody().is("{p1:'v1',p2:'v2a',p3:'v3',p4:'v4'}");
a.get("/b").run().assertBody().is("{p1:'v1',p2:'v2a',p3:'v3',p4:'v4a',p5:'v5'}");
a.get("/b?override").run().assertBody().is("{p1:'x',p2:'x',p3:'x',p4:'x',p5:'x'}");
}
}