[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Sun Sep 3 08:21:05 UTC 2017


The branch master has been updated
       via  79120f46a2d79432e14b879e8c0f04a210c37970 (commit)
      from  02eca5c640ced75805ff576c4845b33b77e4753a (commit)


- Log -----------------------------------------------------------------
commit 79120f46a2d79432e14b879e8c0f04a210c37970
Author: Richard Levitte <levitte at openssl.org>
Date:   Fri Sep 1 22:42:49 2017 +0200

    OSSL_STORE: Avoid testing with URIs on the mingw command line
    
    Some URIs get "mistreated" (converted) by the MSYS run-time.
    Unfortunately, avoiding this conversion doesn't help either.
    
        http://www.mingw.org/wiki/Posix_path_conversion
    
    Fixes #4314
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Andy Polyakov <appro at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/4322)

-----------------------------------------------------------------------

Summary of changes:
 test/recipes/90-test_store.t | 104 ++++++++++++++++++++++++++++++++-----------
 1 file changed, 79 insertions(+), 25 deletions(-)

diff --git a/test/recipes/90-test_store.t b/test/recipes/90-test_store.t
index 12ad951..9c240a0 100644
--- a/test/recipes/90-test_store.t
+++ b/test/recipes/90-test_store.t
@@ -14,6 +14,32 @@ use OpenSSL::Test qw(:DEFAULT srctop_file srctop_dir bldtop_file data_file);
 my $test_name = "test_store";
 setup($test_name);
 
+# The MSYS2 run-time convert arguments that look like paths when executing
+# a program unless that application is linked with the MSYS run-time.  The
+# exact conversion rules are listed here:
+#
+#       http://www.mingw.org/wiki/Posix_path_conversion
+#
+# With the built-in configurations (all having names starting with "mingw"),
+# the openssl application is not linked with the MSYS2 run-time, and therefore,
+# it will receive possibly converted arguments from the process that executes
+# it.  This conversion is fine for normal path arguments, but when those
+# arguments are URIs, they sometimes aren't converted right (typically for
+# URIs without an authority component, 'cause the conversion mechanism doesn't
+# recognise them as URIs) or aren't converted at all (which gives perfectly
+# normal absolute paths from the MSYS viewpoint, but don't work for the
+# Windows run-time we're linked with).
+#
+# It's also possible to avoid conversion by defining MSYS2_ARG_CONV_EXCL with
+# some suitable pattern ("*" to avoid conversions entirely), but that will
+# again give us unconverted paths that don't work with the Windows run-time
+# we're linked with.
+#
+# Checking for both msys perl operating environment and that the target name
+# starts with "mingw", we're doing what we can to assure that other configs
+# that might link openssl.exe with the MSYS run-time are not disturbed.
+my $msys_mingw = ($^O eq 'msys') && (config('target') =~ m|^mingw|);
+
 my @noexist_files =
     ( "test/blahdiblah.pem",
       "test/blahdibleh.der" );
@@ -89,43 +115,71 @@ indir "store_$$" => sub {
 
         foreach (@noexist_files) {
             my $file = srctop_file($_);
-            ok(!run(app(["openssl", "storeutl", $file])));
-            ok(!run(app(["openssl", "storeutl", to_abs_file($file)])));
-            ok(!run(app(["openssl", "storeutl", to_abs_file_uri($file)])));
+        SKIP: {
+                ok(!run(app(["openssl", "storeutl", $file])));
+                ok(!run(app(["openssl", "storeutl", to_abs_file($file)])));
+
+                skip "No test of URI form of $file for mingw", 1 if $msys_mingw;
+
+                ok(!run(app(["openssl", "storeutl", to_abs_file_uri($file)])));
+            }
         }
         foreach (@src_files) {
             my $file = srctop_file($_);
-            ok(run(app(["openssl", "storeutl", $file])));
-            ok(run(app(["openssl", "storeutl", to_abs_file($file)])));
-            ok(run(app(["openssl", "storeutl", to_abs_file_uri($file)])));
-            ok(run(app(["openssl", "storeutl", to_abs_file_uri($file, 0,
-                                                               "")])));
-            ok(run(app(["openssl", "storeutl", to_abs_file_uri($file, 0,
-                                                               "localhost")])));
-            ok(!run(app(["openssl", "storeutl", to_abs_file_uri($file, 0,
-                                                                "dummy")])));
+        SKIP: {
+                ok(run(app(["openssl", "storeutl", $file])));
+                ok(run(app(["openssl", "storeutl", to_abs_file($file)])));
+
+                skip "No test of URI form of $file for mingw", 4 if $msys_mingw;
+
+                ok(run(app(["openssl", "storeutl", to_abs_file_uri($file)])));
+                ok(run(app(["openssl", "storeutl",
+                            to_abs_file_uri($file, 0, "")])));
+                ok(run(app(["openssl", "storeutl",
+                            to_abs_file_uri($file, 0, "localhost")])));
+                ok(!run(app(["openssl", "storeutl",
+                             to_abs_file_uri($file, 0, "dummy")])));
+            }
         }
         foreach (@generated_files) {
-            ok(run(app(["openssl", "storeutl", "-passin", "pass:password",
-                        $_])));
-            ok(run(app(["openssl", "storeutl", "-passin", "pass:password",
-                        to_abs_file($_)])));
-            ok(run(app(["openssl", "storeutl", "-passin", "pass:password",
-                        to_abs_file_uri($_)])));
-            ok(!run(app(["openssl", "storeutl", "-passin", "pass:password",
-                         to_file_uri($_)])));
+        SKIP: {
+                ok(run(app(["openssl", "storeutl", "-passin", "pass:password",
+                            $_])));
+                ok(run(app(["openssl", "storeutl", "-passin", "pass:password",
+                            to_abs_file($_)])));
+
+                skip "No test of URI form of $_ for mingw", 2 if $msys_mingw;
+
+                ok(run(app(["openssl", "storeutl", "-passin", "pass:password",
+                            to_abs_file_uri($_)])));
+                ok(!run(app(["openssl", "storeutl", "-passin", "pass:password",
+                             to_file_uri($_)])));
+            }
         }
         foreach (values %generated_file_files) {
-            ok(run(app(["openssl", "storeutl", $_])));
+        SKIP: {
+                skip "No test of $_ for mingw", 1 if $msys_mingw;
+
+                ok(run(app(["openssl", "storeutl", $_])));
+            }
         }
         foreach (@noexist_file_files) {
-            ok(!run(app(["openssl", "storeutl", $_])));
+        SKIP: {
+                skip "No test of $_ for mingw", 1 if $msys_mingw;
+
+                ok(!run(app(["openssl", "storeutl", $_])));
+            }
         }
         {
             my $dir = srctop_dir("test", "certs");
-            ok(run(app(["openssl", "storeutl", $dir])));
-            ok(run(app(["openssl", "storeutl", to_abs_file($dir, 1)])));
-            ok(run(app(["openssl", "storeutl", to_abs_file_uri($dir, 1)])));
+        SKIP: {
+                ok(run(app(["openssl", "storeutl", $dir])));
+                ok(run(app(["openssl", "storeutl", to_abs_file($dir, 1)])));
+
+                skip "No test of URI form of $dir for mingw", 1 if $msys_mingw;
+
+                ok(run(app(["openssl", "storeutl", to_abs_file_uri($dir, 1)])));
+            }
         }
     }
 }, create => 1, cleanup => 1;


More information about the openssl-commits mailing list