Updated test_app.py

pull/58/head
Sheng 2018-11-16 11:42:25 +08:00
parent d6d5f74f2a
commit 699b37d7a1
1 changed files with 2 additions and 2 deletions

View File

@ -122,13 +122,13 @@ class TestAppBasic(AsyncHTTPTestCase):
self.assert_response(b'Invalid port', response)
def test_app_with_wrong_hostname_ip(self):
body = 'hostname=127.0.0.1&port=7000&username=admin&_xsrf=yummy'
body = 'hostname=127.0.0.2&port=2200&username=admin&_xsrf=yummy'
response = self.sync_post(body)
self.assertEqual(response.code, 200)
self.assertIn(b'Unable to connect to', response.body)
def test_app_with_wrong_hostname_domain(self):
body = 'hostname=xxxxxxxxxxxx&port=7000&username=admin&_xsrf=yummy'
body = 'hostname=xxxxxxxxxxxx&port=2200&username=admin&_xsrf=yummy'
response = self.sync_post(body)
self.assertEqual(response.code, 200)
self.assertIn(b'Unable to connect to', response.body)