33 lines
1 KiB
Perl
Vendored
33 lines
1 KiB
Perl
Vendored
#! /usr/bin/env perl
|
|
# Copyright 2021-2026 The OpenSSL Project Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
# this file except in compliance with the License. You can obtain a copy
|
|
# in the file LICENSE in the source distribution or at
|
|
# https://www.openssl.org/source/license.html
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use OpenSSL::Test qw(:DEFAULT srctop_file);
|
|
|
|
setup('test_bio_readbuffer');
|
|
|
|
my $pemfile = srctop_file("test", "certs", "leaf.pem");
|
|
my $derfile = 'readbuffer_leaf.der';
|
|
|
|
plan tests => 4;
|
|
|
|
ok(run(app([ 'openssl', 'x509', '-inform', 'PEM', '-in', $pemfile,
|
|
'-outform', 'DER', '-out', $derfile])),
|
|
"Generate a DER certificate");
|
|
|
|
ok(run(test(["bio_readbuffer_test", $derfile])),
|
|
"Running bio_readbuffer_test $derfile");
|
|
|
|
ok(run(test(["bio_readbuffer_test", $pemfile])),
|
|
"Running bio_readbuffer_test $pemfile");
|
|
|
|
ok(run(app([ 'openssl', 'x509', '-inform', 'DER', '-outform', 'PEM',
|
|
'-noout' ], stdin => $derfile)),
|
|
"Test stdin read buffer in openssl app");
|