summaryrefslogtreecommitdiffstats
path: root/newton/newton/requests/tests/test_hosts.py
blob: 13e6b1fc7c8f84bdc5a1aaa98b4b2a94c4705e5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Copyright (c) 2017 Intel Corporation, 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

from rest_framework import status

from newton.requests.tests.test_base import AbstractTestResource


class TestHostNewton(unittest.TestCase, AbstractTestResource):
    def setUp(self):
        AbstractTestResource.__init__(self)

        self.url += "hosts"

        self.MOCK_GET_RESOURCES_RESPONSE = {
            "hosts": [
            {"id": "uuid_1", "name": "host_1"},
            {"id": "uuid_2", "name": "host_2"}
            ]
        }

        self.MOCK_GET_RESOURCE_RESPONSE = {
            "host": [
                {"resource": {"id": "uuid_1", "name": "host_1"}}
            ]
        }

        self.MOCK_GET_RESOURCE_RESPONSE_NOT_FOUND = {}

        self.assert_keys = "hosts"
        self.assert_key = "host"

        self.HTTP_not_found = status.HTTP_500_INTERNAL_SERVER_ERROR

    # Overridden methods from test base to not make it run for current test case.
    def test_post_resource(self):
        pass

    def test_post_resource_existing(self):
        pass

    def test_post_resource_empty(self):
        pass

    def test_delete_resource(self):
        pass