Write a robot test for an existing Plone add-on¶
This is a tutorial for getting started with writing functional Selenium tests for an existing Plone add-on with Robot Framework.
Let's assumpt that we have an add-on my.product.
Update requirements¶
At first, we need to fix our product to require all the necessary dependencies for running Robot Framework tests.
To fix our dependencies, we update
my.product/setup.py
with
extras_require={
'test': [
'plone.app.testing[robot]',
]
},
Note
When testing with Plone version less than 4.3, we must
pin the version of
plone.app.testing into
buildout.cfg
.
Update
my.product/buildout.cfg
with:
[buildout]
extends =
...
versions.cfg
And create
my.product/versions.cfg
with:
[versions]
plone.app.versions = 4.2.2
Bootstrap and run buildout¶
Before we continue, now is a good time to run bootstrap and buildout to get the development environment ready:
$ python bootstrap.py --distribute
$ bin/buildout
Define functional test fixture¶
Functional Selenium tests require a fully functional Plone-environment.
Luckily, with plone.app.testing we can easily define a custom test fixture with Plone and our own add-on installed.
After the base fixture has been created (by following plone.app.testing documentation) we only need to define a functional testing fixture, which adds a fully functional ZServer to serve a Plone sandbox with our add-on.
Update
my.product/src/my/product/testing.py
with:
from plone.app.testing import FunctionalTesting
MY_PRODUCT_FUNCTIONAL_TESTING = FunctionalTesting(
bases=(MY_PRODUCT_FIXTURE, z2.ZSERVER_FIXTURE),
name="MyproductLayer:Functional"
)
Create a robot test suite¶
Robot tests are written as text files, which are called test suites.
It's good practice, with Plone, to prefix all robot test
suite files with
robot_
. This makes it easier to both exclude the robot tests
(which are usually very time consuming) from test runs or
run only the robot tests.
Write a simple robot tests suite
my.product/src/my/product/tests/robot_hello.txt
:
*** Settings ***
Library Selenium2Library timeout=10 implicit_wait=0.5
Suite Setup Start browser
Suite Teardown Close All Browsers
*** Variables ***
${BROWSER} = Firefox
*** Test Cases ***
Hello World
[Tags] hello
Go to http://localhost:55001/plone/hello-world
Page should contain Hello World!
*** Keywords ***
Start browser
Open browser http://localhost:55001/plone/ browser=${BROWSER}
Note
Defining browser for
Open
browser
keyword as a variable makes it easy to run the test
later with different browser.
Register the suite for zope.testrunner¶
To be able to run Robot Framework test suite with zope.testrunner and on top of our add-ons functional test fixture, we need to
- wrap the test suite into properly named Python unittest test suite
- assign our functional test layer for all the test cases.
We do this all by simply writing
my.product/src/my/product/tests/test_robot.py
:
from my.product.testing import MY_PRODUCT_FUNCTIONAL_TESTING
from plone.testing import layered
import robotsuite
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTests([
layered(robotsuite.RobotTestSuite("robot_hello_world.txt"),
layer=MY_PRODUCT_FUNCTIONAL_TESTING)
])
return suite
Note that
test_
-prefix in the filename of
test_robot.py
is required for zope.testunner to find
the test suite.
List and filter tests¶
Run
bin/test
(zope.testrunner) with
--list-tests
-argument to see that our test is registered correctly:
$ bin/test --list-tests
Listing my.product.testing.MyproductLayer:Functional tests:
Hello_World (robot_hello_world.txt) #hello
Listing my.product.testing.MyproductLayer:Integration tests:
...
Experiment with
-t
-argument to filter testrunner to find only our robot
test:
$ bin/test -t robot_ --list-tests
Listing my.product.testing.MyproductLayer:Functional tests:
Hello_World (robot_hello_world.txt) #hello
or everything else:
$ bin/test -t \!robot_ --list-tests
Listing my.product.testing.MyproductLayer:Integration tests:
...
We can also filter robot tests with tags:
$ bin/test -t \#hello --list-tests
Listing my.product.testing.MyproductLayer:Functional tests:
Hello_World (robot_hello_world.txt) #hello
Run (failing) test¶
After the test has been written and registered, it can be
run normally with
bin/test
.
The run will fail, because the test describes an unimplemented feature:
$ bin/test -t robot_
Running my.product.testing.MyproductLayer:Functional tests:
Set up plone.testing.zca.LayerCleanup in 0.000 seconds.
Set up plone.testing.z2.Startup in 0.217 seconds.
Set up plone.app.testing.layers.PloneFixture in 7.643 seconds.
Set up my.product.testing.MyproductLayer in 0.026 seconds.
Set up plone.testing.z2.ZServer in 0.503 seconds.
Set up my.product.testing.MyproductLayer:Functional in 0.000 seconds.
Running:
1/1 (100.0%)
==============================================================================
Robot Hello World
==============================================================================
Hello World | FAIL |
Page should have contained text 'Hello World!' but did not
------------------------------------------------------------------------------
Robot Hello World | FAIL |
1 critical test, 0 passed, 1 failed
1 test total, 0 passed, 1 failed
==============================================================================
Output: /.../my.product/parts/test/robot_hello_world/Hello_World/output.xml
Log: /.../my.product/parts/test/robot_hello_world/Hello_World/log.html
Report: /.../my.product/parts/test/robot_hello_world/Hello_World/report.html
Failure in test Hello World (robot_hello_world.txt) #hello
Traceback (most recent call last):
File "/.../unittest2-0.5.1-py2.7.egg/unittest2/case.py", line 340, in run
testMethod()
File "/.../eggs/robotsuite-1.0.2-py2.7.egg/robotsuite/__init__.py", line 317, in runTest
assert last_status == 'PASS', last_message
AssertionError: Page should have contained text 'Hello World!' but did not
Ran 1 tests with 1 failures and 0 errors in 3.632 seconds.
Tearing down left over layers:
Tear down my.product.testing.MyproductLayer:Functional in 0.000 seconds.
Tear down plone.testing.z2.ZServer in 5.282 seconds.
Tear down my.product.testing.MyproductLayer in 0.003 seconds.
Tear down plone.app.testing.layers.PloneFixture in 0.084 seconds.
Tear down plone.testing.z2.Startup in 0.006 seconds.
Tear down plone.testing.zca.LayerCleanup in 0.004 seconds.
Create an example view¶
Create view described in the test by registering a
template into
my.product/src/my/product/configure.zcml
:
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:five="http://namespaces.zope.org/five"
xmlns:browser="http://namespaces.zope.org/browser"
xmlns:i18n="http://namespaces.zope.org/i18n"
xmlns:genericsetup="http://namespaces.zope.org/genericsetup"
i18n_domain="my.product">
...
<browser:page
name="hello-world"
for="Products.CMFCore.interfaces.ISiteRoot"
template="hello_world.pt"
permission="zope2.View"
/>
...
</configure>
And writing the template into
my.product/src/my/product/hello_world.pt
:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
lang="en"
metal:use-macro="context/main_template/macros/master"
i18n:domain="plone">
<body>
<metal:content-core fill-slot="content-core">
<metal:content-core define-macro="content-core">
<p>Hello World!</p>
</metal:content-core>
</metal:content-core>
</body>
</html>
Run (passing) test¶
Re-run the test to see it passing:
$ bin/test -t robot_
Running my.product.testing.MyproductLayer:Functional tests:
Set up plone.testing.zca.LayerCleanup in 0.000 seconds.
Set up plone.testing.z2.Startup in 0.220 seconds.
Set up plone.app.testing.layers.PloneFixture in 7.810 seconds.
Set up my.product.testing.MyproductLayer in 0.027 seconds.
Set up plone.testing.z2.ZServer in 0.503 seconds.
Set up my.product.testing.MyproductLayer:Functional in 0.000 seconds.
Running:
Ran 1 tests with 0 failures and 0 errors in 2.604 seconds.
Tearing down left over layers:
Tear down my.product.testing.MyproductLayer:Functional in 0.000 seconds.
Tear down plone.testing.z2.ZServer in 5.253 seconds.
Tear down my.product.testing.MyproductLayer in 0.004 seconds.
Tear down plone.app.testing.layers.PloneFixture in 0.085 seconds.
Tear down plone.testing.z2.Startup in 0.006 seconds.
Tear down plone.testing.zca.LayerCleanup in 0.004 seconds.
Test reports¶
Robot Framework generates high quality test reports with screenshots of failing tests as:
-
my.product/parts/tests/robot_report.html
- Overview of the test results.
-
my.product/parts/tests/robot_log.html
: - Detailed log for every test with screenshots of failing tests.