aboutsummaryrefslogtreecommitdiffstats
path: root/src/workflow/tests/test_steps.py
blob: cb676c71ae226c08c9add6ac176e20629ace251a (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
##############################################################################
# Copyright (c) 2018 Parker Berberian, Sawyer Bergeron, and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

from django.test import TestCase
from dashboard.populate_db import Populator
from workflow.tests import constants
from workflow.workflow_factory import WorkflowFactory
from workflow.models import Repository
from workflow.resource_bundle_workflow import Define_Hardware, Define_Nets, Resource_Meta_Info
from workflow.sw_bundle_workflow import SWConf_Resource_Select, Define_Software, Config_Software
from workflow.booking_workflow import Booking_Resource_Select, SWConfig_Select, Booking_Meta
from django.http import QueryDict, HttpRequest
from django.contrib.auth.models import User
from resource_inventory.models import (
    Scenario,
    Installer,
    OPNFVRole,
    Image,
    GenericResourceBundle,
    ConfigBundle
)


class BaseStepTestCase(TestCase):

    @classmethod
    def setUpTestData(cls):
        Populator().populate()

    def makeRepo(self):
        repo = Repository()
        repo.el[repo.SESSION_USER] = User.objects.filter(username="user 1").first()
        return repo

    def step_test(self, step_type, data):
        step = WorkflowFactory().make_step(step_type, self.makeRepo())
        formData = QueryDict(mutable=True)
        formData.update(data)
        request = HttpRequest()
        request.POST = formData
        response = step.post_render(request)
        context = step.get_context()
        return response, context


class BookingResourceSelectTestCase(BaseStepTestCase):

    def test_step_with_good_data(self):
        grb_model = GenericResourceBundle.objects.filter(owner__username="user 1").first()
        grb = [{"small_name": grb_model.name, "expanded_name": "user 1", "id": grb_model.id, "string": ""}]
        grb = str(grb).replace("'", '"')
        data = {"generic_resource_bundle": grb}
        response, context = self.step_test(Booking_Resource_Select, data)
        self.assertTrue(True)

    def test_step_with_bad_data(self):  # TODO
        data = {}
        response, context = self.step_test(Booking_Resource_Select, data)

    def test_step_with_empty_data(self):
        data = {}
        response, context = self.step_test(SWConfig_Select, data)


class SoftwareConfigSelectTestCase(BaseStepTestCase):

    def test_step_with_good_data(self):
        config_model = ConfigBundle.objects.filter(owner__username="user 1").first()
        config = [{"expanded_name": "user 1", "small_name": config_model.name, "id": config_model.id, "string": ""}]
        config = str(config).replace("'", '"')
        data = {"software_bundle": config}
        response, context = self.step_test(SWConfig_Select, data)

    def test_step_with_bad_data(self):  # TODO
        data = {}
        response, context = self.step_test(SWConfig_Select, data)

    def test_step_with_empty_data(self):
        data = {}
        response, context = self.step_test(SWConfig_Select, data)


class BookingMetaTestCase(BaseStepTestCase):

    def test_step_with_good_data(self):
        data = {"length": 7, "project": "LaaS", "purpose": "testing"}
        user2 = User.objects.get(username="user 2")
        john = User.objects.get(username="johnsmith")
        users = [
            {"expanded_name": "", "id": user2.id, "small_name": user2.username, "string": user2.email},
            {"expanded_name": "", "id": john.id, "small_name": john.username, "string": john.email}
        ]
        users = str(users).replace("'", '"')
        data['users'] = users
        response, context = self.step_test(Booking_Meta, data)

    def test_step_with_bad_data(self):  # TODO
        data = {}
        response, context = self.step_test(Booking_Meta, data)

    def test_step_with_empty_data(self):
        data = {}
        response, context = self.step_test(Booking_Meta, data)


class DefineHardwareTestCase(BaseStepTestCase):

    def test_step_with_good_data(self):
        hosts = {"host_4": 1, "host_1": 1}
        labs = {"lab_1": "true"}
        data = {"hosts": hosts, "labs": labs}
        response, context = self.step_test(Define_Hardware, data)

    def test_step_with_bad_data(self):  # TODO
        data = {}
        response, context = self.step_test(Define_Hardware, data)

    def test_step_with_empty_data(self):
        data = {}
        response, context = self.step_test(Define_Hardware, data)


class DefineNetsTestCase(BaseStepTestCase):

    def test_step_with_good_data(self):
        xml = constants.POD_XML
        data = {"xml": xml}
        response, context = self.step_test(Define_Nets, data)

    def test_step_with_bad_data(self):  # TODO
        data = {}
        response, context = self.step_test(Define_Nets, data)

    def test_step_with_empty_data(self):
        data = {}
        response, context = self.step_test(Define_Nets, data)


class ResourceMetaInfoTestCase(BaseStepTestCase):

    def test_step_with_good_data(self):
        data = {"bundle_description": "description", "bundle_name": "my testing bundle"}
        response, context = self.step_test(Resource_Meta_Info, data)

    def test_step_with_bad_data(self):  # TODO
        data = {}
        response, context = self.step_test(Resource_Meta_Info, data)

    def test_step_with_empty_data(self):
        data = {}
        response, context = self.step_test(Resource_Meta_Info, data)


class SWConfResourceSelectTestCase(BaseStepTestCase):

    def test_step_with_good_data(self):
        grb_model = GenericResourceBundle.objects.filter(owner__username="user 1").first()
        grb = [{"small_name": grb_model.name, "expanded_name": "user 1", "id": grb_model.id, "string": ""}]
        grb = str(grb).replace("'", '"')
        data = {"generic_resource_bundle": grb}
        response, context = self.step_test(SWConf_Resource_Select, data)

    def test_step_with_bad_data(self):  # TODO
        data = {}
        response, context = self.step_test(SWConf_Resource_Select, data)

    def test_step_with_empty_data(self):
        data = {}
        response, context = self.step_test(SWConf_Resource_Select, data)


class DefineSoftwareTestCase(BaseStepTestCase):

    def makeRepo(self):
        """
        put selected grb in repo for step
        """
        repo = super(DefineSoftwareTestCase, self).makeRepo()
        grb = GenericResourceBundle.objects.filter(owner__username="user 1").first()
        repo.el[repo.SWCONF_SELECTED_GRB] = grb
        return repo

    def test_step_with_good_data(self):
        data = {"form-INITIAL_FORMS": 3, "form-MAX_NUM_FORMS": 1000}
        data["form-MIN_NUM_FORMS"] = 0
        data["form-TOTAL_FORMS"] = 3
        an_image_id = Image.objects.get(name="a host image").id
        another_image_id = Image.objects.get(name="another host image").id
        control = OPNFVRole.objects.get(name="Controller")
        compute = OPNFVRole.objects.get(name="Compute")
        jumphost = OPNFVRole.objects.get(name="Jumphost")
        data['form-0-image'] = an_image_id
        data['form-1-image'] = an_image_id
        data['form-2-image'] = another_image_id
        data['form-0-role'] = compute.id
        data['form-1-role'] = control.id
        data['form-2-role'] = jumphost.id
        response, context = self.step_test(Define_Software, data)

    def test_step_with_bad_data(self):  # TODO
        data = {"form-INITIAL_FORMS": 0, "form-MAX_NUM_FORMS": 1000}
        data["form-MIN_NUM_FORMS"] = 0
        data["form-TOTAL_FORMS"] = 0
        response, context = self.step_test(Define_Software, data)

    def test_step_with_empty_data(self):
        data = {"form-INITIAL_FORMS": 0, "form-MAX_NUM_FORMS": 1000}
        data["form-MIN_NUM_FORMS"] = 0
        data["form-TOTAL_FORMS"] = 0
        response, context = self.step_test(Define_Software, data)


class ConfigSoftwareTestCase(BaseStepTestCase):

    def test_step_with_good_data(self):
        data = {"description": "description", "name": "namey"}
        installer = Installer.objects.get(name="Fuel")
        scenario = Scenario.objects.get(name="os-nosdn-nofeature-noha")
        data['installer'] = installer.id
        data['scenario'] = scenario.id
        response, context = self.step_test(Config_Software, data)

    def test_step_with_bad_data(self):  # TODO
        data = {}
        response, context = self.step_test(Config_Software, data)

    def test_step_with_empty_data(self):
        data = {}
        response, context = self.step_test(Config_Software, data)