You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2013/11/24 03:20:52 UTC

svn commit: r1544901 - in /jmeter/trunk/test/src/org/apache/jorphan/exec: ./ TestKeyToolUtils.java

Author: sebb
Date: Sun Nov 24 02:20:52 2013
New Revision: 1544901

URL: http://svn.apache.org/r1544901
Log:
Test assumptions regarding keytool check

Added:
    jmeter/trunk/test/src/org/apache/jorphan/exec/
    jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java   (with props)

Added: jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java?rev=1544901&view=auto
==============================================================================
--- jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java (added)
+++ jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java Sun Nov 24 02:20:52 2013
@@ -0,0 +1,60 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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 to test JOrphanUtils methods 
+ */
+     
+package org.apache.jorphan.exec;
+
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
+
+import junit.framework.TestCase;
+
+public class TestKeyToolUtils extends TestCase {
+
+    public TestKeyToolUtils() {
+        super();
+    }
+
+    public TestKeyToolUtils(String arg0) {
+        super(arg0);
+    }
+
+    /*
+     * Check the assumption that a missing executable will generate
+     * either an IOException or status which is neither 0 nor 1 
+     *
+     */
+    public void testCheckKeytool() throws Exception {
+        SystemCommand sc = new SystemCommand(null, null);
+        List<String> arguments = new ArrayList<String>();
+        arguments.add("xyzqwas"); // should not exist
+        try {
+            int status = sc.run(arguments);
+            if (status == 0 || status ==1) {
+                fail("Unexpected status " + status);
+            }
+            System.out.println("testCheckKeytool:status="+status);
+        } catch (IOException e) {
+            System.out.println("testCheckKeytool:Exception="+e);
+        }
+    }
+}

Propchange: jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision