Statistics
| Branch: | Tag: | Revision:

root / qa / qa_env.py @ c68d1f43

History | View | Annotate | Download (2.1 kB)

1
#
2
#
3

    
4
# Copyright (C) 2007 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
"""Cluster environment related QA tests.
23

24
"""
25

    
26
from ganeti import utils
27

    
28
import qa_config
29
import qa_utils
30

    
31
from qa_utils import AssertEqual, StartSSH
32

    
33

    
34
@qa_utils.DefineHook('env-ssh-connection')
35
def TestSshConnection():
36
  """Test SSH connection.
37

38
  """
39
  for node in qa_config.get('nodes'):
40
    AssertEqual(StartSSH(node['primary'], 'exit').wait(), 0)
41

    
42

    
43
@qa_utils.DefineHook('env-ganeti-commands')
44
def TestGanetiCommands():
45
  """Test availibility of Ganeti commands.
46

47
  """
48
  cmds = ( ['gnt-cluster', '--version'],
49
           ['gnt-os', '--version'],
50
           ['gnt-node', '--version'],
51
           ['gnt-instance', '--version'],
52
           ['gnt-backup', '--version'],
53
           ['ganeti-noded', '--version'],
54
           ['ganeti-watcher', '--version'] )
55

    
56
  cmd = ' && '.join([utils.ShellQuoteArgs(i) for i in cmds])
57

    
58
  for node in qa_config.get('nodes'):
59
    AssertEqual(StartSSH(node['primary'], cmd).wait(), 0)
60

    
61

    
62
@qa_utils.DefineHook('env-icmp-ping')
63
def TestIcmpPing():
64
  """ICMP ping each node.
65

66
  """
67
  nodes = qa_config.get('nodes')
68

    
69
  for node in nodes:
70
    check = []
71
    for i in nodes:
72
      check.append(i['primary'])
73
      if i.has_key('secondary'):
74
        check.append(i['secondary'])
75

    
76
    ping = lambda ip: utils.ShellQuoteArgs(['ping', '-w', '3', '-c', '1', ip])
77
    cmd = ' && '.join([ping(i) for i in check])
78

    
79
    AssertEqual(StartSSH(node['primary'], cmd).wait(), 0)