Skip to content

Commit

Permalink
Merge pull request #2 from pug-php/feature/update-pug
Browse files Browse the repository at this point in the history
Requires pug ^2.7.6 || ^3.4.1
  • Loading branch information
kylekatarnls committed May 2, 2021
2 parents b2f3155 + 8b80cdd commit 299a810
Show file tree
Hide file tree
Showing 8 changed files with 203 additions and 83 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Coverage

on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php: ['7.4']
setup: ['stable']

name: PHP

steps:
- uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-${{ matrix.setup }}-v2-php-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.setup }}-v2-php-${{ matrix.php }}-
- name: Code Climate Test Reporter Preparation
if: ${{ env.CC_TEST_REPORTER_ID != '' }}
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter before-build
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}

- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer update --prefer-dist --prefer-${{ matrix.setup }} --no-progress --no-interaction

- name: Run test suite
run: vendor/bin/phpunit -c tests/phpunit-travis.xml --coverage-text --coverage-clover=coverage.xml

- name: Code Climate Test Reporter
if: ${{ env.CC_TEST_REPORTER_ID != '' }}
run: |
cp coverage.xml clover.xml
bash <(curl -s https://codecov.io/bash)
./cc-test-reporter after-build --coverage-input-type clover --exit-code 0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
55 changes: 55 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Tests

on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php: ['5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
renderer: ['talesoft/tale-pug:^1.5', 'pug-php/pug:^2.7.6', 'pug-php/pug:^3.4.1']
setup: ['lowest', 'stable']
include:
- php: 5.4
renderer: pug-php/pug:^2.7.6
setup: lowest
- php: 5.4
renderer: pug-php/pug:^2.7.6
setup: stable

name: PHP ${{ matrix.php }} - ${{ matrix.renderer }} - ${{ matrix.setup }}

steps:
- uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-${{ matrix.setup }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.setup }}-php-${{ matrix.php }}-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: |
composer require ${{ matrix.renderer }} --no-update
${{ matrix.php >= 8 && 'composer require --no-update phpunit/phpunit:^8.5.15 --no-interaction;' || '' }}
composer update --prefer-dist --prefer-${{ matrix.setup }} --no-progress --no-interaction ${{ matrix.php >= 8.1 && '--ignore-platform-req=php' || '' }}
- name: Run test suite
run: vendor/bin/phpunit -c tests/phpunit-travis.xml --no-coverage --verbose
66 changes: 0 additions & 66 deletions .travis.yml

This file was deleted.

11 changes: 5 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,13 @@
},
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "^2.0",
"pug-php/pug": "^2.7 || ^3.0"
"yiisoft/yii2": "^2.0.13",
"pug-php/pug": "^2.7.6 || ^3.4.1"
},
"require-dev": {
"yidas/yii2-composer-bower-skip": "^2.0",
"yiisoft/yii2-bootstrap": "^2.0",
"phpunit/phpunit": ">=4.8.35 <6.0",
"codeclimate/php-test-reporter": ">=0.3"
"yidas/yii2-composer-bower-skip": "^2.0.13",
"yiisoft/yii2-bootstrap": "^2.0.10",
"phpunit/phpunit": "^8.5.15"
},
"autoload": {
"psr-4": {
Expand Down
20 changes: 12 additions & 8 deletions tests/unit/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,27 @@

namespace Pug\Yii\Tests;

use ReflectionMethod;
use yii\helpers\ArrayHelper;

abstract class TestCase extends \PHPUnit_Framework_TestCase
$setUp = @new ReflectionMethod('PHPUnit\\Framework\\TestCase', 'setUp');
$testCaseInitialization = true;

require $setUp && method_exists($setUp, 'hasReturnType') && $setUp->hasReturnType()
? __DIR__ . '/TestCaseTyped.php'
: __DIR__ . '/TestCaseUntyped.php';

unset($testCaseInitialization);

class TestCase extends TestCaseTypeBase
{
public static $params;

protected function setUp()
protected function prepareTest()
{
parent::setUp();
$this->mockApplication();
}

protected function tearDown()
{
parent::tearDown();
}

/**
* Populates Yii::$app with a new application
* The application will be destroyed on tearDown() automatically.
Expand Down
34 changes: 34 additions & 0 deletions tests/unit/TestCaseTyped.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?php

namespace Pug\Yii\Tests;

use PHPUnit\Framework\TestCase as PHPUnitTestCase;

// @codeCoverageIgnoreStart
if (!isset($testCaseInitialization) || !class_exists('Pug\\Yii\\Tests\\TestCaseTypeBase', false)) {
return;
}

class TestCaseTypeBase extends PHPUnitTestCase
{
protected function prepareTest()
{
// Override
}

protected function finishTest()
{
// Override
}

protected function setUp(): void
{
$this->prepareTest();
}

protected function tearDown(): void
{
$this->finishTest();
}
}
// @codeCoverageIgnoreEnd
34 changes: 34 additions & 0 deletions tests/unit/TestCaseUntyped.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?php

namespace Pug\Yii\Tests;

use PHPUnit\Framework\TestCase as PHPUnitTestCase;

// @codeCoverageIgnoreStart
if (!isset($testCaseInitialization) || !class_exists('Pug\\Yii\\Tests\\TestCaseTypeBase', false)) {
return;
}

class TestCaseTypeBase extends PHPUnitTestCase
{
protected function prepareTest()
{
// Override
}

protected function finishTest()
{
// Override
}

protected function setUp()
{
$this->prepareTest();
}

protected function tearDown()
{
$this->finishTest();
}
}
// @codeCoverageIgnoreEnd
4 changes: 1 addition & 3 deletions tests/unit/renderer/MainTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@

class MainTest extends \Pug\Yii\Tests\TestCase
{
public function tearDown()
public function finishTest()
{
parent::tearDown();

$cachePath = $this->getCachePath();

FileHelper::removeDirectory($cachePath);
Expand Down

0 comments on commit 299a810

Please sign in to comment.