summaryrefslogtreecommitdiffstats
path: root/client/test_func.py
diff options
context:
space:
mode:
authorRobin Norwood <rnorwood@redhat.com>2007-09-25 10:33:03 -0400
committerRobin Norwood <rnorwood@redhat.com>2007-09-25 10:33:03 -0400
commit5024f7f62ff32345660fae783ac7a97d506fe1da (patch)
treef27c302f2593ccd8517730a0d7d45e9832824b00 /client/test_func.py
parent7d543b6cf1d721c2e9f7ed88a230172870a9f558 (diff)
Renamed server to minion and client to overlord
Diffstat (limited to 'client/test_func.py')
-rw-r--r--client/test_func.py51
1 files changed, 0 insertions, 51 deletions
diff --git a/client/test_func.py b/client/test_func.py
deleted file mode 100644
index bcce45d..0000000
--- a/client/test_func.py
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/usr/bin/python
-
-
-# FIXME: should import the client lib, not XMLRPC lib, when we are done
-
-import xmlrpclib
-
-TEST_PROCESS = False
-TEST_VIRT = False
-TEST_SERVICES = False
-TEST_HARDWARE = False
-TEST_SMART = True
-
-# 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
-