View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  
20  package org.apache.myfaces.tobago.component;
21  
22  import org.junit.jupiter.api.Assertions;
23  import org.junit.jupiter.api.Test;
24  import org.slf4j.Logger;
25  import org.slf4j.LoggerFactory;
26  
27  import javax.faces.component.UIComponent;
28  import java.lang.invoke.MethodHandles;
29  import java.lang.reflect.Method;
30  
31  public class AttributesOfGeneratedUIComponentsUnitTest extends AbstractGeneratedUIComponentsUnitTest {
32  
33    private static final Logger LOG = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
34  
35    @Test
36    public void test() {
37  
38      for (final Class<? extends UIComponent> uiComponent : getUiComponents()) {
39        final Method[] methods = uiComponent.getMethods();
40        for (final Method method : methods) {
41  
42          if (!method.getDeclaringClass().equals(uiComponent)) {
43            // check only the method, that have an implementation in the generated class
44            continue;
45          }
46  
47          final String methodName = method.getName();
48          if (!methodName.startsWith("set") || methodName.length() <= 3) {
49            continue;
50          }
51  
52          String property = Character.toLowerCase(methodName.charAt(3)) + methodName.substring(4);
53          if (property.equals("for")) {
54            property = "forValue";
55          }
56  
57          LOG.debug("checking component {} for property {}", uiComponent, property);
58  
59          try {
60            Attributes.valueOf(property);
61          } catch (final IllegalArgumentException e) {
62            Assertions.fail(e.getMessage());
63          }
64  
65        }
66      }
67    }
68  
69  }