Skip to content

Commit b77ef14

Browse files
authored
Merge pull request #728 from junaruga/wip/test-asn1-remove-no-seconds-assertions
test_asn1.rb: Remove the assertions of the time string format without second.
2 parents 1e8e246 + 2e826d5 commit b77ef14

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

test/openssl/test_asn1.rb

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -406,10 +406,6 @@ def test_utctime
406406
rescue OpenSSL::ASN1::ASN1Error
407407
pend "No negative time_t support?"
408408
end
409-
# Seconds is omitted. LibreSSL 3.6.0 requires it
410-
return if libressl?
411-
decode_test B(%w{ 17 0B }) + "1609082343Z".b,
412-
OpenSSL::ASN1::UTCTime.new(Time.utc(2016, 9, 8, 23, 43, 0))
413409
# not implemented
414410
# decode_test B(%w{ 17 11 }) + "500908234339+0930".b,
415411
# OpenSSL::ASN1::UTCTime.new(Time.new(1950, 9, 8, 23, 43, 39, "+09:30"))
@@ -428,10 +424,6 @@ def test_generalizedtime
428424
OpenSSL::ASN1::GeneralizedTime.new(Time.utc(2016, 12, 8, 19, 34, 29))
429425
encode_decode_test B(%w{ 18 0F }) + "99990908234339Z".b,
430426
OpenSSL::ASN1::GeneralizedTime.new(Time.utc(9999, 9, 8, 23, 43, 39))
431-
# LibreSSL 3.6.0 requires the seconds element
432-
return if libressl?
433-
decode_test B(%w{ 18 0D }) + "201612081934Z".b,
434-
OpenSSL::ASN1::GeneralizedTime.new(Time.utc(2016, 12, 8, 19, 34, 0))
435427
# not implemented
436428
# decode_test B(%w{ 18 13 }) + "20161208193439+0930".b,
437429
# OpenSSL::ASN1::GeneralizedTime.new(Time.new(2016, 12, 8, 19, 34, 39, "+09:30"))

0 commit comments

Comments
 (0)