~psivaa/+junk/server

« back to all changes in this revision

Viewing changes to multi-lvm/test_lvs/test.py

  • Committer: para.siva at canonical
  • Date: 2012-07-24 12:14:58 UTC
  • Revision ID: para.siva@canonical.com-20120724121458-lhrlpsmz46npcap2
Raid and multi-lvm tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
3
# Copyright (C) 2012, Canonical Ltd (http://www.canonical.com/)
 
4
#
 
5
# This file is part of ubuntu-server-iso-testing.
 
6
 
7
# ubuntu-server-iso-testing is free software: you can redistribute it 
 
8
# and/or modify it under the terms of the GNU General Public License 
 
9
# as published by the Free Software Foundation, either version 3 of 
 
10
# the License, or (at your option) any later version.
 
11
 
12
# ubuntu-server-iso-testing is distributed in the hope that it will 
 
13
# be useful, but WITHOUT ANY WARRANTY; without even the implied warranty 
 
14
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU General Public License for more details.
 
16
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with ubuntu-server-iso-testing.  If not, see 
 
19
# <http://www.gnu.org/licenses/>.
 
20
 
21
 
 
22
 
 
23
import logging
 
24
import os.path
 
25
import socket
 
26
import subprocess
 
27
import unittest
 
28
 
 
29
logging.basicConfig(level=logging.INFO)
 
30
 
 
31
class MultiLvmTest(unittest.TestCase):
 
32
 
 
33
    def testLvs(self):
 
34
        cmd = ["lvs", "--noheadings"]
 
35
        logging.debug("Cmd: %s" % (cmd))
 
36
        output = subprocess.Popen(cmd, stdout=subprocess.PIPE).communicate()[0]
 
37
        logging.debug("Cmd output: %s" % (output))
 
38
        # root home usr var tmp swap
 
39
        num_lvs = len(output.strip().split("\n"))
 
40
        self.assertTrue(num_lvs == 6, "Not able to find 6 logical volumes - found %s" % num_lvs)
 
41
 
 
42
if __name__ == '__main__':
 
43
    unittest.main()