summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2020-02-17 08:28:33 +0000
committerKazuki Yamaguchi <k@rhe.jp>2020-02-17 08:55:15 +0000
commit890a6476fa2493227ec0517c6f8b444da9415e49 (patch)
tree3a5a9b107260eb87b970507936755de515375797 /test
parent060764d398a2b096fd50fe344ab7c26255656c61 (diff)
downloadruby-openssl-890a6476fa2493227ec0517c6f8b444da9415e49.tar.gz
ts: simplify OpenSSL::Timestamp::Request#algorithmky/ts-simplify-tsreq-get-algorithm
Stop the special treatment of invalid hashAlgorithm of the message imprint. Those invalid values can only appear after the object is instantiated, before the user sets an actual message digest algorithm. OpenSSL::Timestamp::TokenInfo#algorithm already does the same. Also, remove the test case "test_create_request" since it does not make much sense. Those fields are to be set by the user after creation of the object and checking the initial value is pointless. Fixes: https://github.com/ruby/openssl/issues/335
Diffstat (limited to 'test')
-rw-r--r--test/openssl/test_ts.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/openssl/test_ts.rb b/test/openssl/test_ts.rb
index c57f08cf..1fa4a7cf 100644
--- a/test/openssl/test_ts.rb
+++ b/test/openssl/test_ts.rb
@@ -67,16 +67,6 @@ _end_of_pem_
@ts_cert_ee ||= OpenSSL::Certs.ts_cert_ee(ee_key, intermediate_cert, intermediate_key)
end
- def test_create_request
- req = OpenSSL::Timestamp::Request.new
- assert_equal(true, req.cert_requested?)
- assert_equal(1, req.version)
- assert_nil(req.algorithm)
- assert_equal("", req.message_imprint)
- assert_nil(req.policy_id)
- assert_nil(req.nonce)
- end
-
def test_request_mandatory_fields
req = OpenSSL::Timestamp::Request.new
assert_raise(OpenSSL::Timestamp::TimestampError) do