As explained in the Design document, a TestSuite in the Mago framework contains two different files, a .py file with the TestSuite class and methods and a .xml file, with the description of the TestSuite.

When writing a new TestSuite with the Mago framework, based on already available applications in the library, create the .py file and the .xml based on the following templates (available classes):

Python File

   1 import ldtp
   2 import ldtputils
   3 
   4 # import the TestSuite class
   5 from mago.testsuite.main import TestSuite
   6 # import the necessary Ubuntu applications
   7 from mago.application.ubuntu import <BaseClass>
   8 # import the necessary GNOME applications
   9 from mago.application.gnome import <BaseClass>
  10 
  11 class <SuiteClass>(TestSuite):
  12 
  13     def setup(self):
  14         #setup code, put here what happens at
  15         #the beginning of the testsuite
  16 
  17     def teardown(self):
  18         #teardown code, put here what happens when
  19         #the testsuite finishes
  20 
  21     def cleanup(self):
  22         # Add here what happens between test cases,
  23         # i.e. cleaning logs and/or temp files
  24 
  25     def <method1>(self, arg1, arg2):
  26 
  27         self.do_stuff()
  28         self.do_stuff()
  29         
  30         if do_some_check() == FAIL:
  31             raise AssertionError, "Human readable message"
  32 
  33 if __name__ == "__main__":
  34     <example_test> = <SuiteClass>()
  35     <example_test>.run()

The python file contains the code for the test script. We are going through the script lines, explaining each of them.

Single Application Test Suite

One common use case is having a test suite that only test one application. For those cases the setup, teardown and cleanup methods normally contain common code (i.e. setup, opens the application, teardown closes the application, etc.).

For those cases, the test suite can be inherited from one of the SingleApplication test suites, that already implement those methods.

For example, to create a test suite that only test Gedit, the python template above can be changed for:

   1 import ldtp
   2 import ldtputils
   3 
   4 # Instead of importing the Base application, import the base test suite
   5 from mago.test_suite.gnome import GEditTestSuite
   6 
   7 class <SuiteClass>(GEditTestSuite):
   8 
   9     def <method1>(self, arg1, arg2):
  10 
  11         self.do_stuff()
  12         self.do_stuff()
  13         
  14         if do_some_check() == FAIL:
  15             raise AssertionError, "Human readable message"
  16 
  17 if __name__ == "__main__":
  18     <example_test> = <SuiteClass>()
  19     <example_test>.run()

In this case, the setup, teardown and cleanup methods are implemented in the GEditTestSuite class.

XML File

<?xml version="1.0"?>
<suite name="A name for your suite">
 <class>{module_name}.{SuiteClass}</class>
  <description>
    A nice description about the purporse of the test suite
  </description>
  <!-- args of the suite main class -->
  <args>
      <arg1>contentofarg1</arg1>
      <arg2>contentofarg2</arg2>
      ...
      <argN>contentofargN</argN>
  </args>
  <case name="{NameCase1}">
    <method>{methodcase1}</method>
    <description>A description of the first testcase</description>
    <!-- args of the case method -->
    <args>
      <arg1>contentofarg1</arg1>
      <arg2>contentofarg2</arg2>
      ...
      <argN>contentofargN</argN>
    </args>
  </case>
  <case name="{NameCase2}">
    <method>{methodcase2(couldbethesameas1)}</method>
    <description>A description of the second testcase</description>
    <args>
      <arg1>contentofarg1</arg1>
      <arg2>contentofarg2</arg2>
      ...
      <argN>contentofargN</argN>
    </args>
  </case>
</suite>

The XML file is almost self-describing. The most important parts of it are explained below:

Testing/Automation/Mago/NewTests (last edited 2009-07-01 08:54:10 by 20)