aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test/tests/block-create/04_block_attach_device_repeatedly_pos.py
blob: 6d9eb513fe2f1911fe84dcf22b5117dcbd42d6f1 (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
#!/usr/bin/python

# Copyright (C) International Business Machines Corp., 2005
# Author: Murillo F. Bernardes <mfb@br.ibm.com>

import re

from XmTestLib import *

if ENABLE_HVM_SUPPORT:
    SKIP("Block-attach not supported for HVM domains")

# Create a domain (default XmTestDomain, with our ramdisk)
domain = XmTestDomain()

try:
    console = domain.start()
except DomainError, e:
    if verbose:
        print "Failed to create test domain because:"
        print e.extra
    FAIL(str(e))

try:
    console.setHistorySaveCmds(value=True)
    # Run 'ls'
    run = console.runCmd("ls")
except ConsoleError, e:
    saveLog(console.getHistory())
    FAIL(str(e))
    
for i in range(10):
	status, output = traceCommand("xm block-attach %s phy:ram1 sdb1 w" % domain.getName())
        if i == 0 and status != 0:
            FAIL("xm block attach returned invalid %i != 0" % status)
	if i > 0 and status == 0:
            FAIL("xm block-attach (repeat) returned invalid %i > 0" % status)
	run = console.runCmd("cat /proc/partitions")
	if not re.search("sdb1", run['output']):
            FAIL("Device is not actually attached to domU")

# Close the console
domain.closeConsole()

# Stop the domain (nice shutdown)
domain.stop()