summaryrefslogtreecommitdiffstats
path: root/pike/pike/samples
diff options
context:
space:
mode:
authorHuang Haibin <haibin.huang@intel.com>2018-07-10 19:22:34 +0800
committerHuang Haibin <haibin.huang@intel.com>2018-07-25 15:39:11 +0800
commit0d3e9ace323660381350a884b08ed92aa2290dbd (patch)
treef5893c82318261da9527714956870cafad85b263 /pike/pike/samples
parent1ef4d132b8e9bd99ac88fe4bd1a023c97ca58ad9 (diff)
Add Openstack Pike plugin framework
Add Pike framework and one function extension Add Vagrant for test Change-Id: I045ac1f1a920b509a69d7a72f8e60fb108102839 Issue-ID: MULTICLOUD-276 Signed-off-by: Huang Haibin <haibin.huang@intel.com>
Diffstat (limited to 'pike/pike/samples')
-rw-r--r--pike/pike/samples/__init__.py14
-rw-r--r--pike/pike/samples/tests.py32
-rw-r--r--pike/pike/samples/urls.py19
-rw-r--r--pike/pike/samples/views.py29
4 files changed, 94 insertions, 0 deletions
diff --git a/pike/pike/samples/__init__.py b/pike/pike/samples/__init__.py
new file mode 100644
index 00000000..afa702d3
--- /dev/null
+++ b/pike/pike/samples/__init__.py
@@ -0,0 +1,14 @@
+# Copyright (c) 2017-2018 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.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
diff --git a/pike/pike/samples/tests.py b/pike/pike/samples/tests.py
new file mode 100644
index 00000000..b294a52b
--- /dev/null
+++ b/pike/pike/samples/tests.py
@@ -0,0 +1,32 @@
+# Copyright (c) 2017-2018 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.
+# 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 = response.json()
+ self.assertEqual({"status": "active"}, resp_data)
diff --git a/pike/pike/samples/urls.py b/pike/pike/samples/urls.py
new file mode 100644
index 00000000..94bd5669
--- /dev/null
+++ b/pike/pike/samples/urls.py
@@ -0,0 +1,19 @@
+# Copyright (c) 2017-2018 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.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from django.conf.urls import url
+from pike.samples import views
+
+urlpatterns = [
+ url(r'^samples/$', views.SampleList.as_view()), ]
diff --git a/pike/pike/samples/views.py b/pike/pike/samples/views.py
new file mode 100644
index 00000000..58d1d80b
--- /dev/null
+++ b/pike/pike/samples/views.py
@@ -0,0 +1,29 @@
+# Copyright (c) 2017-2018 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.
+# 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"})