cryptonas-branches/pythonrewrite/bin/unittests.CryptoBoxWebserver.py
2006-10-25 10:03:06 +00:00

141 lines
3.8 KiB
Python
Executable file

#!/usr/bin/env python2.4
import unittest
import twill
import cherrypy
import WebInterfaceSites
from twill import get_browser
## this makes assertRaises shorter
from twill.errors import *
from mechanize import BrowserStateError, LinkNotFoundError
## we do the following, for easy surfing
## e.g. use: cbx.go(your_url)
## commands api: http://twill.idyll.org/commands.html
cbx = twill.commands
CBXHOST="localhost"
CBXPORT=8081
CBX="http://"+CBXHOST+":"+str(CBXPORT)
class WebserverTests(unittest.TestCase):
'''this class checks the webserver, using "twill"
the tests in this class are from the browsers point of view, so not
really unittests.
fetch twill from: http://twill.idyll.org
one way to manually run twill code is through the python
interpreter commandline e.g.:
import twill
twill.shell.main()
go http://localhost:8080
find "my very special html content"
help
'''
def setUp(self):
'''configures the cherrypy server that it works nice with twill
'''
cherrypy.config.update({
'server.logToScreen' : False,
'autoreload.on': False,
'server.threadPool': 1,
'server.environment': 'production',
})
cherrypy.root = WebInterfaceSites.WebInterfaceSites()
cherrypy.server.start(initOnly=True, serverClass=None)
from cherrypy._cpwsgi import wsgiApp
twill.add_wsgi_intercept(CBXHOST, CBXPORT, lambda: wsgiApp)
# grab the output of twill commands
self.output = open("/tmp/twill.log","a")
twill.set_output(self.output)
def tearDown(self):
'''clean up the room when leaving'''
# remove intercept.
twill.remove_wsgi_intercept(CBXHOST, CBXPORT)
# shut down the cherrypy server.
cherrypy.server.stop()
self.output.close()
def __get_soup():
from twill.commands import get_browser
browser = get_browser()
soup = BeautifulSoup(browser.get_html())
return soup
########################################
######## the tests start here ##########
def test_is_server_running(self):
'''the server should run under given name and port'''
cbx.go(CBX)
# wrong port should fail
self.assertRaises(BrowserStateError, cbx.go, "http://"+CBXHOST+":"+str(CBXPORT+1))
# wrong hostname too
self.assertRaises(BrowserStateError, cbx.go, "http://localhorst:"+str(CBXPORT))
def test_helppages(self):
'''helpsites should be availbale in different languages'''
cbx.go(CBX)
cbx.go("doc")
cbx.find("Table of Contents")
cbx.go("doc?weblang=en")
cbx.find("Table of Contents")
cbx.find("Getting started")
self.assertRaises(TwillAssertionError, cbx.notfind, "Table of Contents")
cbx.go("doc?weblang=de")
cbx.find("Table of Contents")
cbx.find("Wie geht es los")
cbx.go("doc?weblang=si")
self.assertRaises(TwillAssertionError, cbx.notfind, "Table of Contents")
def test_goto_status(self):
'''display all active devices'''
cbx.go(CBX)
cbx.go("status")
cbx.find("Status")
def test_goto_system(self):
cbx.go(CBX)
cbx.go("system")
cbx.find("System")
cbx.notfind("Sstem")
cbx.show()
self.assertRaises(TwillAssertionError, cbx.find, "Sstem")
self.assertRaises(TwillAssertionError, cbx.notfind, "System")
def test_plugin_network(self):
'''change of network address'''
import socket
# actIP assumes working nameservice
actIP = socket.gethostbyname(socket.gethostname())
wrongIP = "192.168.123.321"
cbx.go(CBX)
cbx.go("plugins/network")
self.assertRaises(TwillAssertionError, cbx.notfind, str("Data.Status.Plugins.network=" + actIP))
self.assertRaises(TwillAssertionError, cbx.find, str("Data.Status.Plugins.network= "))
self.assertRaises(TwillAssertionError, cbx.find, str("Data.Status.Plugins.network=" + wrongIP))
#TODO: change the address and test again
#print cbx.show()
print cbx.showhistory()
print cbx.showforms()
print "1"
cbx.formvalue('1','ip4',"123")
print "a"
cbx.submit()
print "b"
cbx.code(200)
if __name__ == "__main__":
unittest.main()