From Fedora Project Wiki

(wordmongering and formatting cleanup)
No edit summary
Line 18: Line 18:
* The underlying database schema has been designed.<ref>https://fedoraproject.org/wiki/AutoQA_resultsdb_schema</ref>
* The underlying database schema has been designed.<ref>https://fedoraproject.org/wiki/AutoQA_resultsdb_schema</ref>
* The data input API to be used for submitting test results has been implemented.<ref>https://fedoraproject.org/wiki/AutoQA_resultsdb_API</ref>
* The data input API to be used for submitting test results has been implemented.<ref>https://fedoraproject.org/wiki/AutoQA_resultsdb_API</ref>
* A proof-of-concept front end to display test results has been implemented using TurboGears2.<ref>https://www.assembla.com/code/resultsdb/git/nodes?rev=devel</ref>
* A proof-of-concept front end to display test results has been implemented using TurboGears2.<ref>https://www.assembla.com/code/resultsdb/git/nodes?rev=master</ref>
* A second proof-of-concept frontend to create test plans (ie. The Package Update Acceptance Test Plan <ref name='PUATP'>https://fedoraproject.org/wiki/QA:Package_Update_Acceptance_Test_Plan</ref>) has been started<ref name='git-repo'>https://www.assembla.com/code/resultsdb_puatp/git/nodes?rev=master</ref>.
* A second proof-of-concept frontend to create test plans (ie. The Package Update Acceptance Test Plan <ref name='PUATP'>https://fedoraproject.org/wiki/QA:Package_Update_Acceptance_Test_Plan</ref>) has been started<ref name='git-repo'>https://www.assembla.com/code/resultsdb_puatp/git/nodes?rev=master</ref>.



Revision as of 14:49, 27 April 2011

Warning.png
This page is a draft only
It is still under construction and content may change. Do not rely on the information on this page.

What is ResultsDB

ResultsDB is a system designed to hold the results of tests executed by the AutoQA framework.

Motivation behind ResultsDB

From the beginning of AutoQA development, all test results were stored on the autoqa-results mailing list [1]. While this is not a bad system for storing test results on a small scale, searching through these results (ie. find all test results for foobar-1.3-fc15) is overly difficult and cumbersome.

The primary motivation behind ResultsDB is to provide a simple, easily accessible interface to test results through simple querying API. ResultsDB is also capable of storing test results but this is a secondary objective.

Since ResultsDB is only a system for storing test results, different 'frontend' systems can be created using ResultsDB as a data source. These frontends could be a simple tool to aggregate recent results for packages (potentially a table for a package/update's results within bodhi or koji) or something more complicated like a tool for gathering test-related metrics (historical fail/pass ratio of a specific test in a Fedora release, failure rate of critpath packages etc.).

Current State of Development

At the time of this writing, most of the first version of ResultsDB has been completed:

  • The underlying database schema has been designed.[2]
  • The data input API to be used for submitting test results has been implemented.[3]
  • A proof-of-concept front end to display test results has been implemented using TurboGears2.[4]
  • A second proof-of-concept frontend to create test plans (ie. The Package Update Acceptance Test Plan [5]) has been started[6].

API

Note.png
Down with direct SQL
During discussions, it was decided against using a direct SQL-based API. Instead, the preference was for a set of specific filter-methods with monitorable (?) arguments.

At the time of this writing, ResultsDB has a well defined API for storing results but the API for retrieving results has yet to be designed. The current thought behind the retrieval API is that it could be better designed once a proper production dataset exists.

When the Fedora Message Bus is deployed, that would provide another mechanism to monitor for and broadcast events.

Database Schema

The primary goal when designing the database schema was versatility. The desire was to have the ability to store test data from yet-to-be-created tests in addition to meeting the needs of 'other activities' that may become relevant in the future.

Job Table

For the immediate future, there are no plans to utilize the Job table in ResultsDB. That table is in the schema to allow for the ability to group several testruns (e.g. rpmguard and conflicts for a specific package). At the time of this writing, this type of grouping is not compatibly with current scheduling methods but the grouping can be easily taken care of with various frontend implementations.

Testrun Table

The Testrun table corresponds with a single execution of a test. Any data not covered by attributes in Testrun (such as tested package/update, architecture, etc) will be stored in the TestrunData table as key-value pairs. The potential and expected keys for these key-value pairs will be defined by test metadata. It is possible to include information about 'always present' and 'sometimes present' keys [7].

TestrunPhase Table

Testruns can be divided into phases (e.g. Setup phase of the test, downloading packages from koji) which are stored in the TestrunPhase table. If the test developer splits the test into multiple phases, each phase has its own result in addition to the global result stored in the Testrun table. Once tests are split up into phases, it will be possible to use test metadata to determine the severity of failures (e.g. a failure during the setup phase is not as severe as a failure during the test phase).

Generic Testplan Frontend

The testplan frontends are designed to be simple applications with an MVC [8] architecture.

  • Model - The data from ResultsDB makes up the model
  • Controller - Metadata stored in Mediawiki pages [9] makes up the Controller.
  • View - Simple frontend implementations[6] make up the view.

It is anticipated that multiple testplan frontends will be created for ResultsDB and this architecture should be flexible enough to support the implementation of several independent frontends.

Example

A frontend was created for the Package Update Acceptance Testplan (PUATP) [5] as an example. There are multiple 'levels' of acceptance, based on the results of different tests. Many AutoQA tests are run on most, if not all, packages and the same data can be presented in different contexts to allow for easier understanding of that data.

At the time of this writing, FedoraQA is using MediaWiki for a TCMS. A method to store and retrieve test metadata on wiki pages was proposed[10] and is currently being used for the more complicated PUATP template[9].

The frontend [6] parses metadata from the wiki page, queries ResultsDB for test results from a specific NVR/testcase combination, and renders the information into an easily readable format.

Mediawiki Testcase Metadata

The semantics of metadata for the PUATP testcase [9] is quite simple.

  • testcases (required): A dictionary that connects the testcase name(key) to the URL of the testcase metadata (value). Testcase names (i.e. rpmlint or initscripts) are the primary method of reference beyond this dictionary.
  • testcase_classes (required): A list defining any number of 'classes'. Any class in this list must be farther defined in the metadata for the same testcase.
  • mandatory, introspection, advisory (test classes, user defined): Each test class is a dictionary which describes which testcases are to be taken into account, which results will be accepted, and what result should the test class have, if either of the tests is out of the specified set.
    • testcases: List of testcase names that fall under the specified class
    • pass: List of testcase results that qualify as 'accepted'. If all possible test results are in this set, the overall result of the test class will always be "PASSED".
    • on_fail: Overall test class result if any of the specified testcases return a result not on the 'pass' list

Links