0N/A#!/bin/sh
0N/A
0N/A#
2362N/A# Copyright (c) 2004, 2006, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A# or visit www.oracle.com if you need additional information or have any
2362N/A# questions.
0N/A#
0N/A
0N/A
0N/A# @test
0N/A# @bug 5016507 6173612 6319776 6342019 6484550
0N/A# @summary Start a managed VM and test that a management tool can connect
0N/A# without connection or username/password details.
0N/A# TestManager will attempt a connection to the address obtained from
0N/A# both agent properties and jvmstat buffer.
0N/A#
0N/A# @build TestManager TestApplication
0N/A# @run shell/timeout=300 LocalManagementTest.sh
0N/A
0N/A
0N/AdoTest()
0N/A{
0N/A echo ''
0N/A
0N/A outputfile=${TESTCLASSES}/Test.out
0N/A rm -f ${outputfile}
0N/A
0N/A # Start VM with given options
0N/A echo "+ $JAVA $1 Test"
0N/A $JAVA $1 TestApplication > ${outputfile}&
0N/A pid=$!
0N/A
0N/A # Wait for managed VM to startup
0N/A echo "Waiting for VM to startup..."
0N/A attempts=0
0N/A while true; do
0N/A sleep 1
0N/A port=`tail -1 ${outputfile}`
0N/A if [ ! -z "$port" ]; then
0N/A # In case of errors wait time for output to be flushed
0N/A sleep 1
0N/A cat ${outputfile}
0N/A break
0N/A fi
0N/A attempts=`expr $attempts + 1`
0N/A echo "Waiting $attempts second(s) ..."
0N/A done
0N/A
0N/A # Start the manager - this should connect to VM
0N/A sh -xc "$JAVA -classpath ${TESTCLASSES}:${TESTJAVA}/lib/tools.jar \
0N/A TestManager $pid $port" 2>&1
0N/A if [ $? != 0 ]; then failures=`expr $failures + 1`; fi
0N/A}
0N/A
0N/A
0N/A# Check we are run from jtreg
0N/Aif [ -z "${TESTCLASSES}" ]; then
0N/A echo "Test is designed to be run from jtreg only"
0N/A exit 0
0N/Afi
0N/A
0N/A# For now this test passes silently on Windows - there are 2 reasons
0N/A# to skip it :-
0N/A#
0N/A# 1. No jstat instrumentation buffers if FAT32 so need
0N/A# -XX:+PerfBypassFileSystemCheck
0N/A# 2. $! is used to get the pid of the created process but it's not
0N/A# reliable on older versions of MKS. Also negative pids are returned
0N/A# on Windows 98.
0N/A
0N/Aos=`uname -s`
0N/Aif [ "$os" != "Linux" -a "$os" != "SunOS" ]; then
0N/A echo "Test not designed to run on this operating system, skipping..."
0N/A exit 0
0N/Afi
0N/A
0N/AJAVA=${TESTJAVA}/bin/java
0N/ACLASSPATH=${TESTCLASSES}
0N/Aexport CLASSPATH
0N/A
0N/Afailures=0
0N/A
0N/A# Test 1
0N/AdoTest "-Dcom.sun.management.jmxremote"
0N/A
0N/A# Test 2
0N/AAGENT="${TESTJAVA}/jre/lib/management-agent.jar"
0N/Aif [ ! -f ${AGENT} ]; then
0N/A AGENT="${TESTJAVA}/lib/management-agent.jar"
0N/Afi
0N/AdoTest "-javaagent:${AGENT}"
0N/A
0N/A# Test 3 - no args (blank) - manager should attach and start agent
0N/AdoTest " "
0N/A
0N/A# Test 4 - sanity check arguments to management-agent.jar
0N/Aecho ' '
0N/Ash -xc "${JAVA} -javaagent:${AGENT}=com.sun.management.jmxremote.port=7775,\
0N/Acom.sun.management.jmxremote.authenticate=false,com.sun.management.jmxremote.ssl=false \
0N/A TestApplication -exit" 2>&1
0N/Aif [ $? != 0 ]; then failures=`expr $failures + 1`; fi
0N/A
0N/A# Test 5 - use DNS-only name service
0N/AdoTest "-Dsun.net.spi.namservice.provider.1=\"dns,sun\""
0N/A
0N/A#
0N/A# Results
0N/A#
0N/Aecho ''
0N/Aif [ $failures -gt 0 ];
0N/A then echo "$failures test(s) failed";
0N/A else echo "All test(s) passed"; fi
0N/Aexit $failures
0N/A