Remove test_can_log_into_created_server
The nova v3 version of test_create_server still has the
test_can_log_into_created_server, and referencing to not existing
method.
Does not makes sense just testing the login alone, if we have lot of test
for testing many other ssh dependent things.
A basic remote command execution cost is close to just trying
to authenticate.
Change-Id: I0d53727934249f83cc562ab8e372aaffb4b1ac65
Implements: blueprint ssh-auth-strategy
diff --git a/tempest/api/compute/v3/servers/test_create_server.py b/tempest/api/compute/v3/servers/test_create_server.py
index a212ca5..2c15784 100644
--- a/tempest/api/compute/v3/servers/test_create_server.py
+++ b/tempest/api/compute/v3/servers/test_create_server.py
@@ -92,14 +92,6 @@
@testtools.skipIf(not run_ssh, 'Instance validation tests are disabled.')
@test.attr(type='gate')
- def test_can_log_into_created_server(self):
- # Check that the user can authenticate with the generated password
- linux_client = remote_client.RemoteClient(self.server,
- self.ssh_user, self.password)
- self.assertTrue(linux_client.can_authenticate())
-
- @testtools.skipIf(not run_ssh, 'Instance validation tests are disabled.')
- @test.attr(type='gate')
def test_verify_created_server_vcpus(self):
# Verify that the number of vcpus reported by the instance matches
# the amount stated by the flavor