(self)
| 970 | self.assertEqual(self.client.voidresp(), "226 transfer complete") |
| 971 | |
| 972 | def test_login(self): |
| 973 | # login() is supposed to implicitly secure the control connection |
| 974 | self.assertNotIsInstance(self.client.sock, ssl.SSLSocket) |
| 975 | self.client.login() |
| 976 | self.assertIsInstance(self.client.sock, ssl.SSLSocket) |
| 977 | # make sure that AUTH TLS doesn't get issued again |
| 978 | self.client.login() |
| 979 | |
| 980 | def test_auth_issued_twice(self): |
| 981 | self.client.auth() |
nothing calls this directly
no test coverage detected