Commit bd803328 by Sheng

Changed error message

parent e85ae169
...@@ -64,11 +64,11 @@ class TestApp(AsyncHTTPTestCase): ...@@ -64,11 +64,11 @@ class TestApp(AsyncHTTPTestCase):
self.assertEqual(response.code, 200) self.assertEqual(response.code, 200)
body = 'hostname=&port=&username=&password' body = 'hostname=&port=&username=&password'
response = self.fetch('/', method="POST", body=body) response = self.fetch('/', method="POST", body=body)
self.assertIn(b'"status": "Empty hostname"', response.body) self.assertIn(b'"status": "The hostname field is required"', response.body) # noqa
body = 'hostname=127.0.0.1&port=&username=&password' body = 'hostname=127.0.0.1&port=&username=&password'
response = self.fetch('/', method="POST", body=body) response = self.fetch('/', method="POST", body=body)
self.assertIn(b'"status": "Empty port"', response.body) self.assertIn(b'"status": "The port field is required"', response.body)
body = 'hostname=127.0.0.1&port=port&username=&password' body = 'hostname=127.0.0.1&port=port&username=&password'
response = self.fetch('/', method="POST", body=body) response = self.fetch('/', method="POST", body=body)
...@@ -80,7 +80,7 @@ class TestApp(AsyncHTTPTestCase): ...@@ -80,7 +80,7 @@ class TestApp(AsyncHTTPTestCase):
body = 'hostname=127.0.0.1&port=7000&username=&password' body = 'hostname=127.0.0.1&port=7000&username=&password'
response = self.fetch('/', method="POST", body=body) response = self.fetch('/', method="POST", body=body)
self.assertIn(b'"status": "Empty username"', response.body) self.assertIn(b'"status": "The username field is required"', response.body) # noqa
def test_app_with_wrong_credentials(self): def test_app_with_wrong_credentials(self):
response = self.fetch('/') response = self.fetch('/')
......
...@@ -113,7 +113,7 @@ class IndexHandler(MixinHandler, tornado.web.RequestHandler): ...@@ -113,7 +113,7 @@ class IndexHandler(MixinHandler, tornado.web.RequestHandler):
def get_value(self, name): def get_value(self, name):
value = self.get_argument(name) value = self.get_argument(name)
if not value: if not value:
raise ValueError('Empty {}'.format(name)) raise ValueError('The {} field is required'.format(name))
return value return value
def get_args(self): def get_args(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment