我有一个Ruby中的Web Craper,可以通过使用此信息来分析证书:
http = Net::HTTP.new(http_endpoint.host, http_endpoint.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
http.start do |h|
@cert = h.peer_cert
end
是否可以使用WebMock模拟此请求并在测试过程中给出假证书?
我看到这是一个旧问题,但这可能会有所帮助