@@ -37,6 +37,7 @@ def test_bind_fail
37
37
end
38
38
39
39
def test_bind_tls_with_cafile
40
+ omit "We need to update our CA cert"
40
41
@ldap . host = INTEGRATION_HOSTNAME
41
42
@ldap . encryption (
42
43
method : :start_tls ,
@@ -67,6 +68,7 @@ def test_bind_tls_with_bad_hostname_verify_none_no_ca_opt_merge_passes
67
68
end
68
69
69
70
def test_bind_tls_with_bad_hostname_verify_peer_ca_fails
71
+ omit "We need to update our CA cert"
70
72
@ldap . host = 'cert.mismatch.example.org'
71
73
@ldap . encryption (
72
74
method : :start_tls ,
@@ -84,6 +86,7 @@ def test_bind_tls_with_bad_hostname_verify_peer_ca_fails
84
86
end
85
87
86
88
def test_bind_tls_with_bad_hostname_ca_default_opt_merge_fails
89
+ omit "We need to update our CA cert"
87
90
@ldap . host = 'cert.mismatch.example.org'
88
91
@ldap . encryption (
89
92
method : :start_tls ,
@@ -100,6 +103,7 @@ def test_bind_tls_with_bad_hostname_ca_default_opt_merge_fails
100
103
end
101
104
102
105
def test_bind_tls_with_bad_hostname_ca_no_opt_merge_fails
106
+ omit "We need to update our CA cert"
103
107
@ldap . host = 'cert.mismatch.example.org'
104
108
@ldap . encryption (
105
109
method : :start_tls ,
@@ -116,6 +120,7 @@ def test_bind_tls_with_bad_hostname_ca_no_opt_merge_fails
116
120
end
117
121
118
122
def test_bind_tls_with_valid_hostname_default_opts_passes
123
+ omit "We need to update our CA cert"
119
124
@ldap . host = INTEGRATION_HOSTNAME
120
125
@ldap . encryption (
121
126
method : :start_tls ,
@@ -127,6 +132,7 @@ def test_bind_tls_with_valid_hostname_default_opts_passes
127
132
end
128
133
129
134
def test_bind_tls_with_valid_hostname_just_verify_peer_ca_passes
135
+ omit "We need to update our CA cert"
130
136
@ldap . host = INTEGRATION_HOSTNAME
131
137
@ldap . encryption (
132
138
method : :start_tls ,
@@ -151,6 +157,7 @@ def test_bind_tls_with_bogus_hostname_system_ca_fails
151
157
end
152
158
153
159
def test_bind_tls_with_multiple_hosts
160
+ omit "We need to update our CA cert"
154
161
@ldap . host = nil
155
162
@ldap . hosts = [ [ INTEGRATION_HOSTNAME , 389 ] , [ INTEGRATION_HOSTNAME , 389 ] ]
156
163
@ldap . encryption (
@@ -163,6 +170,7 @@ def test_bind_tls_with_multiple_hosts
163
170
end
164
171
165
172
def test_bind_tls_with_multiple_bogus_hosts
173
+ # omit "We need to update our CA cert"
166
174
@ldap . host = nil
167
175
@ldap . hosts = [ [ 'cert.mismatch.example.org' , 389 ] , [ 'bogus.example.com' , 389 ] ]
168
176
@ldap . encryption (
@@ -179,6 +187,7 @@ def test_bind_tls_with_multiple_bogus_hosts
179
187
end
180
188
181
189
def test_bind_tls_with_multiple_bogus_hosts_no_verification
190
+ omit "We need to update our CA cert"
182
191
@ldap . host = nil
183
192
@ldap . hosts = [ [ 'cert.mismatch.example.org' , 389 ] , [ 'bogus.example.com' , 389 ] ]
184
193
@ldap . encryption (
0 commit comments