fuel-web/nailgun/nailgun/test/integration/test_spawning_vms.py

92 lines
2.9 KiB
Python

# -*- coding: utf-8 -*-
# Copyright 2015 Mirantis, 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 oslo_serialization import jsonutils
from nailgun import consts
from nailgun import objects
from nailgun.test.base import BaseIntegrationTest
from nailgun.test.base import fake_tasks
from nailgun.test.base import reverse
class TestSpawnVMs(BaseIntegrationTest):
@fake_tasks(recover_nodes=False)
def test_spawn_vms(self):
cluster = self.env.create(
nodes_kwargs=[
{"status": "ready", "pending_addition": True,
"roles": ["virt"]},
]
)
cluster.nodes[0].vms_conf = [{'id': 1, 'cluster_id': cluster.id}]
resp = self.app.put(
reverse(
'SpawnVmsHandler',
kwargs={'cluster_id': cluster.id}),
headers=self.default_headers
)
deploy_uuid = resp.json_body['uuid']
task_deploy = objects.Task.get_by_uuid(deploy_uuid)
self.assertEqual(task_deploy.name, consts.TASK_NAMES.spawn_vms)
self.assertEqual(task_deploy.status, consts.TASK_STATUSES.ready)
self.assertEqual(len(task_deploy.subtasks), 2)
def test_create_vms_conf(self):
cluster = self.env.create(
nodes_kwargs=[
{"status": "ready", "pending_addition": True,
"roles": ["virt"]},
]
)
vms_conf = {"vms_conf": [{'id': 1, 'cluster_id': cluster.id}]}
self.app.put(
reverse(
'NodeVMsHandler',
kwargs={'node_id': cluster.nodes[0].id}),
jsonutils.dumps(vms_conf),
headers=self.default_headers
)
spawning_nodes = self.app.get(
reverse(
'NodeVMsHandler',
kwargs={'node_id': cluster.nodes[0].id}),
headers=self.default_headers
)
self.assertEqual(spawning_nodes.json, vms_conf)
def test_spawn_vms_error(self):
cluster = self.env.create(
nodes_kwargs=[
{"pending_addition": True,
"roles": ["compute"]},
]
)
resp = self.app.put(
reverse(
'SpawnVmsHandler',
kwargs={'cluster_id': cluster.id}),
headers=self.default_headers,
expect_errors=True
)
self.assertEqual(resp.status_code, 400)