Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test to test ssh key for node IP address #1465

Merged
merged 1 commit into from
Nov 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 18 additions & 5 deletions tests/integration-tests/tests/scaling/test_mpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def test_mpi(scheduler, region, os, instance, pcluster_config_reader, clusters_f
)


@pytest.mark.regions(["eu-west-1"])
@pytest.mark.regions(["us-east-2"])
@pytest.mark.instances(["c5.xlarge"])
@pytest.mark.schedulers(["slurm", "sge", "torque"])
@pytest.mark.usefixtures("region", "instance")
Expand All @@ -79,12 +79,25 @@ def _test_mpi_ssh(remote_command_executor, scheduler, os, test_datadir):
compute_node = scheduler_commands.get_compute_nodes()
assert_that(len(compute_node)).is_equal_to(1)
remote_host = compute_node[0]

# Gets remote host ip from hostname
remote_host_ip = remote_command_executor.run_remote_command(
"getent hosts {0} | cut -d' ' -f1".format(remote_host)
).stdout

# Below job will timeout if the IP address is not in known_hosts
mpirun_out_ip = remote_command_executor.run_remote_script(
str(test_datadir / "mpi_ssh.sh"), args=[mpi_module, remote_host_ip]
).stdout.splitlines()

# mpirun_out_ip = "ip-10-0-127-71"
assert_that(len(mpirun_out_ip)).is_equal_to(1)
assert_that(mpirun_out_ip[-1]).is_equal_to(remote_host)

mpirun_out = remote_command_executor.run_remote_script(
str(test_datadir / "mpi_ssh.sh"), args=[mpi_module, remote_host]
).stdout.splitlines()

# mpirun_out =
# "Warning: Permanently added the RSA host key for IP address '10.0.127.71' to the list of known hosts.\n
# ip-10-0-127-71"
assert_that(len(mpirun_out)).is_greater_than_or_equal_to(1)
# mpirun_out = "ip-10-0-127-71"
assert_that(len(mpirun_out)).is_equal_to(1)
assert_that(mpirun_out[-1]).is_equal_to(remote_host)