test/jdk/sun/security/ssl/EngineArgs/DebugReportsOneExtraByte.sh
author xuelei
Mon, 25 Jun 2018 13:41:39 -0700
changeset 50768 68fa3d4026ea
parent 47216 71c04702a3d5
permissions -rw-r--r--
8196584: TLS 1.3 Implementation Reviewed-by: ascarpino, coffeys, dfuchs, jjiang, jnimeh, mullan, rhalade, ssahoo, valeriep, weijun, wetmore, xuelei Contributed-by: Adam Petcher <adam.petcher@oracle.com>, Amanda Jiang <amanda.jiang@oracle.com>, Anthony Scarpino <anthony.scarpino@oracle.com>, Bradford Wetmore <bradford.wetmore@oracle.com>, Jamil Nimeh <jamil.j.nimeh@oracle.com>, John Jiang <sha.jiang@oracle.com>, Rajan Halade <rajan.halade@oracle.com>, Sibabrata Sahoo <sibabrata.sahoo@oracle.com>, Valerie Peng <valerie.peng@oracle.com>, Weijun Wang <weijun.wang@oracle.com>, Xuelei Fan <xuelei.fan@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11684
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
     1
#! /bin/sh
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
     2
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
     3
#
50768
68fa3d4026ea 8196584: TLS 1.3 Implementation
xuelei
parents: 47216
diff changeset
     4
# Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
11684
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
     5
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
     6
#
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
     7
# This code is free software; you can redistribute it and/or modify it
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
     8
# under the terms of the GNU General Public License version 2 only, as
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
     9
# published by the Free Software Foundation.
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    10
#
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    15
# accompanied this code).
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    16
#
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    20
#
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    23
# questions.
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    24
#
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    25
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    26
# @test
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    27
# @bug 7126889
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    28
# @summary Incorrect SSLEngine debug output
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    29
#
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    30
# ${TESTJAVA} is pointing to the JDK under test.
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    31
#
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    32
# set platform-dependent variables
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    33
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    34
OS=`uname -s`
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    35
case "$OS" in
22602
0d9a07b0d7e9 8028537: PPC64: Updated the JDK regression tests to run on AIX
simonis
parents: 15254
diff changeset
    36
  SunOS | Linux | Darwin | AIX )
11684
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    37
    PS=":"
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    38
    FS="/"
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    39
    ;;
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    40
  CYGWIN* )
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    41
    PS=";"
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    42
    FS="/"
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    43
    ;;
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    44
  Windows* )
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    45
    PS=";"
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    46
    FS="\\"
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    47
    ;;
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    48
  * )
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    49
    echo "Unrecognized system!"
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    50
    exit 1;
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    51
    ;;
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    52
esac
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    53
15254
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    54
${COMPILEJAVA}${FS}bin${FS}javac ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} -d . \
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    55
    ${TESTSRC}${FS}DebugReportsOneExtraByte.java
11684
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    56
50768
68fa3d4026ea 8196584: TLS 1.3 Implementation
xuelei
parents: 47216
diff changeset
    57
STRING='WRITE: TLS10 application_data, length = 8'
11684
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    58
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    59
echo "Examining debug output for the string:"
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    60
echo "${STRING}"
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    61
echo "========="
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    62
14786
a9f61e0cbe61 8003890: corelibs test scripts should pass TESTVMOPTS
chegar
parents: 12047
diff changeset
    63
${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} -Djavax.net.debug=all \
11684
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    64
    -Dtest.src=${TESTSRC} \
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    65
    DebugReportsOneExtraByte 2>&1 | \
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    66
    grep "${STRING}"
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    67
RETVAL=$?
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    68
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    69
echo "========="
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    70
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    71
if [ ${RETVAL} -ne 0 ]; then
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    72
    echo "Did NOT see the expected debug output."
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    73
    exit 1
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    74
else
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    75
    echo "Received the expected debug output."
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    76
    exit 0
c4018f1df09b 7126889: Incorrect SSLEngine debug output
wetmore
parents:
diff changeset
    77
fi
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11821
diff changeset
    78
else
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11821
diff changeset
    79
    echo "Received the expected debug output."
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11821
diff changeset
    80
    exit 0
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11821
diff changeset
    81
fi