/* * Copyright (C) 2011 Red Hat, Inc. and/or its affiliates. * * Licensed 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.jboss.errai.codegen.test; import java.lang.annotation.Target; import javax.annotation.PostConstruct; import org.jboss.errai.codegen.AnnotationEncoder; import org.jboss.errai.codegen.test.model.MyBean; import org.jboss.errai.codegen.test.model.MyTestAnnotation; import org.junit.Test; /** * @author Mike Brock <cbrock@redhat.com> * @author Christian Sadilek <csadilek@redhat.com> */ public class AnnotationEncoderTest extends AbstractCodegenTest { @Test public void testEncodeAnnotation() { String enc = AnnotationEncoder.encode(PostConstruct.class.getAnnotation(Target.class)).generate(null); assertEquals("new java.lang.annotation.Target() { " + "public Class annotationType() { " + " return java.lang.annotation.Target.class; " + "} " + "public String toString() { " + " return \"@java.lang.annotation.Target(value=[METHOD])\"; " + "} " + "public java.lang.annotation.ElementType[] value() { " + " return new java.lang.annotation.ElementType[] { " + " java.lang.annotation.ElementType.METHOD }; " + "} " + "}", enc); } @Test public void testEncodeAnnotationWithMultipleProperties() { String enc = AnnotationEncoder.encode(MyBean.class.getAnnotation(MyTestAnnotation.class)).generate(null); assertEquals("new org.jboss.errai.codegen.test.model.MyTestAnnotation() { " + "public Class annotationType() { " + " return org.jboss.errai.codegen.test.model.MyTestAnnotation.class; " + "} " + "public String foo() { " + " return \"barfoo\"; " + "} " + "public org.jboss.errai.codegen.test.model.TEnum testEum() { " + " return org.jboss.errai.codegen.test.model.TEnum.FOURTH; " + "} " + "public String toString() { " + " return \"@org.jboss.errai.codegen.test.model.MyTestAnnotation(foo=barfoo, testEum=FOURTH)\"; " + "} " + "}", enc); } }