diff options
Diffstat (limited to 'vio/samples')
-rw-r--r-- | vio/samples/__init__.py | 13 | ||||
-rw-r--r-- | vio/samples/__init__.pyc | bin | 123 -> 0 bytes | |||
-rw-r--r-- | vio/samples/tests.py | 32 | ||||
-rw-r--r-- | vio/samples/urls.py | 19 | ||||
-rw-r--r-- | vio/samples/urls.pyc | bin | 320 -> 0 bytes | |||
-rw-r--r-- | vio/samples/views.py | 29 | ||||
-rw-r--r-- | vio/samples/views.pyc | bin | 806 -> 0 bytes |
7 files changed, 0 insertions, 93 deletions
diff --git a/vio/samples/__init__.py b/vio/samples/__init__.py deleted file mode 100644 index 54147e8..0000000 --- a/vio/samples/__init__.py +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright 2017 VMware Corporation. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. diff --git a/vio/samples/__init__.pyc b/vio/samples/__init__.pyc Binary files differdeleted file mode 100644 index 7329b4c..0000000 --- a/vio/samples/__init__.pyc +++ /dev/null diff --git a/vio/samples/tests.py b/vio/samples/tests.py deleted file mode 100644 index 79301f1..0000000 --- a/vio/samples/tests.py +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 2016 ZTE Corporation. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import unittest -import json -from django.test import Client -from rest_framework import status - - -class SampleViewTest(unittest.TestCase): - def setUp(self): - self.client = Client() - - def tearDown(self): - pass - - def test_sample(self): - response = self.client.get("/samples/") - self.assertEqual(status.HTTP_200_OK, response.status_code, response.content) - resp_data = json.loads(response.content) - self.assertEqual({"status": "active"}, resp_data) diff --git a/vio/samples/urls.py b/vio/samples/urls.py deleted file mode 100644 index 92ad162..0000000 --- a/vio/samples/urls.py +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2016 ZTE Corporation. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from django.conf.urls import url -from vio.samples import views - -urlpatterns = [ - url(r'^samples/$', views.SampleList.as_view()), ] diff --git a/vio/samples/urls.pyc b/vio/samples/urls.pyc Binary files differdeleted file mode 100644 index 931994b..0000000 --- a/vio/samples/urls.pyc +++ /dev/null diff --git a/vio/samples/views.py b/vio/samples/views.py deleted file mode 100644 index f70090f..0000000 --- a/vio/samples/views.py +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 2016 ZTE Corporation. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import logging - -from rest_framework.views import APIView -from rest_framework.response import Response - -logger = logging.getLogger(__name__) - - -class SampleList(APIView): - """ - List all samples. - """ - def get(self, request, format=None): - logger.debug("get") - return Response({"status": "active"}) diff --git a/vio/samples/views.pyc b/vio/samples/views.pyc Binary files differdeleted file mode 100644 index 0dd719e..0000000 --- a/vio/samples/views.pyc +++ /dev/null |