[[PageOutline(2-5,Contents,pullout)]] = Test Manager plugin for Trac = == Description == A Trac plugin to create Test Cases, organize them in Catalogs, generate Test Plans and track their execution status and outcome. Differently from other test management plugins for Trac that use Tickets as test case holders, this one uses Wiki pages and an additional proprietary data model to store Test Cases. This allows you to not pollute your ticket lists with something that is not a ticket, and at the same time is powered by the Trac search engine and formatting syntax for Wiki pages. A set of plugins intercept requests for Wiki pages that are test cases and decorate the page with title, breadcrumbs, tree view, type-ahead search inside the catalogs, test case status semaphore and icons and buttons that allow you to create new test cases, sub-catalogs, copy and paste test cases around different catalogs and change a test case status. Multiple Test Plans can be associated to any Test Catalog, in order to keep track of the execution of the corresponding Test Cases in a particular testing context. All of the test objects, i.e. catalogs, test cases, test plans and test cases in a plan (i.e. with a status and a status change history), support: * '''Custom properties''', which can be declared in the trac.ini file and will be available to the User for change, stored in the database and available to change listeners. * Change history * Listener interface to be notified of object creatio, modification and deletion * '''Customizable Workflow''' state machine, declared in the trac.ini file, with the same syntax as for Ticket workflows (I may have reused some existing code here :-) * '''Customizable Workflow Operations''', via a plugin api so that any component can provide its custom operations to be performed upon any workflow action, as defined in the trac.ini file. * Workflow also supports a listener API for components interested in state transitions and actions performed * Workflow states also support custom properties, so to be able to convey additional context information on a workflow state and use it in listeners or directly from the database. The developed workflow engine is able to work on any Trac Resource, it is not confined to this plugin ones. You can then define a workflow on any Trac resource, including Wiki pages, declaratively in the trac.ini file. You will then add a handful of custom code (for example in an ITemplateStreamFilter) to add the markup that the workflow engine generates for you to your desired Trac web page. See the enhancement tickets documentation or the README.txt file contained in the egg (if you don't wish to browse the code) for further details. The '''programmatic''' and the '''RESTful API''' are documented in details in this page TestManagerForTracPluginApi. Here follows an overview of the plugin functionalities. For a full tutorial, refer to the powerpoint presentations attached below (the ones with shorter names work). [[BR]] [[BR]] == Test Catalogs == Test catalogs contain sub-catalogs or Test Cases. A Javascript tree view displays a catalog node and its sub-tree, including all of the test cases contained. Next to each catalog (or sub-catalog) a number in brackets shows the number of test cases it contains. Notice at the top of the page breadcrumbs to easily navigate up in the catalogs tree. You can add sub-catalogs or Test Cases simply by entering a name (blanks and case is supported) and click the appropriate button. A new wiki page is generated, with a naming convention allowing the plugin code to position it correctly in the catalogs tree, and opened for editing. Be careful that the first line will always be taken as the title of the catalog (the same stands for test cases, read below). Just save the new page ("Submit Changes") and you'll have your new (sub-)catalog in place. [[BR]] [[BR]] [[Image(screen2.JPG)]] [[BR]] [[BR]] == Test Cases == Test Cases are the smallest units of test execution. They are implemented again as wiki pages, with a naming convention that allows the plugin code to recognize them and treat them appropriately. Again, notice the breadcrumbs at the top, useful to go back to the enclosing catalog or any catalog up the hierarchy. [[BR]] [[BR]] [[Image(screen3.JPG)]] [[BR]] [[BR]] == Moving Test Cases from one catalog to another == It is also possible to move a Test Case into a different catalog, with an experience similar to cut&paste. You first open a test case and click on the "Move the Test Case into another catalog" button. This is similar to a "cut" operation. You then navigate and open the destination catalog and click on "Move the copied Test Case here" button (which only appears if a Test Case has been cut first). It is also possible to cancel the operation at any time by clicking the "Cancel" button in a Gmail-type of yellow message at the top of the page. [[BR]] [[BR]] [[Image(screen6.JPG)]] [[BR]] [[BR]] == Test Plans == '''Since: 1.1.0''' A Test Plan represents a plan for a particular execution of all the Test Cases in a Test Catalog (or sub-catalog). Think for example at the build verification test following a nightly build, or, for traditional projects, Technical Test and eventually Client Test. Thus a Test Plan is associated to one Test Catalog, or sub-catalog. You can have any number of Test Plans for one Test Catalog, anyway. The list of Test Plans you generated for a Test Catalog is displayd in a table at the bottom of the same catalog, as shown in the following figure. [[BR]] [[BR]] [[Image(screen9.JPG)]] [[BR]] [[BR]] To create a Test Plan for a catalog, open the desired Test Catalog (or sub-catalog), enter the name of the new Test Plan in the appropriate test box and click "Generate a new Test Plan". The new Test Plan will be opened for display, showing all of the Test Cases in the catalog, in the "Untested" status, as shown in the figure below. [[BR]] [[BR]] [[Image(screen7.JPG)]] [[BR]] [[BR]] To track the execution status of a Test Case in a particular Test Plan, open it by clicking on the Test Case name from the Test Plan tree. Then simply click on the corresponding light in the semaphore at the bottom of the page, as shown in the following figure. You don't need to save anything, the change is immediately recorded in the database by means of an Ajax call (this API will be documented asap, to allow for setting test case execution status from external applications). The change is immediately reflected in the Test Plan. [[BR]] [[BR]] [[Image(screen8.JPG)]] [[BR]] [[BR]] When viewing a Test Case, you can open a new Ticket by means of the "Open Ticket on this Test Case" button. The new ticket will contain a link back to the corresponding Test Case and, if you were viewing it in the context of a particular Test Plan, of the Test Plan as well. This plugin also supports the TracTicketTemplatePlugin to fill a ticket template with this information. In this case, you can use the following parameters in the template to receive the information: * testCaseNumber: The wiki page for the corresponding Test Case * planId: The ID of the Test Plan * planName: The name of the Test Plan For example, to get the test case number, you template will have something like: {{{ bleah bleah Test Case: %(testCaseNumber)s bleah bleah }}} == Custom fields == '''Since: 1.2.0''' Custom fields can be added to the four test objects and to the workflow state object, by declaring them in the trac.ini file. See the README.txt file for how to recreate this example. The following screenshot shows a custom "platform" field added to the Test Case object, and how it is presented to the User for editing. [[BR]] [[BR]] [[Image(screen11.png)]] [[BR]] [[BR]] [[BR]] == Customizable Workflow == '''Since: 1.2.0''' The following figure shows a sample workflow added to Test Cases with custom sample operations. No built-in operation is currently implemented but the sample one shown here, named 'sample_operation', which logs a debug message with the text input by the User. Every object which has a workflow defined is created in a "new" state, so every transition should consider this as the first state in the state machine. {{{ sleep = new -> asleep sleep.permissions = TEST_MODIFY sing = new -> singing sing.permissions = TEST_MODIFY sing.operations = sample_operation calmdown = new -> calm calmdown.permissions = TEST_MODIFY calmdown.operations = sample_operation kill = asleep,calm -> dead kill.permissions = TICKET_MODIFY }}} See the README.txt file for more details. [[BR]] [[BR]] [[Image(screen12.png)]] [[BR]] [[BR]] [[BR]] == Searching and filtering Test Cases in the tree view == A type-ahead, browser-side filtering feature allows for easily locating Test Cases matching a particular naming convention in the title, and/or a particular execution status. This is available both in the context of a Test Catalog and in Test Plans. Multiple words (or parts of) separated by blanks are supported, in AND condition. In the case of a Test Plan, you can also add a test case status to filter by this criterion. The supported statuses are (even substrings of): * untested * successful * failed [[BR]] [[BR]] [[Image(screen4.JPG)]] [[BR]] [[BR]] [[BR]] == Test Management and Execution Statistics == '''Since: 1.1.1''' Charting capabilities allow for tracking the evolution of the test suites and the corresponding test plans. To access the test management statistics, click on '''Test Stats''' in the Trac toolbar on the upper right corner of the page. As shown in the next figure, a chart will be displayed with statistics about all the test cases in the system and a default period of time. By means of the filtering criteria at the bottom of the chart, you can select the desired period of time, the chart resolution (in terms of time between different samples) and the Test Plan for your chart. You can bookmark the URL named "Static URL" at the bottom of the page in order to go directly with the current selected filtering criteria. '''Note:''' You will need internet connection to be able to display this charts, since it leverages Yahoo remote charting services. [[BR]] [[BR]] [[Image(screen10.png)]] [[BR]][[BR]] == Security == The following new permissions are available to manage the Test Manager security: * TEST_VIEW - Ability to view test catalogs and test cases * TEST_MODIFY - Ability to create and edit test catalogs and test cases * TEST_EXECUTE - Ability to change the status of a test case in a test plan * TEST_DELETE - Ability to delete test cases * TEST_PLAN_ADMIN - Ability to generate and delete test plans * TEST_STATS_VIEW - Ability to view test management statistics [[BR]][[BR]] == Programmatic API == The '''programmatic RESTful API''' is documented in details in this page TestManagerForTracPluginApi. [[BR]][[BR]] == Tutorial (as powerpoint presentation) == '''TODO:''' These tutorials document release 1.0.3 and so need to be updated with the Test Plan and other recent features. * attachment:"UserGuide_part_1.ppt" * attachment:"UserGuide_part_2.ppt" * attachment:"UserGuide_part_3.ppt" [[BR]][[BR]] == Project site == Project site: http://sourceforge.net/projects/testman4trac/ The project is also on Pypi: http://pypi.python.org/pypi/TestManager [[BR]][[BR]] == Bugs/Feature Requests == If you have any issues, create a [http://trac-hacks.org/newticket?component=TestManagerForTracPlugin&owner=seccanj new ticket]. Existing bugs and feature requests for TestManagerForTracPlugin are [report:9?COMPONENT=TestManagerForTracPlugin here]. [[TicketQuery(component=TestManagerForTracPlugin,format=table,col=summary|status|severity|priority|milestone|type|owner|time|description)]] [[BR]][[BR]] == Download == Download the egg files, ready to be installed, from the project site [http://sourceforge.net/projects/testman4trac/files here]. [[BR]][[BR]] == Source == You can download the source code from [https://sourceforge.net/projects/testman4trac/files here]. [[BR]][[BR]] == Example == The plugin can be installed as usual, from the Trac administration panel, and requires a database upgrade. I had to drop support for Trac 0.11, couldn't afford to keep both releases compatibility with a complete rewrite to do. At the moment it has been tested only on Trac 0.12 with Python 2.6. Follow the tutorial presentation that you can download from the project site to start. The tutorial needs to be updated to the new Test Plan feature. [[BR]][[BR]] == Recent Changes == [[ChangeLog(testmanagerfortracplugin, 3)]] [[BR]][[BR]] == Author/Contributors == '''Author:''' [wiki:seccanj] [[BR]] '''Maintainer:''' [wiki:seccanj] [[BR]] '''Contributors:'''