Remove sample folder in code 91/26291/2
authorEthan Lynn <ethanlynnl@vmware.com>
Thu, 14 Dec 2017 03:30:12 +0000 (11:30 +0800)
committerEthan Lynn <ethanlynnl@vmware.com>
Thu, 14 Dec 2017 03:33:29 +0000 (11:33 +0800)
This folder is not necessary.

Change-Id: Ie20d10b8682fbde595e07afa2ff166d0423d80f0
Issue-ID: MULTICLOUD-133
Signed-off-by: Ethan Lynn <ethanlynnl@vmware.com>
multivimbroker/multivimbroker/samples/__init__.py [deleted file]
multivimbroker/multivimbroker/samples/tests.py [deleted file]
multivimbroker/multivimbroker/samples/urls.py [deleted file]
multivimbroker/multivimbroker/samples/views.py [deleted file]
multivimbroker/multivimbroker/urls.py

diff --git a/multivimbroker/multivimbroker/samples/__init__.py b/multivimbroker/multivimbroker/samples/__init__.py
deleted file mode 100644 (file)
index 802f3fb..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-# Copyright (c) 2017 Wind River Systems, Inc.
-#
-# 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.
diff --git a/multivimbroker/multivimbroker/samples/tests.py b/multivimbroker/multivimbroker/samples/tests.py
deleted file mode 100644 (file)
index 25850c9..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright (c) 2017 Wind River Systems, Inc.
-#
-# 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.
-
-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/multivimbroker/multivimbroker/samples/urls.py b/multivimbroker/multivimbroker/samples/urls.py
deleted file mode 100644 (file)
index 71ffa88..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright (c) 2017 Wind River Systems, Inc.
-#
-# 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.
-
-from django.conf.urls import url
-from multivimbroker.samples import views
-
-urlpatterns = [
-    url(r'^samples/$', views.SampleList.as_view()), ]
diff --git a/multivimbroker/multivimbroker/samples/views.py b/multivimbroker/multivimbroker/samples/views.py
deleted file mode 100644 (file)
index e51044a..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright (c) 2017 Wind River Systems, Inc.
-#
-# 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.
-
-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"})
index 7619e5a..de2ef49 100644 (file)
@@ -17,7 +17,6 @@ from multivimbroker.pub.config import config
 
 urlpatterns = [
     url(r'^', include('multivimbroker.swagger.urls')),
-    url(r'^', include('multivimbroker.samples.urls')),
     url(r'^', include('multivimbroker.forwarder.urls')),
 ]