lars
80337411ae
svn:keywords set fixed: shutdown - delay reboot/poweroff by some seconds to finish the web page before added: format_fs - show link to umount in case of active device added: new plugin "language_selection" fixed: recently introduced syntax error in 'network' added: "volume_props" mentions encryption support via "format_fs" (including link) updated: plugin-interface.txt fixed: broken test case for date plugin (caused by twill, I guess) added: "partition" plugin - better handling of config partition
29 lines
1 KiB
Python
29 lines
1 KiB
Python
import WebInterfaceTestClass
|
|
from twill.errors import *
|
|
|
|
class unittests(WebInterfaceTestClass.WebInterfaceTestClass):
|
|
|
|
def test_help_pages(self):
|
|
'''help pages should be available in different languages'''
|
|
|
|
## check english help pages
|
|
self.cmd.go(self.URL + "help?weblang=en")
|
|
self.cmd.find("Table of Contents")
|
|
self.cmd.find("Getting started")
|
|
|
|
self.cmd.go(self.URL + "help?weblang=de")
|
|
self.cmd.find("Table of Contents")
|
|
self.cmd.find("Wie geht es los")
|
|
|
|
self.cmd.go(self.URL + "help?weblang=si")
|
|
self.assertRaises(TwillAssertionError, self.cmd.notfind, "Table of Contents")
|
|
#TODO: add a slovene text here, as soon as the help is translated
|
|
|
|
self.cmd.go(self.URL + "help?weblang=fr")
|
|
self.assertRaises(TwillAssertionError, self.cmd.notfind, "Table of Contents")
|
|
#TODO: add a french text here, as soon as the help is translated
|
|
|
|
## test a random language - it should fall back to english
|
|
self.cmd.go(self.URL + "help?weblang=foobar")
|
|
self.assertRaises(TwillAssertionError, self.cmd.notfind, "Table of Contents")
|
|
|