# Copyright (c) 2014 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 saharaclient.api import clusters as cl from saharaclient.tests.unit import base from oslo_serialization import jsonutils as json class ClusterTest(base.BaseTestCase): body = { 'name': 'name', 'plugin_name': 'fake', 'hadoop_version': '0.1', 'cluster_template_id': 'id', } body_with_count = { 'name': 'name', 'plugin_name': 'fake', 'hadoop_version': '0.1', 'cluster_template_id': 'id', 'count': 2 } body_with_progress = { 'name': 'name', 'plugin_name': 'fake', 'hadoop_version': '0.1', 'cluster_template_id': 'id', "provision_progress": [] } test_shares = [ { "id": "bd71d2d5-60a0-4ed9-a3d2-ad312c368880", "path": "/mnt/manila", "access_level": "rw" } ] def test_create_cluster_with_template(self,): url = self.URL + '/clusters' self.responses.post(url, status_code=202, json={'cluster': self.body}) resp = self.client.clusters.create(**self.body) self.assertEqual(url, self.responses.last_request.url) self.assertEqual(self.body, json.loads(self.responses.last_request.body)) self.assertIsInstance(resp, cl.Cluster) self.assertFields(self.body, resp) def test_create_cluster_without_template(self): body = self.body.copy() del body['cluster_template_id'] body.update({'default_image_id': 'image_id', 'cluster_configs': {}, 'node_groups': ['ng1', 'ng2']}) url = self.URL + '/clusters' self.responses.post(url, status_code=202, json={'cluster': body}) resp = self.client.clusters.create(**body) self.assertEqual(url, self.responses.last_request.url) self.assertEqual(body, json.loads(self.responses.last_request.body)) self.assertIsInstance(resp, cl.Cluster) self.assertFields(body, resp) def test_create_multiple_clusters(self): url = self.URL + '/clusters/multiple' self.responses.post(url, status_code=202, json={'clusters': ['id1', 'id2']}) resp = self.client.clusters.create(**self.body_with_count) self.assertEqual(url, self.responses.last_request.url) self.assertEqual(self.body_with_count, json.loads(self.responses.last_request.body)) self.assertIsInstance(resp, cl.Cluster) self.assertFields({'clusters': ['id1', 'id2']}, resp) def test_clusters_list(self): url = self.URL + '/clusters' self.responses.get(url, json={'clusters': [self.body]}) resp = self.client.clusters.list() self.assertEqual(url, self.responses.last_request.url) self.assertIsInstance(resp[0], cl.Cluster) self.assertFields(self.body, resp[0]) def test_clusters_get(self): url = self.URL + '/clusters/id?show_progress=False' self.responses.get(url, json={'cluster': self.body}) resp = self.client.clusters.get('id') self.assertEqual(url, self.responses.last_request.url) self.assertIsInstance(resp, cl.Cluster) self.assertFields(self.body, resp) def test_clusters_get_with_progress(self): url = self.URL + '/clusters/id?show_progress=True' self.responses.get(url, json={'cluster': self.body_with_progress}) resp = self.client.clusters.get('id', show_progress=True) self.assertEqual(url, self.responses.last_request.url) self.assertIsInstance(resp, cl.Cluster) self.assertFields(self.body, resp) def test_clusters_scale(self): url = self.URL + '/clusters/id' self.responses.put(url, status_code=202, json=self.body) scale_body = { 'resize_node_groups': [ { 'count': 2, 'name': 'name1' }, ], 'add_node_groups': [ { 'count': 1, 'name': 'name2', 'node_group_template_id': 'id' } ] } resp = self.client.clusters.scale('id', scale_body) self.assertEqual(url, self.responses.last_request.url) self.assertEqual(scale_body, json.loads(self.responses.last_request.body)) self.assertIsInstance(resp, cl.Cluster) self.assertFields(self.body, resp) def test_clusters_delete(self): url = self.URL + '/clusters/id' self.responses.delete(url, status_code=204) self.client.clusters.delete('id') self.assertEqual(url, self.responses.last_request.url) def test_clusters_update(self): url = self.URL + '/clusters/id' update_body = { 'name': 'new_name', 'description': 'descr' } self.responses.patch(url, status_code=202, json=update_body) # check that all parameters will be updated resp = self.client.clusters.update('id', name='new_name', description='descr') self.assertEqual(url, self.responses.last_request.url) self.assertIsInstance(resp, cl.Cluster) self.assertEqual(update_body, json.loads(self.responses.last_request.body)) # check that parameters will not be updated self.client.clusters.update("id") self.assertEqual(url, self.responses.last_request.url) self.assertEqual({}, json.loads(self.responses.last_request.body)) # check that all parameters will be unset unset_json = { "name": None, "description": None, "is_public": None, "is_protected": None, "shares": None } self.client.clusters.update("id", **unset_json) self.assertEqual(url, self.responses.last_request.url) self.assertEqual(unset_json, json.loads(self.responses.last_request.body)) def test_clusters_update_share(self): url = self.URL + '/clusters/id' update_body = { 'name': 'new_name', 'description': 'descr', 'shares': self.test_shares } self.responses.patch(url, status_code=202, json=update_body) resp = self.client.clusters.update('id', name='new_name', description='descr', shares=self.test_shares) self.assertEqual(url, self.responses.last_request.url) self.assertIsInstance(resp, cl.Cluster) self.assertEqual(update_body, json.loads(self.responses.last_request.body))