aboutsummaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorchenjiankun <chenjiankun1@huawei.com>2016-11-30 08:22:54 +0000
committerchenjiankun <chenjiankun1@huawei.com>2016-11-30 08:22:54 +0000
commitbce19d39136c5e830e771ee449f22fca85fec259 (patch)
treef4e740584487d24e655ff3624a10875efd7cbc20 /api
parented89d5d7372b598a3b849f7753e8d29a39282d53 (diff)
Modify url mapping to make API more Restful
JIRA: YARDSTICK-435 Change-Id: Ief767ceca2979494ec0b4ea4d197fd399352b856 Signed-off-by: chenjiankun <chenjiankun1@huawei.com>
Diffstat (limited to 'api')
-rw-r--r--api/urls.py4
-rw-r--r--api/views.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/api/urls.py b/api/urls.py
index eaaf8b6d1..323e5cb9f 100644
--- a/api/urls.py
+++ b/api/urls.py
@@ -11,7 +11,7 @@ from api.utils.common import Url
urlpatterns = [
- Url('/yardstick/test/action', views.Test, 'test'),
- Url('/yardstick/result/action', views.Result, 'result'),
+ Url('/yardstick/testcases/release/action', views.Release, 'release'),
+ Url('/yardstick/results', views.Results, 'results'),
Url('/yardstick/env/action', views.Env, 'env')
]
diff --git a/api/views.py b/api/views.py
index 7357625e0..065de673b 100644
--- a/api/views.py
+++ b/api/views.py
@@ -19,7 +19,7 @@ from api.actions import env as env_action
logger = logging.getLogger(__name__)
-class Test(Resource):
+class Release(Resource):
def post(self):
action = common_utils.translate_to_str(request.json.get('action', ''))
args = common_utils.translate_to_str(request.json.get('args', {}))
@@ -31,7 +31,7 @@ class Test(Resource):
return common_utils.error_handler('Wrong action')
-class Result(Resource):
+class Results(Resource):
def get(self):
args = common_utils.translate_to_str(request.args)
action = args.get('action', '')