From Fedora Project Wiki

(drop 'tier' keyword)
(add autoqa into test environment)
Line 69: Line 69:
= Test Environment =
= Test Environment =


Test cases will be executed on all hardware platforms relevant for that particular package build. The only exception being test cases which can be executed in a platform-neutral way.
* [[AutoQA]] (the automated test execution framework) must be packaged and deployed in Fedora infrastructure. It will be used for test execution.


For those test cases, for which it makes sense, their execution should be done in a software environment as close as is feasible to that which will exist after the package is pushed to '-updates' repository. Generally this will be with a system that is up to date from 'release' and '-updates' repositories, but does not contain other packages from '-updates-testing' repository (except for the dependencies or other packages built from the affected source package - they should be updated in generally installed).
* Test cases will be executed on all hardware platforms relevant for that particular package build. The only exception being test cases which can be executed in a platform-neutral way.
 
* For those test cases, for which it makes sense, their execution should be done in a software environment as close as is feasible to that which will exist after the package is pushed to '-updates' repository. Generally this will be with a system that is up to date from 'release' and '-updates' repositories, but does not contain other packages from '-updates-testing' repository (except for the dependencies or other packages built from the affected source package - they should be updated in generally installed).


= Responsibilities =
= Responsibilities =

Revision as of 10:24, 12 February 2010

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.

Revision history

2010-02-11 kparal - First draft

Introduction

The purpose of this document is to present a set of rules that determine whether a package update is considered PASSED (i.e. it is ready to be committed to repository), FAILED (i.e. the build should be discarded and a fix should be requested) or NEEDS_INSPECTION (i.e. similar to FAILED at the moment, but it becomes PASSED if all errors are waived).

Test Strategy

The test plan is divided into three main sections:

  1. Mandatory tests
  2. Introspection tests
  3. Advisory tests

Test Priority

Mandatory tests are executed as the first ones, in arbitrary order. After all mandatory tests have been executed and passed, the introspection and advisory tests are executed in arbitrary order.

Do we really need to have the strict requirement that introspection and advisory tests are executed only after mandatory tests have completed?

Scope

This test plan contains only tests that can be automated, i.e. executed without human intervention. No manual tests will be performed. (But this does not reject human intervention when inspecting the test results, like waiving false errors.)

Test Pass/Fail Criteria

All mandatory tests must pass. If some of mandatory tests fail, the testing stops and the package update is considered FAILED.

All introspection tests must pass. If an introspection test fails, other tests continue to be executed. If some of introspection tests fail, the package is considered NEEDS_INSPECTION. An eligible person may inspect errors of an failed introspection test and waive them.

The package update is considered PASSED if there are no failed mandatory tests and all failed introspection tests are waived.

The results of advisory tests have no impact on package update validity.

Do all advisory tests must be completed before we mark package as PASSED? In order to avoid a situation where package is marked as PASSED but we still can't inspect all the advisory tests' output.

Test Deliverables

  • A decision if a particular package update has PASSED, FAILED or NEEDS_INSPECTION
  • A full log of individual test cases' output containing infos, errors or warnings
  • A special output marked as informative from any test case that PASSED but wants to convey additional information
  • Any test scripts used for automation or verification

Test Cases

Note: More tests are going to be added in the future (init-scripts test, manpage test, desktop-file test, etc).

Mandatory tests

  • Test package sanity - must be installable, uninstallable, upgradeable, etc
  • Repo sanity - the update must not break dependencies of other packages
  • Conflicts - there must be no file/package conflicts
  • Upgrade path - the update must not break upgrade path

Introspection tests

  • Rpmlint - no errors present, warnings count is under certain threshold

Advisory tests

  • Rpmlint - no warnings present
  • Rpmguard - no warnings present

Can we move some rpmguard checks into introspection tests?

Test Environment

  • AutoQA (the automated test execution framework) must be packaged and deployed in Fedora infrastructure. It will be used for test execution.
  • Test cases will be executed on all hardware platforms relevant for that particular package build. The only exception being test cases which can be executed in a platform-neutral way.
  • For those test cases, for which it makes sense, their execution should be done in a software environment as close as is feasible to that which will exist after the package is pushed to '-updates' repository. Generally this will be with a system that is up to date from 'release' and '-updates' repositories, but does not contain other packages from '-updates-testing' repository (except for the dependencies or other packages built from the affected source package - they should be updated in generally installed).

Responsibilities

Fedora QA team members are responsible for executing this test plan.

Introspection tests failures may be waived by:

  • Fedora QA team members
  • Release Engineering team members
  • package update builder
  • package maintainer

When all introspection tests failures are waived, the state change from NEEDS_INSPECTION to PASSED is to be handled automatically by Fedora QA team tools.

The aforementioned four groups or persons may also re-execute the test plan on a particular package.

Schedule

This test plan is executed on every package update build and on all new packages builds.

Risks

  • If the required architecture needed for automated testing is not available and test plan execution is not possible, the package updates may be stalled, automatically refused or automatically accepted, depending on Fedora QA team decision.

Reviewers

References