1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
# Add 'lib' to load path.
require 'test/unit'
require 'net/ldap'
require 'flexmock/test_unit'
# Whether integration tests should be run.
INTEGRATION = ENV.fetch("INTEGRATION", "skip") != "skip"
# The CA file to verify certs against for tests.
# Override with CA_FILE env variable; otherwise checks for the VM-specific path
# and falls back to the test/fixtures/cacert.pem for local testing.
CA_FILE =
ENV.fetch("CA_FILE") do
if File.exist?("/etc/ssl/certs/cacert.pem")
"/etc/ssl/certs/cacert.pem"
else
File.expand_path("fixtures/ca/docker-ca.pem", File.dirname(__FILE__))
end
end
BIND_CREDS = {
method: :simple,
username: "cn=admin,dc=example,dc=org",
password: "admin",
}.freeze
TLS_OPTS = OpenSSL::SSL::SSLContext::DEFAULT_PARAMS.merge({}).freeze
if RUBY_VERSION < "2.0"
class String
def b
self
end
end
end
class MockInstrumentationService
def initialize
@events = {}
end
def instrument(event, payload)
result = yield(payload)
@events[event] ||= []
@events[event] << [payload, result]
result
end
def subscribe(event)
@events[event] ||= []
@events[event]
end
end
class LDAPIntegrationTestCase < Test::Unit::TestCase
# If integration tests aren't enabled, noop these tests.
if !INTEGRATION
def run(*)
self
end
end
def setup
@service = MockInstrumentationService.new
@ldap = Net::LDAP.new \
host: ENV.fetch('INTEGRATION_HOST', 'localhost'),
port: ENV.fetch('INTEGRATION_PORT', 389),
search_domains: %w(dc=example,dc=org),
uid: 'uid',
instrumentation_service: @service
@ldap.authenticate "cn=admin,dc=example,dc=org", "admin"
end
end
|