1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<testdefinition version="0.1">
<!-- Test suite, name mandatory - the same as test package name -->
<suite name="sync-app-tests" domain="synchronization">
<!-- At least one set per suite, name and description mandatory -->
<set name="storageplugins" description="tests for storage plugins" feature="storage-plugins">
<case name="hcalendar-tests" type="Functional" description="Running Tests for Calendar Storage Plugin" timeout="1000" subfeature="">
<!-- At least one step per test, expected_result optional - tells which return code is considered passed -->
<step expected_result="0">/usr/sbin/run-blts-root /opt/tests/buteo-sync-plugins/./runstarget.sh /opt/tests/buteo-sync-plugins/hcalendar-tests </step>
</case>
<!-- Contacts tests are disabled due to use of privileged db for writing and non privileged for reading, see ContactsBackend::init()
<case name="hcontacts-tests" type="Functional" description="Running Tests for Contacts Storage Plugin" timeout="1000" subfeature="">
<step expected_result="0">/opt/tests/buteo-sync-plugins/./runstarget.sh /opt/tests/buteo-sync-plugins/hcontacts-tests </step>
</case>
-->
<!--
<case name="hbookmarks-tests" type="Functional" description="Running Tests for Bookmarks Storage Plugin" timeout="1000" subfeature="">
<step expected_result="0">/opt/tests/buteo-sync-plugins/./runstarget.sh /opt/tests/buteo-sync-plugins/hbookmarks-tests </step>
</case>
-->
<case name="hnotes-tests" type="Functional" description="Running Tests for Notes Storage Plugin" timeout="1000" subfeature="">
<!-- At least one step per test, expected_result optional - tells which return code is considered passed -->
<step expected_result="0">/usr/sbin/run-blts-root /opt/tests/buteo-sync-plugins/./runstarget.sh /opt/tests/buteo-sync-plugins/hnotes-tests </step>
</case>
</set>
</suite>
</testdefinition>
|