File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 12
12
push :
13
13
branches :
14
14
- master
15
+ - testing
15
16
16
17
jobs :
17
18
test :
Original file line number Diff line number Diff line change
1
+ require 'resolv'
1
2
require_relative '../test_helper'
2
3
3
4
class TestBindIntegration < LDAPIntegrationTestCase
@@ -50,7 +51,7 @@ def test_bind_tls_with_cafile
50
51
def test_bind_tls_with_bad_hostname_no_verify_hostname_no_ca_passes
51
52
omit_unless TLS_OPTS . key? ( :verify_hostname )
52
53
53
- @ldap . host = '127.0.0.1'
54
+ @ldap . host = Resolv . getaddress ( INTEGRATION_HOSTNAME )
54
55
@ldap . encryption (
55
56
method : :start_tls ,
56
57
tls_options : { verify_mode : OpenSSL ::SSL ::VERIFY_PEER ,
@@ -64,7 +65,7 @@ def test_bind_tls_with_bad_hostname_no_verify_hostname_no_ca_passes
64
65
def test_bind_tls_with_bad_hostname_no_verify_hostname_no_ca_opt_merge_passes
65
66
omit_unless TLS_OPTS . key? ( :verify_hostname )
66
67
67
- @ldap . host = '127.0.0.1'
68
+ @ldap . host = Resolv . getaddress ( INTEGRATION_HOSTNAME )
68
69
@ldap . encryption (
69
70
method : :start_tls ,
70
71
tls_options : TLS_OPTS . merge ( verify_mode : OpenSSL ::SSL ::VERIFY_PEER ,
You can’t perform that action at this time.
0 commit comments