32 lines
922 B
Python
32 lines
922 B
Python
# -*- coding: utf-8 -*-
|
|
from plone.app.discussion.testing import PLONE_APP_DISCUSSION_ROBOT_TESTING
|
|
from plone.app.testing import ROBOT_TEST_LEVEL
|
|
from plone.testing import layered
|
|
|
|
import os
|
|
import robotsuite
|
|
import unittest
|
|
|
|
|
|
def test_suite():
|
|
suite = unittest.TestSuite()
|
|
current_dir = os.path.abspath(os.path.dirname(__file__))
|
|
robot_dir = os.path.join(current_dir, "robot")
|
|
robot_tests = [
|
|
os.path.join("robot", doc)
|
|
for doc in os.listdir(robot_dir)
|
|
if doc.endswith(".robot") and doc.startswith("test_")
|
|
]
|
|
for robot_test in robot_tests:
|
|
robottestsuite = robotsuite.RobotTestSuite(robot_test)
|
|
robottestsuite.level = ROBOT_TEST_LEVEL
|
|
suite.addTests(
|
|
[
|
|
layered(
|
|
robottestsuite,
|
|
layer=PLONE_APP_DISCUSSION_ROBOT_TESTING,
|
|
),
|
|
]
|
|
)
|
|
return suite
|