NewTests

Differences between revisions 5 and 6
Revision 5 as of 2009-05-11 10:29:58
Size: 6376
Editor: 63
Comment:
Revision 6 as of 2009-06-11 09:37:56
Size: 6300
Editor: 63
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
As explain in the Design document, a TestSuite in the Ubuntu Desktop Testing framework contains two different files, a .py file with the TestSuite class and methods and a .xml file, with the description of the TestSuite. As explain 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.
Line 3: Line 3:
When writing a new TestSuite with the Ubuntu Desktop Testing framework, based on already available applications in the library, create the .py file and the .xml based on the following templates ([[available classes]]): 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]]):
Line 12: Line 12:
from desktoptesting.testsuite.main import TestSuite from mago.testsuite.main import TestSuite
Line 14: Line 14:
from desktoptesting.application.ubuntu import <BaseClass> from mago.application.ubuntu import <BaseClass>
Line 16: Line 16:
from desktoptesting.application.gnome import <BaseClass> from mago.application.gnome import <BaseClass>
Line 73: Line 73:
from desktoptesting.test_suite.gnome import GEditTestSuite from mago.test_suite.gnome import GEditTestSuite

As explain 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.

  • 1,2: Needed only when calling ldtp functions directly in the script.
  • 5: TestSuite is the base class for a new test suite

  • 11: SuiteClass is the name of the class for the giving suite. Anyname would do, but a descriptive name is better.

  • 11: In general, test suites will inherit from TestSuite class

  • 13: The setup method will be called at the beggining of a test suite, but not between test cases within the same suite.
  • 17: The teardown method will be called at the end of a complete test suite, but not between test cases within the same suite.
  • 21: The cleanup method will be called at the end of each test case. Write code that cleans up the mess introduced by a test case that could interfere with the next one.
  • 25: method1. A suite can contain as many methods as needed. This is were the script code is written.
  • 27,28: call any methods in the BaseClass to perform the script actions

  • 30: Do some check after the script to assert that it passed. Raise an AssertionError if something failed.

    • You can also return a list on success (message, screenshot), that will log a message and will grab a screenshot. message will be a string, screenshot, the path of screenshot file.
  • 33: The main class just creates an instance of the SuiteClass and calls the run method. The TestSuite runner will do the rest.

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:

  • The suite root node has a name attribute, with the name of the suite.
  • The <class> tag contains the module name of the .py file and the SuiteClass class (same as the one in the .py file)

  • The <description> tag contains a human readable description of the purpose of the suite.

  • The test suites can have 0 or more arguments (they will be passed to the constructor)
  • For each case in the suite we will add a case child node with the following content:
    • A name attribute with the name of the case
    • The <method> tag contains the name of the method of the SuiteClass to run for that particular test case.

    • The <description> tag describes the test case in a human readable manner.

    • Add a new child tag to the <args> tag with the argument name of the test case method.

      • i.e. if the method signature is something like:
           def my_method(self, name, surname):

        then, the <args> node of the XML file will contain something like:

           <args>
             <name>John</name>
             <surname>Smith</surname>
           </args>
        That allow us to use the same method for different test cases.

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