mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-22 08:59:39 +00:00
50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
import time
|
|
|
|
import pytest
|
|
|
|
from datahub.ingestion.run.pipeline import Pipeline
|
|
from tests.test_helpers import mce_helpers
|
|
from tests.test_helpers.docker_helpers import wait_for_port
|
|
|
|
|
|
@pytest.mark.slow
|
|
def test_ldap_ingest(docker_compose_runner, pytestconfig, tmp_path, mock_time):
|
|
test_resources_dir = pytestconfig.rootpath / "tests/integration/ldap"
|
|
|
|
with docker_compose_runner(
|
|
test_resources_dir / "docker-compose.yml", "ldap"
|
|
) as docker_services:
|
|
# The openldap container loads the sample data after exposing the port publicly. As such,
|
|
# we must wait a little bit extra to ensure that the sample data is loaded.
|
|
wait_for_port(docker_services, "openldap", 389)
|
|
time.sleep(5)
|
|
|
|
pipeline = Pipeline.create(
|
|
{
|
|
"run_id": "ldap-test",
|
|
"source": {
|
|
"type": "ldap",
|
|
"config": {
|
|
"ldap_server": "ldap://localhost",
|
|
"ldap_user": "cn=admin,dc=example,dc=org",
|
|
"ldap_password": "admin",
|
|
"base_dn": "dc=example,dc=org",
|
|
},
|
|
},
|
|
"sink": {
|
|
"type": "file",
|
|
"config": {
|
|
"filename": f"{tmp_path}/ldap_mces.json",
|
|
},
|
|
},
|
|
}
|
|
)
|
|
pipeline.run()
|
|
pipeline.raise_from_status()
|
|
|
|
output = mce_helpers.load_json_file(str(tmp_path / "ldap_mces.json"))
|
|
golden = mce_helpers.load_json_file(
|
|
str(test_resources_dir / "ldap_mce_golden.json")
|
|
)
|
|
mce_helpers.assert_mces_equal(output, golden)
|