< prev index next >

test/testlibrary_tests/OutputAnalyzerTest.java

Print this page




  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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @summary Test the OutputAnalyzer utility class
  27  * @library /testlibrary
  28  * @modules java.base/sun.misc
  29  *          java.management
  30  */
  31 
  32 import com.oracle.java.testlibrary.OutputAnalyzer;
  33 
  34 public class OutputAnalyzerTest {
  35 
  36   public static void main(String args[]) throws Exception {
  37 
  38     String stdout = "aaaaaa";
  39     String stderr = "bbbbbb";
  40 
  41     // Regexps used for testing pattern matching of the test input
  42     String stdoutPattern = "[a]";
  43     String stderrPattern = "[b]";
  44     String nonExistingPattern = "[c]";
  45 
  46     OutputAnalyzer output = new OutputAnalyzer(stdout, stderr);
  47 
  48     if (!stdout.equals(output.getStdout())) {
  49       throw new Exception("getStdout() returned '" + output.getStdout() + "', expected '" + stdout + "'");
  50     }
  51 
  52     if (!stderr.equals(output.getStderr())) {




  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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @summary Test the OutputAnalyzer utility class
  27  * @library /testlibrary
  28  * @modules java.base/sun.misc
  29  *          java.management
  30  */
  31 
  32 import jdk.test.lib.OutputAnalyzer;
  33 
  34 public class OutputAnalyzerTest {
  35 
  36   public static void main(String args[]) throws Exception {
  37 
  38     String stdout = "aaaaaa";
  39     String stderr = "bbbbbb";
  40 
  41     // Regexps used for testing pattern matching of the test input
  42     String stdoutPattern = "[a]";
  43     String stderrPattern = "[b]";
  44     String nonExistingPattern = "[c]";
  45 
  46     OutputAnalyzer output = new OutputAnalyzer(stdout, stderr);
  47 
  48     if (!stdout.equals(output.getStdout())) {
  49       throw new Exception("getStdout() returned '" + output.getStdout() + "', expected '" + stdout + "'");
  50     }
  51 
  52     if (!stderr.equals(output.getStderr())) {


< prev index next >