Blame tests/cert-tests/cert-non-digits-time

Packit Service 4684c1
#!/bin/sh
Packit Service 4684c1
Packit Service 4684c1
# Copyright (C) 2017 Red Hat, Inc.
Packit Service 4684c1
#
Packit Service 4684c1
# This file is part of GnuTLS.
Packit Service 4684c1
#
Packit Service 4684c1
# GnuTLS is free software; you can redistribute it and/or modify it
Packit Service 4684c1
# under the terms of the GNU General Public License as published by the
Packit Service 4684c1
# Free Software Foundation; either version 3 of the License, or (at
Packit Service 4684c1
# your option) any later version.
Packit Service 4684c1
#
Packit Service 4684c1
# GnuTLS is distributed in the hope that it will be useful, but
Packit Service 4684c1
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 4684c1
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 4684c1
# General Public License for more details.
Packit Service 4684c1
#
Packit Service 4684c1
# You should have received a copy of the GNU General Public License
Packit Service 4684c1
# along with GnuTLS; if not, write to the Free Software Foundation,
Packit Service 4684c1
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit Service 4684c1
Packit Service 4684c1
#set -e
Packit Service 4684c1
Packit Service 4684c1
srcdir="${srcdir:-.}"
Packit Service 4684c1
CERTTOOL="${CERTTOOL:-../../src/certtool${EXEEXT}}"
Packit Service 4684c1
DIFF="${DIFF:-diff -b -B}"
Packit Service 4684c1
Packit Service 4684c1
if ! test -x "${CERTTOOL}"; then
Packit Service 4684c1
    exit 77
Packit Service 4684c1
fi
Packit Service 4684c1
Packit Service 4684c1
if ! test -z "${VALGRIND}"; then
Packit Service 4684c1
    VALGRIND="${LIBTOOL:-libtool} --mode=execute ${VALGRIND}"
Packit Service 4684c1
fi
Packit Service 4684c1
Packit Service 4684c1
check_for_datefudge
Packit Service 4684c1
Packit Service 4684c1
# Check whether certificates with non-digits time fields are accepted
Packit Service 4684c1
datefudge -s "2019-12-19" \
Packit Service 4684c1
${VALGRIND}"${CERTTOOL}" --verify --load-ca-certificate "${srcdir}/data/cert-with-non-digits-time-ca.pem" --infile "${srcdir}/data/cert-with-non-digits-time.pem"
Packit Service 4684c1
rc=$?
Packit Service 4684c1
Packit Service 4684c1
if test "${rc}" = "0";then
Packit Service 4684c1
    echo "certificate whose notbefore field is a non-digits was accepted"
Packit Service 4684c1
    exit 1
Packit Service 4684c1
fi
Packit Service 4684c1
Packit Service 4684c1
exit 0