Statistics
| Branch: | Tag: | Revision:

root / qa / qa_monitoring.py @ 0511ce91

History | View | Annotate | Download (1.9 kB)

1
#
2
#
3

    
4
# Copyright (C) 2007, 2011, 2012, 2013 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
"""Monitoring related QA tests.
23

24
"""
25

    
26
from ganeti import _autoconf
27
from ganeti import constants
28

    
29
import qa_config
30
import qa_utils
31

    
32
from qa_utils import AssertCommand
33
from qa_instance_utils import CreateInstanceByDiskTemplate, \
34
                              RemoveInstance
35

    
36
MON_COLLECTOR = _autoconf.PKGLIBDIR + "/mon-collector"
37

    
38

    
39
def TestInstStatusCollector():
40
  """Test the Xen instance status collector.
41

42
  """
43
  enabled_hypervisors = qa_config.GetEnabledHypervisors()
44
  is_xen = (constants.HT_XEN_PVM in enabled_hypervisors or
45
            constants.HT_XEN_HVM in enabled_hypervisors)
46
  fail = not is_xen
47

    
48
  # Execute on master on an empty cluster
49
  AssertCommand([MON_COLLECTOR, "inst-status-xen"], fail=fail)
50

    
51
  #Execute on cluster with instances
52
  node1 = qa_config.AcquireNode()
53
  node2 = qa_config.AcquireNode()
54
  template = qa_config.GetDefaultDiskTemplate()
55

    
56
  instance = CreateInstanceByDiskTemplate([node1, node2], template)
57
  AssertCommand([MON_COLLECTOR, "inst-status-xen"], node=node1, fail=fail)
58
  AssertCommand([MON_COLLECTOR, "inst-status-xen"], node=node2, fail=fail)
59
  RemoveInstance(instance)
60

    
61
  node1.Release()
62
  node2.Release()