#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# @test
# @bug 4908512 5024825 4957203 4993280 4996963 6174696 6177059
# @run shell ../verifyVariables.sh
# @build Milk MethodAnnotations NestedClassAnnotations StaticFieldAnnotations StaticMethodAnnotations ParameterAnnotations
# @run shell apt.sh
# @summary test consistency of annotation discovery
# @author Joseph D. Darcy
case "${OS}" in
CYGWIN* )
DIFFOPTS="--strip-trailing-cr"
;;
* )
;;
esac
# Construct path to apt executable
# Construct path to javac executable
JAVAC="${TESTJAVA}/bin/javac ${TESTTOOLVMOPTS} -source 1.5 -sourcepath ${TESTSRC} -classpath ${TESTJAVA}/lib/tools.jar -d . "
${TESTSRC}/FreshnessApf.java \
RESULT=$?
case "${RESULT}" in
0 )
;;
* )
echo "Compilation failed."
exit 1
esac
echo "Making services directory and copying services information."
ANNOTATION_FILES="${TESTSRC}/ClassAnnotations.java \
${TESTSRC}/MethodAnnotations.java \
${TESTSRC}/NestedClassAnnotations.java \
${TESTSRC}/StaticFieldAnnotations.java \
${TESTSRC}/StaticMethodAnnotations.java \
${TESTSRC}/ParameterAnnotations.java"
for i in ${ANNOTATION_FILES}
do
printf "%s\n" "Testing annotations on source file ${i}"
RESULT=$?
0 )
;;
* )
echo "Unexpected set of annotations on source files found."
exit 1
esac
printf "%s\n" "Testing annotations on class file ${CLASS}"
RESULT=$?
0 )
;;
* )
echo "Unexpected set of annotations on class files found."
exit 1
esac
done
# Verify source files are favored over class files
RESULT=$?
0 )
;;
* )
exit 1
esac
# Verify new classes can be loaded by getTypeDeclaration
# ${APT} @options3
RESULT=$?
0 )
;;
* )
exit 1
esac
# Verify packages can be loaded by getPackage
RESULT=$?
0 )
;;
* )
exit 1
esac
exit 0