[Zope3-checkins] CVS: Zope3/src/zope/app/content/ftests - __init__.py:1.1 test_file.py:1.1
Marius Gedminas
mgedmin@codeworks.lt
Mon, 14 Apr 2003 08:19:29 -0400
Update of /cvs-repository/Zope3/src/zope/app/content/ftests
In directory cvs.zope.org:/tmp/cvs-serv8524/src/zope/app/content/ftests
Added Files:
__init__.py test_file.py
Log Message:
Functional testing framework for Zope 3:
- based on http://dev.zope.org/Zope3/FunctionalTestingFramework
- doc/FTEST.txt contains a short description of the framework
- test.py -f runs functional tests
- ftesting.zcml is the equivalent of site.zcml for functional tests
(it hardcodes some principals with simple passwords; wouldn't want to do
that in the real site.zcml)
- src/zope/app/content/ftests/test_file.py is an example functional test
=== Added File Zope3/src/zope/app/content/ftests/__init__.py ===
#
# This file is necessary to make this directory a package.
=== Added File Zope3/src/zope/app/content/ftests/test_file.py ===
##############################################################################
#
# 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.0 (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.
#
##############################################################################
"""
$Id: test_file.py,v 1.1 2003/04/14 12:19:28 mgedmin Exp $
"""
import unittest
from zope.testing.functional import BrowserTestCase
class TestFile(BrowserTestCase):
def testAddFile(self):
# Step 1: add the file
response = self.publish('/+/action.html',
basic='mgr:mgrpw',
form={'type_name': u'File', 'id': u'foo'})
self.assertEqual(response.getStatus(), 302)
self.assertEqual(response.getHeader('Location'),
'http://localhost/@@contents.html')
# Step 2: check that it it visible in the folder listing
response = self.publish('/')
self.assertEqual(response.getStatus(), 200)
self.assert_(response.getBody().find('foo') != -1)
# Step 3: check that its contents are available
response = self.publish('/foo')
self.assertEqual(response.getStatus(), 200)
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestFile))
return suite
if __name__=='__main__':
unittest.main(defaultTest='test_suite')