summaryrefslogtreecommitdiffstats
path: root/tests/functional/glusterd/test_volume_set_with_quorum_enabled.py
blob: 41719da633adf4a2d98a5a1ba524606376b32c69 (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
#  Copyright (C) 2017-2020  Red Hat, Inc. <http://www.redhat.com>
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License along
#  with this program; if not, write to the Free Software Foundation, Inc.,
#  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from random import choice
from time import sleep
from glusto.core import Glusto as g
from glustolibs.gluster.exceptions import ExecutionError
from glustolibs.gluster.gluster_base_class import GlusterBaseClass, runs_on
from glustolibs.gluster.peer_ops import wait_for_peers_to_connect
from glustolibs.gluster.volume_ops import set_volume_options
from glustolibs.gluster.gluster_init import start_glusterd, stop_glusterd


@runs_on([['distributed', 'replicated', 'dispersed',
           'distributed-replicated', 'distributed-dispersed'], ['glusterfs']])
class TestVolumeSetOpWithQuorum(GlusterBaseClass):

    def setUp(self):

        # calling GlusterBaseClass setUp
        self.get_super_method(self, 'setUp')()

        # Creating Volume
        g.log.info("Started creating volume")
        ret = self.setup_volume()
        if not ret:
            raise ExecutionError("Volume creation failed: %s" % self.volname)
        g.log.info("Volme created successfully : %s", self.volname)

    def tearDown(self):

        # Check and start if glusterd isn't running.
        if not self.validate_peers_are_connected():

            # Starting glusterd on node where stopped.
            ret = start_glusterd(self.node_on_glusterd_to_stop)
            if ret:
                raise ExecutionError("Failed to start glusterd.")
            g.log.info("Successfully started glusterd.")

            # Checking if peer is connected.
            ret = wait_for_peers_to_connect(self.mnode, self.servers)
            self.assertTrue(ret, "glusterd is not connected %s with peer %s"
                            % (self.mnode, self.servers))
            g.log.info("Peers is in connected state.")

        # stopping the volume and Cleaning up the volume
        ret = self.cleanup_volume()
        if not ret:
            raise ExecutionError("Failed Cleanup the Volume %s" % self.volname)
        g.log.info("Volume deleted successfully : %s", self.volname)

        # Calling GlusterBaseClass tearDown
        self.get_super_method(self, 'tearDown')()

    def test_volume_set_wit_quorum_enabled(self):
        # pylint: disable=too-many-statements
        """
        Create a volume
        Set the quorum type to server and ratio to 90
        Stop glusterd randomly on one of the node
        Set the volume option on the volume
        Start glusterd on the node where it is stopped
        Set the volume option on the volume
        """

        # Enabling server quorum
        self.quorum_options = {'cluster.server-quorum-type': 'server'}
        ret = set_volume_options(self.mnode, self.volname, self.quorum_options)
        self.assertTrue(ret, "gluster volume set %s cluster.server-quorum-type"
                             " server Failed" % self.volname)
        g.log.info("gluster volume set %s cluster.server-quorum-type server "
                   "enabled successfully", self.volname)

        # Setting Quorum ratio to 90%
        self.quorum_perecent = {'cluster.server-quorum-ratio': '90%'}
        ret = set_volume_options(self.mnode, 'all', self.quorum_perecent)
        self.assertTrue(ret, "gluster volume set all cluster.server-quorum-rat"
                             "io percentage Failed :%s" % self.servers)
        g.log.info("gluster volume set all cluster.server-quorum-ratio 90 "
                   "percentage enabled successfully on :%s", self.servers)

        # Stop glusterd on one of the node randomly
        self.node_on_glusterd_to_stop = choice(self.servers[1:])
        ret = stop_glusterd(self.node_on_glusterd_to_stop)
        self.assertTrue(ret, "glusterd stop on the node failed")
        g.log.info("glusterd stop on the node: % "
                   "succeeded", self.node_on_glusterd_to_stop)

        # checking whether peers are connected or not
        count = 0
        while count < 5:
            sleep(2)
            ret = self.validate_peers_are_connected()
            if not ret:
                break
            count += 1
        self.assertFalse(ret, "Peers are in connected state even after "
                              "stopping glusterd on one node")

        # Setting volume option when quorum is not met
        self.new_servers = self.servers[1:]
        self.new_servers.remove(self.node_on_glusterd_to_stop)
        self.nfs_options = {"nfs.disable": "off"}
        ret = set_volume_options(
            choice(self.new_servers), self.volname, self.nfs_options)
        self.assertFalse(ret, "gluster volume set %s nfs.disable off "
                         "succeeded" % self.volname)
        g.log.info("gluster volume set %s nfs.disable off"
                   "successfully", self.volname)

        # Start glusterd on the node where it is stopped
        ret = start_glusterd(self.node_on_glusterd_to_stop)
        self.assertTrue(ret, "glusterd start on the node failed")
        g.log.info("glusterd start succeeded")

        # checking whether peers are connected or not
        count = 0
        while count < 5:
            sleep(5)
            ret = self.validate_peers_are_connected()
            if ret:
                break
            count += 1
        self.assertTrue(ret, "Peer are not in connected state ")

        # Setting the volume option when quorum is met
        self.nfs_options['nfs.disable'] = 'off'
        ret = set_volume_options(self.mnode, self.volname, self.nfs_options)
        self.assertTrue(ret, "gluster volume set %s nfs.disable "
                             "off failed" % self.volname)
        g.log.info("gluster volume set %s nfs.disable "
                   "off successfully", self.volname)