2017 © Pedro Peláez
 

library allure-phpunit

A PHPUnit adapter for Allure report.

image

allure-framework/allure-phpunit

A PHPUnit adapter for Allure report.

  • Friday, November 3, 2017
  • by vania-pooh
  • Repository
  • 9 Watchers
  • 17 Stars
  • 91,401 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 12 Forks
  • 2 Open issues
  • 11 Versions
  • 21 % Grown

The README.md

Allure PHPUnit adapter

Build, (*1)

This an official PHPUnit adapter for Allure Framework - a flexible, lightweight and multi-language framework for writing self-documenting tests., (*2)

Table of Contents

What is this for?

The main purpose of this adapter is to accumulate information about your tests and write it out to a set of XML files: one for each test class. Then you can use a standalone command line tool or a plugin for popular continuous integration systems to generate an HTML page showing your tests in a good form., (*3)

Example project

Example project is located at: https://github.com/allure-framework/allure-phpunit-example, (*4)

How to generate report

This adapter only generates XML files containing information about tests. See wiki section on how to generate report., (*5)

Installation && Usage

Note: this adapter supports Allure 1.4.x only. In order to use this adapter you need to add a new dependency to your composer.json file:, (*6)

{
    "require": {
        "php": ">=7.0.0",
        "allure-framework/allure-phpunit": "~1.2.0"
    }
}

Then add Allure test listener in phpunit.xml file:, (*7)

<listeners>
    <listener class="Yandex\Allure\PhpUnit\AllurePhpUnit" file="vendor/allure-framework/allure-phpunit/src/Yandex/Allure/PhpUnit/AllurePhpUnit.php">
        <arguments>
            <string>build/allure-results</string> <!-- XML files output directory -->
            <boolean>true</boolean> <!-- Whether to delete previous results on rerun -->
            <array> <!-- A list of custom annotations to ignore (optional) -->
                <element key="0">
                    <string>someCustomAnnotation</string>
                </element>
            </array>
        </arguments>
    </listener>
</listeners>

After running PHPUnit tests a new folder will be created (build/allure-results in the example above). This folder will contain generated XML files. See framework help for details about how to generate report from XML files. By default generated report will only show a limited set of information but you can use cool Allure features by adding a minimum of test code changes. Read next section for details., (*8)

Main features

This adapter comes with a set of PHP annotations and traits allowing to use main Allure features., (*9)

Human-readable test class or test method title

In order to add such title to any test class or test case method you need to annotate it with @Title annotation:, (*10)

namespace Example\Tests;

use PHPUnit\Framework\TestCase;
use Yandex\Allure\Adapter\Annotation\Title;

/**
 * @Title("Human-readable test class title")
 */
class SomeTest extends TestCase
{
    /**
     * @Title("Human-readable test method title")
     */
    public function testCase()
    {
        //Some implementation here...
    }
}

Extended test class or test method description

Similarly you can add detailed description for each test class and test method. To add such description simply use @Description annotation:, (*11)

namespace Example\Tests;

use PHPUnit\Framework\TestCase;
use Yandex\Allure\Adapter\Annotation\Description;
use Yandex\Allure\Adapter\Model\DescriptionType;

/**
 * @Description("Detailed description for test class")
 */
class SomeTest extends TestCase
{
    /**
     * @Description(value = "Detailed description for <b>test class</b>.", type = DescriptionType::HTML)
     */
    public function testCase()
    {
        //Some implementation here...
    }
}

Description can be added in plain text, HTML or Markdown format - simply assign different type value., (*12)

Set test severity

@Severity annotation is used in order to prioritize test methods by severity:, (*13)

namespace Example\Tests;

use PHPUnit\Framework\TestCase;
use Yandex\Allure\Adapter\Annotation\Severity;
use Yandex\Allure\Adapter\Model\SeverityLevel;

class SomeTest extends TestCase
{
    /**
     * @Severity(level = SeverityLevel::MINOR)
     */
    public function testCase()
    {
        //Some implementation here...
    }
}

Specify test parameters information

In order to add information about test method parameters you should use @Parameter annotation:, (*14)

namespace Example\Tests;

use PHPUnit\Framework\TestCase;
use Yandex\Allure\Adapter\Annotation\Parameter;
use Yandex\Allure\Adapter\Model\ParameterKind;

class SomeTest extends TestCase
{
    /**
     * @Parameter(name = "param1", value = "value1")
     * @Parameter(name = "param2", value = "value2", kind = ParameterKind::SYSTEM_PROPERTY)
     */
    public function testCase()
    {
        //Some implementation here...
    }
}

Map test classes and test methods to features and stories

In some development approaches tests are classified by stories and features. If you're using this then you can annotate your test with @Stories and @Features annotations:, (*15)

namespace Example\Tests;

use PHPUnit\Framework\TestCase;
use Yandex\Allure\Adapter\Annotation\Features;
use Yandex\Allure\Adapter\Annotation\Stories;

/**
 * @Stories({"story1", "story2"})
 * @Features({"feature1", "feature2", "feature3"})
 */
class SomeTest extends TestCase
{
    /**
     * @Features({"feature2"})
     * @Stories({"story1"})
     */
    public function testCase()
    {
        //Some implementation here...
    }
}

You will then be able to filter tests by specified features and stories in generated Allure report., (*16)

Attach files to report

If you wish to attach some files generated during PHPUnit run (screenshots, log files, dumps and so on) to report - then you need to use AttachmentSupport trait in your test class:, (*17)

namespace Example\Tests;

use PHPUnit\Framework\TestCase;
use Yandex\Allure\Adapter\Support\AttachmentSupport;

class SomeTest extends TestCase
{

    use AttachmentSupport;

    public function testCase()
    {
        //Some implementation here...
        $filePath = $this->outputSomeContentToTemporaryFile();
        $this->addAttachment($filePath, 'Attachment human-readable name', 'text/plain');
        //Some implementation here...
    }

    private function outputSomeContentToTemporaryFile()
    {
        $tmpPath = tempnam(sys_get_temp_dir(), 'test');
        file_put_contents($tmpPath, 'Some content to be outputted to temporary file.');
        return $tmpPath;
    }

}

In order to create an attachment simply call AttachmentSupport::addAttachment() method. This method accepts attachment type, human-readable name and a string either storing full path to the file we need to attach or file contents., (*18)

Divide test methods into steps

Allure framework also supports very useful feature called steps. Consider a test method which has complex logic inside and several assertions. When an exception is thrown or one of assertions fails sometimes it's very difficult to determine which one caused the failure. Allure steps allow to divide test method logic into several isolated pieces having independent run statuses such as passed or failed. This allows to have much more cleaner understanding of what really happens. In order to use steps simply import StepSupport trait in your test class:, (*19)

namespace Example\Tests;

use PHPUnit\Framework\TestCase;
use Yandex\Allure\Adapter\Support\StepSupport;

class SomeTest extends TestCase
{

    use StepSupport;

    public function testCase()
    {
        //Some implementation here...
        $this->executeStep("This is step one", function () {
            $this->stepOne();
        });

        $this->executeStep("This is step two", function () {
            $this-stepTwo();
        });

        $this->executeStep("This is step three", function () {
            $this->stepThree('someArgument');
        });
        //Some implementation here...
    }

    private function stepOne()
    {
        //Some implementation here...
    }

    private function stepTwo()
    {
        //Some implementation here...
    }

    private function stepThree($argument)
    {
        //Some implementation here...
    }

}

The entire test method execution status will depend on every step but information about steps status will be stored separately., (*20)

The Versions

03/11 2017

dev-master

9999999-dev http://allure.qatools.ru/

A PHPUnit adapter for Allure report.

  Sources   Download

Apache-2.0

The Requires

 

by Ivan Krutov

phpunit testing allure report steps attachments cases

03/11 2017

1.2.3

1.2.3.0 http://allure.qatools.ru/

A PHPUnit adapter for Allure report.

  Sources   Download

Apache-2.0

The Requires

 

by Ivan Krutov

phpunit testing allure report steps attachments cases

27/07 2015

1.2.2

1.2.2.0 http://allure.qatools.ru/

A PHPUnit adapter for Allure report.

  Sources   Download

Apache-2.0

The Requires

 

by Ivan Krutov

phpunit testing allure report steps attachments cases

01/09 2014

1.2.1

1.2.1.0 http://allure.qatools.ru/

A PHPUnit adapter for Allure report.

  Sources   Download

Apache-2.0

The Requires

 

by Ivan Krutov

phpunit testing allure report steps attachments cases

21/08 2014

1.2.0

1.2.0.0 http://allure.qatools.ru/

A PHPUnit adapter for Allure report.

  Sources   Download

Apache-2.0

The Requires

 

by Ivan Krutov

phpunit testing allure report steps attachments cases

18/08 2014

1.1.3

1.1.3.0 http://allure.qatools.ru/

A PHPUnit adapter for Allure report.

  Sources   Download

Apache-2.0

The Requires

 

by Ivan Krutov

phpunit testing allure report steps attachments cases

13/08 2014

1.1.2

1.1.2.0 http://allure.qatools.ru/

A PHPUnit adapter for Allure report.

  Sources   Download

Apache-2.0

The Requires

 

by Ivan Krutov

phpunit testing allure report steps attachments cases

05/08 2014

1.1.1

1.1.1.0 http://allure.qatools.ru/

A PHPUnit adapter for Allure report.

  Sources   Download

Apache-2.0

The Requires

 

by Ivan Krutov

phpunit testing allure report steps attachments cases

04/06 2014

1.1.0

1.1.0.0 http://allure.qatools.ru/

A PHPUnit adapter for Allure report.

  Sources   Download

Apache-2.0

The Requires

 

by Ivan Krutov

phpunit testing allure report steps attachments cases

21/05 2014

1.0.1

1.0.1.0 http://allure.qatools.ru/

A PHPUnit adapter for Allure report.

  Sources   Download

Apache-2.0

The Requires

 

by Ivan Krutov

phpunit testing allure report steps attachments cases

04/05 2014

1.0.0

1.0.0.0 http://allure.qatools.ru/

A PHPUnit adapter for Allure report.

  Sources   Download

Apache-2.0

The Requires

 

by Ivan Krutov

phpunit testing allure report steps attachments cases