2018-02-13 20:15:34 +08:00
|
|
|
#! /usr/bin/env perl
|
|
|
|
# Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the OpenSSL license (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 File::Spec;
|
|
|
|
use OpenSSL::Test qw/:DEFAULT srctop_file/;
|
|
|
|
use OpenSSL::Test::Utils;
|
|
|
|
|
|
|
|
setup("test_out_option");
|
|
|
|
|
2018-04-20 14:36:18 +08:00
|
|
|
# Paths that should generate failure when trying to write to them.
|
|
|
|
# Directories are a safe bet for failure on all platforms.
|
|
|
|
# Note that directories must end with a slash here, because of how
|
|
|
|
# File::Spec massages them into directory specs on some platforms.
|
|
|
|
my @failure_paths = (
|
|
|
|
'./',
|
|
|
|
);
|
|
|
|
my @success_paths = (
|
|
|
|
'randomname.bin'
|
|
|
|
);
|
2018-02-13 20:15:34 +08:00
|
|
|
|
|
|
|
# Test for trying to create a file in a non-exist directory
|
2018-03-12 20:53:21 +08:00
|
|
|
my $rand_path = "";
|
2018-04-20 14:36:18 +08:00
|
|
|
do {
|
|
|
|
my @chars = ("A".."Z", "a".."z", "0".."9");
|
|
|
|
$rand_path .= $chars[rand @chars] for 1..32;
|
|
|
|
} while (-d File::Spec->catdir('.', $rand_path));
|
|
|
|
$rand_path .= "/randomname.bin";
|
2018-02-13 20:15:34 +08:00
|
|
|
|
2018-04-20 14:36:18 +08:00
|
|
|
push @failure_paths, $rand_path;
|
2018-02-13 20:15:34 +08:00
|
|
|
|
2018-04-20 14:36:18 +08:00
|
|
|
# All explicit cross compilations run a risk of failing this, because the
|
|
|
|
# null device provided by perl might not match what the cross compiled
|
|
|
|
# application expects to see as a null device. Therefore, we skip the check
|
|
|
|
# of outputing to the null device if the cross compile prefix is set.
|
|
|
|
if ((config('CROSS_COMPILE') // '') eq '') {
|
|
|
|
# Check that we can write to the NULL device
|
|
|
|
push @success_paths, File::Spec->devnull();
|
2018-02-13 20:15:34 +08:00
|
|
|
}
|
|
|
|
|
2018-04-20 14:36:18 +08:00
|
|
|
plan tests => scalar @failure_paths + scalar @success_paths;
|
|
|
|
|
|
|
|
foreach (@failure_paths) {
|
|
|
|
my $path = File::Spec->canonpath($_);
|
|
|
|
ok(!run(app([ 'openssl', 'rand', '-out', $path, '1'])),
|
|
|
|
"invalid output path: $path");
|
|
|
|
}
|
|
|
|
foreach (@success_paths) {
|
|
|
|
my $path = File::Spec->canonpath($_);
|
|
|
|
ok(run(app([ 'openssl', 'rand', '-out', $path, '1'])),
|
|
|
|
"valid output path: $path");
|
|
|
|
}
|
2018-02-13 20:15:34 +08:00
|
|
|
|
2018-04-20 14:36:18 +08:00
|
|
|
END {
|
|
|
|
unlink 'randomname.bin' if -f 'randomname.bin';
|
2018-02-13 20:15:34 +08:00
|
|
|
}
|