1 | #! /usr/bin/env perl
|
---|
2 |
|
---|
3 | use strict;
|
---|
4 | use warnings;
|
---|
5 | use OpenSSL::Test qw/:DEFAULT data_file/;
|
---|
6 | use OpenSSL::Test::Utils;
|
---|
7 |
|
---|
8 | setup("test_includes");
|
---|
9 |
|
---|
10 | plan skip_all => "test_includes doesn't work without posix-io"
|
---|
11 | if disabled("posix-io");
|
---|
12 |
|
---|
13 | delete $ENV{OPENSSL_CONF_INCLUDE};
|
---|
14 |
|
---|
15 | plan tests => # The number of tests being performed
|
---|
16 | 6
|
---|
17 | + ($^O eq "VMS" ? 2 : 0);
|
---|
18 |
|
---|
19 | ok(run(test(["conf_include_test", data_file("includes.cnf")])), "test directory includes");
|
---|
20 | ok(run(test(["conf_include_test", data_file("includes-file.cnf")])), "test file includes");
|
---|
21 | ok(run(test(["conf_include_test", data_file("includes-eq.cnf")])), "test includes with equal character");
|
---|
22 | ok(run(test(["conf_include_test", data_file("includes-eq-ws.cnf")])), "test includes with equal and whitespaces");
|
---|
23 | if ($^O eq "VMS") {
|
---|
24 | ok(run(test(["conf_include_test", data_file("vms-includes.cnf")])),
|
---|
25 | "test directory includes, VMS syntax");
|
---|
26 | ok(run(test(["conf_include_test", data_file("vms-includes-file.cnf")])),
|
---|
27 | "test file includes, VMS syntax");
|
---|
28 | }
|
---|
29 | ok(run(test(["conf_include_test", "-f", data_file("includes-broken.cnf")])), "test broken includes");
|
---|
30 | ok(run(test(["conf_include_test", "-f", data_file("incdir.cnf")])), "test includedir");
|
---|