Skip to content

Commit

Permalink
Started fixing functional tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
strichter committed Jan 12, 2005
1 parent 18e4da4 commit 6af427a
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 0 deletions.
49 changes: 49 additions & 0 deletions browser/ftests/test_translationdomaincontrol.py
@@ -0,0 +1,49 @@
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Translation Domain Control Tests
$Id$
"""
import unittest
from zope.app.testing.functional import BrowserTestCase

class ZODBControlTest(BrowserTestCase):

def testDomainOverview(self):
response = self.publish(
'/++etc++process/@@TranslationDomain.html',
basic='globalmgr:globalmgrpw')

body = response.getBody()
self.checkForBrokenLinks(body,
'/++etc++process/@@TranslationDomain.html',
basic='globalmgr:globalmgrpw')

def testReload(self):
response = self.publish('/++etc++process/@@TranslationDomain.html',
basic='globalmgr:globalmgrpw',
form={'language': u'de',
'domain': u'zope',
'RELOAD': u'Reload'})
body = response.getBody()
self.assert_('Message Catalog successfully reloaded.' in body)


def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(ZODBControlTest))
return suite

if __name__=='__main__':
unittest.main(defaultTest='test_suite')
41 changes: 41 additions & 0 deletions browser/ftests/test_zodbcontrol.py
@@ -0,0 +1,41 @@
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""ZODB Control Tests
$Id$
"""
import unittest

from zope.app.testing.functional import BrowserTestCase


class ZODBControlTest(BrowserTestCase):

def testZODBControlOverview(self):
response = self.publish('/++etc++process/@@ZODBControl.html',
basic='globalmgr:globalmgrpw',
form={'days': u'3'})
body = response.getBody()
self.assert_('value="3"' in body)
self.assert_('<em>Demo Storage</em>' in body)
self.assert_('<em>100 Bytes</em>' in body)


def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(ZODBControlTest))
return suite

if __name__=='__main__':
unittest.main(defaultTest='test_suite')

0 comments on commit 6af427a

Please sign in to comment.