blob: b271c3791d54b29517ba7fcc808da7ce3e15e2fa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Shane Clarke.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Shane Clarke - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.ws.jaxws.core.tests;
import java.util.ArrayList;
import java.util.List;
import javax.jws.WebParam;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.jdt.core.IMethod;
import org.eclipse.jdt.core.dom.Annotation;
import org.eclipse.jdt.core.dom.MemberValuePair;
import org.eclipse.jdt.core.dom.SingleVariableDeclaration;
import org.eclipse.jst.ws.annotations.core.AnnotationsCore;
import org.eclipse.jst.ws.annotations.core.utils.AnnotationUtils;
public class AddAnnotationToMethodParameterTest extends AbstractAnnotationTest {
@Override
public String getPackageName() {
return "com.example";
}
@Override
public String getClassName() {
return "Calculator.java";
}
@Override
public String getClassContents() {
StringBuilder classContents = new StringBuilder("package com.example;\n\n");
classContents.append("public class Calculator {\n\n\tpublic int add(int i, int k) {");
classContents.append("\n\t\treturn i + k;\n\t}\n}");
return classContents.toString();
}
@Override
public Annotation getAnnotation() {
List<MemberValuePair> memberValuePairs = new ArrayList<MemberValuePair>();
MemberValuePair nameValuePair = AnnotationsCore.createStringMemberValuePair(ast, "name", "i");
memberValuePairs.add(nameValuePair);
return AnnotationsCore.createAnnotation(ast, WebParam.class, WebParam.class.getSimpleName(),
memberValuePairs);
}
public void testAddAnnotationToMethodParameter() {
try {
assertNotNull(annotation);
assertEquals(WebParam.class.getSimpleName(), AnnotationUtils.getAnnotationName(annotation));
IMethod method = source.findPrimaryType().getMethod("add", new String[] { "I", "I" });
assertNotNull(method);
AnnotationUtils.addImportEdit(compilationUnit, WebParam.class, textFileChange, true);
SingleVariableDeclaration parameter = AnnotationUtils.getMethodParameter(compilationUnit, method,
65);
AnnotationUtils.addAnnotationToMethodParameter(source, compilationUnit, rewriter, parameter,
method, annotation, textFileChange);
assertTrue(executeChange(new NullProgressMonitor(), textFileChange));
// refresh
parameter = AnnotationUtils.getMethodParameter(AnnotationUtils.getASTParser(method
.getCompilationUnit(), false), method, 93);
assertTrue(AnnotationUtils.isAnnotationPresent(parameter, annotation));
} catch (CoreException ce) {
fail(ce.getLocalizedMessage());
}
}
}