Skip to content

Commit

Permalink
Run SSL verify tests in pure ruby CI (eventmachine#1007)
Browse files Browse the repository at this point in the history
These all pass now.  I believe they were fixed by 0c0c715 in eventmachine#993.
  • Loading branch information
nevans authored Sep 16, 2024
1 parent 02ca4fe commit e732041
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/test_ssl_verify.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ def test_fail_no_peer_cert
end

def test_accept_server
omit_if(EM.library_type == :pure_ruby) # Server has a default cert chain
omit_if(rbx?)

server = { verify_peer: true, ssl_verify_result: true }
Expand All @@ -48,7 +47,6 @@ def test_accept_server
end

def test_accept_client
omit_if(EM.library_type == :pure_ruby) # Server has a default cert chain
omit_if(rbx?)

client = { verify_peer: true, ssl_verify_result: true }
Expand All @@ -61,7 +59,6 @@ def test_accept_client
end

def test_encoded_accept_server
omit_if(EM.library_type == :pure_ruby) # Server has a default cert chain
omit_if(rbx?)

server = { verify_peer: true, ssl_verify_result: true }
Expand All @@ -74,7 +71,6 @@ def test_encoded_accept_server
end

def test_encoded_accept_client
omit_if(EM.library_type == :pure_ruby) # Server has a default cert chain
omit_if(rbx?)

client = { verify_peer: true, ssl_verify_result: true }
Expand All @@ -87,7 +83,6 @@ def test_encoded_accept_client
end

def test_deny_server
omit_if(EM.library_type == :pure_ruby) # Server has a default cert chain
omit_if(rbx?)

server = { verify_peer: true, ssl_verify_result: false }
Expand All @@ -100,7 +95,6 @@ def test_deny_server
end

def test_deny_client
omit_if(EM.library_type == :pure_ruby) # Server has a default cert chain
omit_if(rbx?)

client = { verify_peer: true, ssl_verify_result: false }
Expand Down

0 comments on commit e732041

Please sign in to comment.