test/sun/management/AgentCheckTest.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  */
  23 
  24 /**
  25  *  @test
  26  *  @bug 5013605
  27  *  @summary Localize log messages from the management agents
  28  *
  29  *  @author Tim Bell
  30  *
  31  *  @run compile -source 1.5 -g AgentCheckTest.java
  32  *  @run main AgentCheckTest
  33  */
  34 import sun.management.Agent;
  35 
  36 public class AgentCheckTest {
  37 
  38     public static void main(String[] args){
  39         String [][] testStrings = {
  40             {"agent.err.error", "", ""},
  41             {"jmxremote.ConnectorBootstrap.initialize", "", ""},
  42             {"jmxremote.ConnectorBootstrap.initialize.noAuthentication", "", ""},
  43             {"jmxremote.ConnectorBootstrap.initialize.ready", "Phony JMXServiceURL", ""},
  44             {"jmxremote.ConnectorBootstrap.initialize.password.readonly", "Phony passwordFileName", ""},
  45             {"jmxremote.AdaptorBootstrap.getTargetList.processing", "", ""},
  46             {"jmxremote.AdaptorBootstrap.getTargetList.adding", "Phony target", ""},
  47             {"jmxremote.AdaptorBootstrap.getTargetList.starting", "", ""},
  48             {"jmxremote.AdaptorBootstrap.getTargetList.initialize1", "", ""},
  49             {"jmxremote.AdaptorBootstrap.getTargetList.initialize2", "Phony hostname", "Phony port"},
  50             {"jmxremote.AdaptorBootstrap.getTargetList.terminate", "Phony exception", ""},
  51         };
  52 


  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  */
  23 
  24 /**
  25  *  @test
  26  *  @bug 5013605
  27  *  @summary Localize log messages from the management agents
  28  *
  29  *  @author Tim Bell



  30  */
  31 import sun.management.Agent;
  32 
  33 public class AgentCheckTest {
  34 
  35     public static void main(String[] args){
  36         String [][] testStrings = {
  37             {"agent.err.error", "", ""},
  38             {"jmxremote.ConnectorBootstrap.initialize", "", ""},
  39             {"jmxremote.ConnectorBootstrap.initialize.noAuthentication", "", ""},
  40             {"jmxremote.ConnectorBootstrap.initialize.ready", "Phony JMXServiceURL", ""},
  41             {"jmxremote.ConnectorBootstrap.initialize.password.readonly", "Phony passwordFileName", ""},
  42             {"jmxremote.AdaptorBootstrap.getTargetList.processing", "", ""},
  43             {"jmxremote.AdaptorBootstrap.getTargetList.adding", "Phony target", ""},
  44             {"jmxremote.AdaptorBootstrap.getTargetList.starting", "", ""},
  45             {"jmxremote.AdaptorBootstrap.getTargetList.initialize1", "", ""},
  46             {"jmxremote.AdaptorBootstrap.getTargetList.initialize2", "Phony hostname", "Phony port"},
  47             {"jmxremote.AdaptorBootstrap.getTargetList.terminate", "Phony exception", ""},
  48         };
  49