- Remove 'NEUTRON_ENABLE' - Remove redundant configuring of 'network_provider' from tests. Keep it only for tests where a special segment type should be used. - NEUTRON_SEGMENT_TYPE makes sense only if a test not configure custom network settings. If not set - defaults from Fuel should be used. - nova-network is going to be removed from Fuel, so vcenter tests are outdated because vcenter will be moving to a plugin. Change-Id: I68c6728832569e5bc92a52ad5dd7676b6924ee48 Related-Bug:#1503752
214 lines
7.5 KiB
Python
214 lines
7.5 KiB
Python
# Copyright 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.
|
|
import os
|
|
|
|
from proboscis.asserts import assert_equal
|
|
from proboscis.asserts import assert_true
|
|
from proboscis import test
|
|
|
|
from fuelweb_test.helpers.decorators import log_snapshot_after_test
|
|
from fuelweb_test.helpers import checkers
|
|
from fuelweb_test.settings import DEPLOYMENT_MODE
|
|
from fuelweb_test.settings import GLUSTER_CLUSTER_ENDPOINT
|
|
from fuelweb_test.settings import GLUSTER_PLUGIN_PATH
|
|
from fuelweb_test.tests.base_test_case import SetupEnvironment
|
|
from fuelweb_test.tests.base_test_case import TestBasic
|
|
|
|
|
|
@test(groups=["plugins"])
|
|
class GlusterfsPlugin(TestBasic):
|
|
"""GlusterfsPlugin.""" # TODO documentation
|
|
|
|
@classmethod
|
|
def check_glusterfs_conf(cls, remote, path, gfs_endpoint):
|
|
cmd = ' cat {0}'.format(path)
|
|
result = remote.execute(cmd)
|
|
assert_equal(result['exit_code'],
|
|
0,
|
|
'Command {0} execution failed with non-zero exit code. '
|
|
'Actual result {1} stderr {2}'.format(
|
|
cmd, result['exit_code'], result['stderr']))
|
|
assert_true(gfs_endpoint in ''.join(result['stdout']),
|
|
'Can not find gsf endpoint in gfs configs')
|
|
|
|
@test(depends_on=[SetupEnvironment.prepare_slaves_3],
|
|
groups=["deploy_ha_one_controller_glusterfs"])
|
|
@log_snapshot_after_test
|
|
def deploy_ha_one_controller_glusterfs_simple(self):
|
|
"""Deploy cluster with one controller and glusterfs plugin
|
|
|
|
Scenario:
|
|
1. Upload plugin to the master node
|
|
2. Install plugin
|
|
3. Create cluster
|
|
4. Add 1 node with controller and cinder roles
|
|
5. Add 1 nodes with compute role
|
|
6. Add 1 nodes with cinder role
|
|
7. Deploy the cluster
|
|
8. Run network verification
|
|
9. Check plugin health
|
|
10. Run OSTF
|
|
|
|
Duration 35m
|
|
Snapshot deploy_ha_one_controller_glusterfs
|
|
"""
|
|
self.env.revert_snapshot("ready_with_3_slaves")
|
|
|
|
with self.env.d_env.get_admin_remote() as remote:
|
|
# copy plugin to the master node
|
|
checkers.upload_tarball(
|
|
remote, GLUSTER_PLUGIN_PATH, '/var')
|
|
|
|
# install plugin
|
|
checkers.install_plugin_check_code(
|
|
remote,
|
|
plugin=os.path.basename(GLUSTER_PLUGIN_PATH))
|
|
|
|
cluster_id = self.fuel_web.create_cluster(
|
|
name=self.__class__.__name__,
|
|
mode=DEPLOYMENT_MODE,
|
|
)
|
|
|
|
plugin_name = 'external_glusterfs'
|
|
msg = "Plugin couldn't be enabled. Check plugin version. Test aborted"
|
|
assert_true(
|
|
self.fuel_web.check_plugin_exists(cluster_id, plugin_name),
|
|
msg)
|
|
options = {'metadata/enabled': True,
|
|
'endpoint/value': GLUSTER_CLUSTER_ENDPOINT}
|
|
self.fuel_web.update_plugin_data(cluster_id, plugin_name, options)
|
|
|
|
self.fuel_web.update_nodes(
|
|
cluster_id,
|
|
{
|
|
'slave-01': ['controller', 'cinder'],
|
|
'slave-02': ['compute'],
|
|
'slave-03': ['cinder']
|
|
}
|
|
)
|
|
self.fuel_web.deploy_cluster_wait(cluster_id)
|
|
|
|
for node in ('slave-01', 'slave-03'):
|
|
_ip = self.fuel_web.get_nailgun_node_by_name(node)['ip']
|
|
with self.env.d_env.get_ssh_to_remote(_ip) as remote:
|
|
self.check_glusterfs_conf(
|
|
remote=remote,
|
|
path='/etc/cinder/glusterfs',
|
|
gfs_endpoint=GLUSTER_CLUSTER_ENDPOINT)
|
|
|
|
self.fuel_web.verify_network(cluster_id)
|
|
|
|
self.fuel_web.run_ostf(
|
|
cluster_id=cluster_id)
|
|
|
|
self.env.make_snapshot("deploy_ha_one_controller_glusterfs")
|
|
|
|
@test(depends_on=[SetupEnvironment.prepare_slaves_5],
|
|
groups=["deploy_glusterfs_ha"])
|
|
@log_snapshot_after_test
|
|
def deploy_glusterfs_ha(self):
|
|
"""Deploy cluster in ha mode with glusterfs plugin
|
|
|
|
Scenario:
|
|
1. Upload plugin to the master node
|
|
2. Install plugin
|
|
3. Create cluster
|
|
4. Add 1 node with controller and cinder roles
|
|
5. Add 1 nodes with compute role
|
|
6. Add 1 nodes with cinder role
|
|
7. Deploy the cluster
|
|
8. Run network verification
|
|
9. Check plugin health
|
|
10. Run OSTF
|
|
11. Add 2 cinder + controller nodes
|
|
12. Re-deploy cluster
|
|
13. Check plugin health
|
|
14. Run ostf
|
|
|
|
Duration 50m
|
|
Snapshot deploy_glusterfs_ha
|
|
|
|
"""
|
|
self.env.revert_snapshot("ready_with_5_slaves")
|
|
|
|
with self.env.d_env.get_admin_remote() as remote:
|
|
# copy plugin to the master node
|
|
checkers.upload_tarball(
|
|
remote, GLUSTER_PLUGIN_PATH, '/var')
|
|
|
|
# install plugin
|
|
|
|
checkers.install_plugin_check_code(
|
|
remote,
|
|
plugin=os.path.basename(GLUSTER_PLUGIN_PATH))
|
|
|
|
cluster_id = self.fuel_web.create_cluster(
|
|
name=self.__class__.__name__,
|
|
mode=DEPLOYMENT_MODE,
|
|
)
|
|
|
|
plugin_name = 'external_glusterfs'
|
|
msg = "Plugin couldn't be enabled. Check plugin version. Test aborted"
|
|
assert_true(
|
|
self.fuel_web.check_plugin_exists(cluster_id, plugin_name),
|
|
msg)
|
|
options = {'metadata/enabled': True,
|
|
'endpoint/value': GLUSTER_CLUSTER_ENDPOINT}
|
|
self.fuel_web.update_plugin_data(cluster_id, plugin_name, options)
|
|
|
|
self.fuel_web.update_nodes(
|
|
cluster_id,
|
|
{
|
|
'slave-01': ['controller'],
|
|
'slave-02': ['compute'],
|
|
'slave-03': ['cinder']
|
|
}
|
|
)
|
|
self.fuel_web.deploy_cluster_wait(cluster_id)
|
|
|
|
_ip = self.fuel_web.get_nailgun_node_by_name("slave-03")['ip']
|
|
with self.env.d_env.get_ssh_to_remote(_ip) as remote:
|
|
self.check_glusterfs_conf(
|
|
remote=remote,
|
|
path='/etc/cinder/glusterfs',
|
|
gfs_endpoint=GLUSTER_CLUSTER_ENDPOINT)
|
|
|
|
self.fuel_web.verify_network(cluster_id)
|
|
|
|
self.fuel_web.run_ostf(
|
|
cluster_id=cluster_id)
|
|
|
|
self.fuel_web.update_nodes(
|
|
cluster_id,
|
|
{
|
|
'slave-04': ['controller, cinder'],
|
|
'slave-05': ['controller, cinder'],
|
|
}
|
|
)
|
|
|
|
self.fuel_web.deploy_cluster_wait(cluster_id)
|
|
|
|
for node in ('slave-03', 'slave-04', 'slave-05'):
|
|
_ip = self.fuel_web.get_nailgun_node_by_name(node)['ip']
|
|
with self.env.d_env.get_ssh_to_remote(_ip) as remote:
|
|
self.check_glusterfs_conf(
|
|
remote=remote,
|
|
path='/etc/cinder/glusterfs',
|
|
gfs_endpoint=GLUSTER_CLUSTER_ENDPOINT)
|
|
|
|
self.fuel_web.run_ostf(
|
|
cluster_id=cluster_id)
|
|
|
|
self.env.make_snapshot("deploy_glusterfs_ha")
|