[前][次][番号順一覧][スレッド一覧]

ruby-changes:63063

From: Yusuke <ko1@a...>
Date: Thu, 24 Sep 2020 19:35:22 +0900 (JST)
Subject: [ruby-changes:63063] 1917afa34b (master): test/net/http/test_https.rb: the order of verify_callback seems to vary

https://git.ruby-lang.org/ruby.git/commit/?id=1917afa34b

From 1917afa34bca55ba1ea578234132b7e4479ea3c9 Mon Sep 17 00:00:00 2001
From: Yusuke Endoh <mame@r...>
Date: Thu, 24 Sep 2020 19:34:16 +0900
Subject: test/net/http/test_https.rb: the order of verify_callback seems to
 vary

... depending upon the environment.

diff --git a/test/net/http/test_https.rb b/test/net/http/test_https.rb
index deeb12d..1b8841a 100644
--- a/test/net/http/test_https.rb
+++ b/test/net/http/test_https.rb
@@ -45,8 +45,8 @@ class TestNetHTTPS < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/net/http/test_https.rb#L45
       assert_equal($test_net_http_data, res.body)
     }
     # TODO: OpenSSL 1.1.1h seems to yield only SERVER_CERT; need to check the incompatibility
-    certs.zip([SERVER_CERT, CA_CERT]) do |actual, expected|
-      assert_equal(expected.to_der, actual.to_der)
+    certs.each do |cert|
+      assert_include([SERVER_CERT.to_der, CA_CERT.to_der], cert.to_der)
     end
   rescue SystemCallError
     skip $!
@@ -66,8 +66,8 @@ class TestNetHTTPS < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/net/http/test_https.rb#L66
       assert_equal($test_net_http_data, res.body)
     }
     # TODO: OpenSSL 1.1.1h seems to yield only SERVER_CERT; need to check the incompatibility
-    certs.zip([SERVER_CERT, CA_CERT]) do |actual, expected|
-      assert_equal(expected.to_der, actual.to_der)
+    certs.each do |cert|
+      assert_include([SERVER_CERT.to_der, CA_CERT.to_der], cert.to_der)
     end
   end
 
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]