aboutsummaryrefslogtreecommitdiffstats
path: root/test/recipes/25-test_verify.t
blob: 7c0f091e102b2ce414e43a86a8e01870ddb80c06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /usr/bin/perl

use strict;
use warnings;

use File::Spec::Functions qw/canonpath/;
use OpenSSL::Test qw/:DEFAULT top_dir top_file/;

setup("test_verify");

plan skip_all => "no rehash.time was found."
    unless (-f top_file("rehash.time"));

plan tests => 1;

note("Expect some failures and expired certificate");
ok(run(app(["openssl", "verify", "-CApath", top_dir("certs", "demo"),
	    glob(top_file("certs", "demo", "*.pem"))])), "verying demo certs");