Conditionalize usage of engine in a better way
Pass engine parameters only when appropriate for given version. Make it simple to switch to provider or engine based testing.
This commit is contained in:
parent
404dbb9c4c
commit
d6837c5fe0
2 changed files with 14 additions and 6 deletions
|
|
@ -15,8 +15,9 @@ adjust+:
|
|||
- enabled: false
|
||||
when: distro == rhel-4, rhel-5, rhel-6
|
||||
continue: false
|
||||
recommends+:
|
||||
recommend+:
|
||||
- bind-utils
|
||||
- bind-dnssec-utils
|
||||
- softhsm
|
||||
- opensc
|
||||
- pkcs11-provider
|
||||
|
|
|
|||
|
|
@ -31,7 +31,8 @@
|
|||
: ${PACKAGE:=bind}
|
||||
BACKUP_RESOLV=""
|
||||
SOURCE_RESOLV="/etc/resolv.conf"
|
||||
: ${ENGINE:=-E pkcs11}
|
||||
: ${ENGINE:=pkcs11}
|
||||
: ${USE_ENGINE:=y}
|
||||
|
||||
make_openssl_conf() {
|
||||
cat << EOF
|
||||
|
|
@ -107,6 +108,8 @@ rlJournalStart
|
|||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartSetup "Prepare token"
|
||||
# This test prepares token to be used by the root user, not really complicating it with file access rights.
|
||||
# It may not emulare properly what is used by named
|
||||
rlRun "pkcs11-tool --module $SOFTHSM2_MODULE -L" 0 "check slots"
|
||||
rlRun "pkcs11-tool --module $SOFTHSM2_MODULE -T" 0 "check tokens"
|
||||
rlRun "pkcs11-tool --module $SOFTHSM2_MODULE --pin $PIN --keypairgen --key-type RSA:2048 --label test-zsk" 0 "generate new pair"
|
||||
|
|
@ -121,11 +124,15 @@ rlJournalStart
|
|||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest "Test DNSSEC operations on token"
|
||||
rlRun "dnssec-keyfromlabel -a RSASHA256 $ENGINE -l \"$ZSK_URI?pin-source=$PIN_SOURCE\" test" 0 "Import dnssec ZSK"
|
||||
rlRun "dnssec-keyfromlabel -a RSASHA256 $ENGINE -l \"$KSK_URI?pin-source=$PIN_SOURCE\" -f KSK test" 0 "Import dnssec KSK"
|
||||
rlRun "dnssec-signzone $ENGINE -S -o test test.zone" 0 "Create zone signatures"
|
||||
DNSSEC_ENGINE=""
|
||||
if [ "$USE_ENGINE" = y ]; then
|
||||
DNSSEC_ENGINE="-E $ENGINE"
|
||||
fi
|
||||
rlRun "dnssec-keyfromlabel -a RSASHA256 $DNSSEC_ENGINE -l \"$ZSK_URI?pin-source=$PIN_SOURCE\" test" 0 "Import dnssec ZSK"
|
||||
rlRun "dnssec-keyfromlabel -a RSASHA256 $DNSSEC_ENGINE -l \"$KSK_URI?pin-source=$PIN_SOURCE\" -f KSK test" 0 "Import dnssec KSK"
|
||||
rlRun "dnssec-signzone $DNSSEC_ENGINE -S -o test test.zone" 0 "Create zone signatures"
|
||||
rlRun "test -e test.zone.signed" 0 "Check signed zone were created."
|
||||
rlRun "dnssec-verify $ENGINE -o test test.zone.signed" 0 "Check zone were signed ok"
|
||||
rlRun "dnssec-verify $DNSSEC_ENGINE -o test test.zone.signed" 0 "Check zone were signed ok"
|
||||
rlRun "named-checkzone test test.zone"
|
||||
rlRun "named-checkzone test test.zone.signed"
|
||||
[ "$DEBUG" = y ] && PS1="test-debug $PS1" bash -i
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue