Statistics
| Branch: | Tag: | Revision:

root / qa / qa_monitoring.py @ a5877534

History | View | Annotate | Download (1.6 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

    
28
import qa_config
29

    
30
from qa_utils import AssertCommand
31
from qa_instance_utils import CreateInstanceByDiskTemplate, \
32
                              RemoveInstance
33

    
34
MON_COLLECTOR = _autoconf.PKGLIBDIR + "/mon-collector"
35

    
36

    
37
def TestInstStatusCollector():
38
  """Test the Xen instance status collector.
39

40
  """
41
  # Execute on master on an empty cluster
42
  AssertCommand([MON_COLLECTOR, "inst-status-xen"])
43

    
44
  #Execute on cluster with instances
45
  node1 = qa_config.AcquireNode()
46
  node2 = qa_config.AcquireNode()
47
  template = qa_config.GetDefaultDiskTemplate()
48

    
49
  instance = CreateInstanceByDiskTemplate([node1, node2], template)
50
  AssertCommand([MON_COLLECTOR, "inst-status-xen"], node=node1)
51
  AssertCommand([MON_COLLECTOR, "inst-status-xen"], node=node2)
52
  RemoveInstance(instance)
53

    
54
  node1.Release()
55
  node2.Release()