How to add testsing in your bagisto packages

When you add a package, you should your testing case into Bagisto, and you can use this step for it.

phpunit.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<!-- Admin package testsuites. -->
<testsuite name="Admin Unit Test">
<directory suffix="Test.php">./packages/Webkul/Admin/tests/Unit</directory>
</testsuite>
<testsuite name="Admin Feature Test">
<directory suffix="Test.php">./packages/Webkul/Admin/tests/Feature</directory>
</testsuite>

<!-- DataGrid package testsuites. -->
<testsuite name="DataGrid Unit Test">
<directory suffix="Test.php">./packages/Webkul/DataGrid/tests/Unit</directory>
</testsuite>
<testsuite name="DataGrid Feature Test">
<directory suffix="Test.php">./packages/Webkul/DataGrid/tests/Feature</directory>
</testsuite>

<!-- Shop package testsuites. -->
<testsuite name="Shop Unit Test">
<directory suffix="Test.php">./packages/Webkul/Shop/tests/Unit</directory>
</testsuite>
<testsuite name="Shop Feature Test">
<directory suffix="Test.php">./packages/Webkul/Shop/tests/Feature</directory>
</testsuite>

<!-- Shopify package testsuites. -->
<testsuite name="Shopify Unit Test">
<directory suffix="Test.php">./packages/Webkul/Shopify/tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./app</directory>
</include>
</source>
<php>
<env name="APP_ENV" value="testing"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
<env name="MAIL_MAILER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="TELESCOPE_ENABLED" value="false"/>
</php>
</phpunit>

composer.json

1
2
3
4
5
6
7
8
9
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Webkul\\Admin\\Tests\\": "packages/Webkul/Admin/tests",
"Webkul\\DataGrid\\Tests\\": "packages/Webkul/DataGrid/tests",
"Webkul\\Shop\\Tests\\": "packages/Webkul/Shop/tests",
"Nicelizhi\\Shopify\\Tests\\": "packages/Webkul/Shopify/tests"
}
}

Pest.php

1
2
3
4
5
uses(Webkul\Admin\Tests\AdminTestCase::class)->in('../packages/Webkul/Admin/tests');
uses(Webkul\DataGrid\Tests\DataGridTestCase::class)->in('../packages/Webkul/DataGrid/tests');
uses(Webkul\Shop\Tests\ShopTestCase::class)->in('../packages/Webkul/Shop/tests');

uses(Nicelizhi\Shopify\Tests\ShopifyTestCase::class)->in('../packages/Webkul/Shopify/tests');

finally, you can run it, and check the testing case info.

1
./vendor/bin/pest