| /* |
| * 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.causeway.core.metamodel.facetapi; |
| |
| import java.lang.reflect.Method; |
| import java.math.BigDecimal; |
| |
| import org.junit.jupiter.api.Test; |
| |
| import static org.hamcrest.CoreMatchers.is; |
| import static org.hamcrest.MatcherAssert.assertThat; |
| |
| import org.apache.causeway.applib.Identifier; |
| import org.apache.causeway.applib.id.LogicalType; |
| import org.apache.causeway.commons.internal.reflection._MethodFacades; |
| |
| public class FeatureTypeTest_identifierFor { |
| |
| public static class SomeDomainClass { |
| private BigDecimal aBigDecimal; |
| |
| public BigDecimal getABigDecimal() { |
| return aBigDecimal; |
| } |
| |
| public void setABigDecimal(final BigDecimal aBigDecimal) { |
| this.aBigDecimal = aBigDecimal; |
| } |
| |
| private BigDecimal anotherBigDecimal; |
| |
| public BigDecimal getAnotherBigDecimal() { |
| return anotherBigDecimal; |
| } |
| |
| public void setAnotherBigDecimal(final BigDecimal anotherBigDecimal) { |
| this.anotherBigDecimal = anotherBigDecimal; |
| } |
| } |
| |
| @Test |
| public void property_whenMethodNameIs_XYyyZzz() throws Exception { |
| final Method method = SomeDomainClass.class.getMethod("getABigDecimal"); |
| final Identifier identifierFor = FeatureType.PROPERTY.identifierFor( |
| LogicalType.fqcn(SomeDomainClass.class), _MethodFacades.testing.regular(method)); |
| assertThat(identifierFor.getMemberLogicalName(), is("ABigDecimal")); // very |
| // odd |
| // compared |
| // to |
| // anotherBigDecimal, |
| // but |
| // arises |
| // from |
| // Introspector |
| // class, |
| // so |
| // presumably |
| // part of |
| // the |
| // javabeans |
| // spec. |
| } |
| |
| @Test |
| public void property_whenMethodNameIs_XxxxYyyZzz() throws Exception { |
| final Method method = SomeDomainClass.class.getMethod("getAnotherBigDecimal"); |
| final Identifier identifierFor = FeatureType.PROPERTY.identifierFor( |
| LogicalType.fqcn(SomeDomainClass.class), _MethodFacades.testing.regular(method)); |
| assertThat(identifierFor.getMemberLogicalName(), is("anotherBigDecimal")); |
| } |
| |
| } |