summaryrefslogtreecommitdiffstats
path: root/overlord/test_func.py
blob: 59e92a08daa49815a20312f155ae1b58f3c6407b (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/python


# FIXME: should import the client lib, not XMLRPC lib, when we are done

import xmlrpclib
import sys

TEST_GETATTR = True
TEST_PROCESS = False
TEST_VIRT = False
TEST_SERVICES = False
TEST_HARDWARE =  False
TEST_SMART = True

if TEST_GETATTR:
   import func.overlord.client as func_client
   print func_client.Client("*").hardware.pci_info()
   #print func_client.Client("*").test.add(1,2)
   #print func_client.Client("*").hardware.info()
   #print func_client.Client("*").run("hardware","info",[])
   #print func_client.Client(socket.gethostname(),noglobs=True).test.add("1","2")
   sys.exit(1)

# get a connecton (to be replaced by client lib logic)
s = xmlrpclib.ServerProxy("http://127.0.0.1:51234")

# here's the basic test...
print s.test.add(1, 2)

if TEST_SMART:
    print s.smart.info()

if TEST_PROCESS:
    print s.process.info()
    # print s.process.pkill("thunderbird")

# here's the service module testing
if TEST_SERVICES:
    print s.service.restart("httpd")
    
if TEST_HARDWARE:
    print s.hardware.info()

# this is so I can remember how the virt module works
if TEST_VIRT:

   # example of using koan to install a virtual machine
   #s.virt_install("mdehaan.rdu.redhat.com","profileX")

   # wait ...
   vms = s.virt.list_vms()
   # example of stopping all stopped virtual machines
   print "list of virtual instances = %s" % vms
   for vm in vms:
       status = s.virt.status(vm)
       print status
       if status == "shutdown":
           s.virt.start(vm)

# add more tests here