summaryrefslogtreecommitdiffstats
path: root/tests/dogtag/acceptance/bugzilla/jss-bugs/bug-1040640.sh
blob: eca9de24c2c0c52c8793c7eb9854433d1ba4ded0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/bin/bash
# vim: dict=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
#   runtest.sh of /CoreOS/dogtag/acceptance/bugzilla/jss-bugs
#   Description: 1040640 bug verification
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
#   Authors: Roshni Pattath <rpattath@redhat.com> 
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
#   Copyright (c) 2013 Red Hat, Inc. All rights reserved.
#
#   This copyrighted material is made available to anyone wishing
#   to use, modify, copy, or redistribute it subject to the terms
#   and conditions of the GNU General Public License version 2.
#
#   This program is distributed in the hope that it will be
#   useful, but WITHOUT ANY WARRANTY; without even the implied
#   warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
#   PURPOSE. See the GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public
#   License along with this program; if not, write to the Free
#   Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
#   Boston, MA 02110-1301, USA.
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

# Include rhts environment
. /usr/share/beakerlib/beakerlib.sh
. /opt/rhqa_pki/rhcs-shared.sh
. /opt/rhqa_pki/pki-cert-cli-lib.sh
. /opt/rhqa_pki/env.sh

########################################################################
#bug_setup.sh should be first executed prior to bug verification
########################################################################

########################################################################
# Test Suite Globals
########################################################################
run_bug-1040640-verification(){
 
     rlPhaseStartTest "Bug 1040640 -  Incorrect OIDs for SHA2 algorithms"
	BUGCA_DOMAIN=`hostname -d`
	pkcs10_cert_req_old="$BUGCA_CERTDB_DIR/certReq.p10"
	pkcs10_cert_req_out_old="$BUGCA_CERTDB_DIR/certReq.p10.cmc"
	cmc_conf_file_old="$BUGCA_CERTDB_DIR/p10cmc.conf"
	http_client_rsa_conf_old="$BUGCA_CERTDB_DIR/HttpClientRSA.cfg"
	http_client_out_old="$BUGCA_CERTDB_DIR/certReq.p10.cmc.response"
	asn1_out_old="$BUGCA_CERTDB_DIR/asn1.out"
        rlRun "PKCS10Client -d $BUGCA_CERTDB_DIR -p $BUGCA_CERTDB_DIR_PASSWORD -o $pkcs10_cert_req_old -n \"CN=test1\" -a rsa -l 2048"
	echo "numRequests=1" >> $cmc_conf_file_old
	echo "input=$pkcs10_cert_req_old" >> $cmc_conf_file_old
	echo "output=$pkcs10_cert_req_out_old" >> $cmc_conf_file_old
	echo "nickname=PKI Administrator for $BUGCA_DOMAIN" >> $cmc_conf_file_old
	echo "dbdir=$BUGCA_CERTDB_DIR" >> $cmc_conf_file_old
	echo "password=Secret123" >> $cmc_conf_file_old
	echo "format=pkcs10" >> $cmc_conf_file_old
	rlRun "CMCRequest $cmc_conf_file_old"
	rlRun "sleep 10"
	echo "host=$MASTER" >> $http_client_rsa_conf_old
	echo "port=$BUGCA_HTTP_PORT" >> $http_client_rsa_conf_old
	echo "secure=false" >> $http_client_rsa_conf_old
	echo "input=$pkcs10_cert_req_out_old" >> $http_client_rsa_conf_old
	echo "output=$http_client_out_old" >> $http_client_rsa_conf_old
	echo "dbdir=$BUGCA_CERTDB_DIR" >> $http_client_rsa_conf_old
	echo "clientmode=false" >> $http_client_rsa_conf_old
	echo "password=Secret123" >> $http_client_rsa_conf_old
	echo "nickname=PKI Administrator for $BUGCA_DOMAIN" >> $http_client_rsa_conf_old
	echo "servlet=/ca/ee/ca/profileSubmitCMCFull" >> $http_client_rsa_conf_old
	rlRun "HttpClient $http_client_rsa_conf_old"
	rlRun "sleep 10"
	rlRun "yum -y install dumpasn1"
	rlRun "dumpasn1 $http_client_out_old > $asn1_out_old"
	rlAssertNotGrep "2 16 840 1 101 3 4 1" "$asn1_out_old"
	rlAssertGrep "2 16 840 1 101 3 4 2 1" "$asn1_out_old"
     rlPhaseEnd

}