Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto-review required dependency matching in composer.json #5538

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/workflows/test-autoreview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Automatic Code Review

on:
pull_request:
paths:
- composer.json
- spark
- '**.php'
- .github/workflows/test-autoreview.yml
push:
paths:
- composer.json
- spark
- '**.php'
- .github/workflows/test-autoreview.yml

jobs:
auto-review-tests:
name: Automatic Code Review
runs-on: ubuntu-20.04

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
coverage: none

- name: Get composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install dependencies
run: composer update --ansi
env:
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}

- name: Run AutoReview Tests
run: vendor/bin/phpunit --color=always --group=auto-review --no-coverage
2 changes: 1 addition & 1 deletion .github/workflows/test-phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
run: echo "TACHYCARDIA_MONITOR_GA=enabled" >> $GITHUB_ENV

- name: Test with PHPUnit
run: script -e -c "vendor/bin/phpunit --color=always"
run: script -e -c "vendor/bin/phpunit --color=always --exclude-group=auto-review"
env:
DB: ${{ matrix.db-platforms }}
TERM: xterm-256color
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"autoload-dev": {
"psr-4": {
"CodeIgniter\\": "tests/system/",
"CodeIgniter\\AutoReview\\": "tests/AutoReview/",
"Utils\\": "utils/"
}
},
Expand Down
3 changes: 3 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
</coverage>

<testsuites>
<testsuite name="AutoReview">
<directory>./tests/AutoReview</directory>
</testsuite>
<testsuite name="System">
<directory>./tests/system</directory>
<exclude>./tests/system/Database</exclude>
Expand Down
51 changes: 51 additions & 0 deletions tests/AutoReview/ComposerJsonTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?php

declare(strict_types=1);

/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

namespace CodeIgniter\AutoReview;

use JsonException;
use PHPUnit\Framework\TestCase;

/**
* @internal
*
* @coversNothing
* @group auto-review
*/
final class ComposerJsonTest extends TestCase
{
public function testFrameworkRequireIsTheSameWithDevRequire(): void
{
$devComposer = $this->getComposerJson(dirname(__DIR__, 2) . '/composer.json');
$frameworkComposer = $this->getComposerJson(dirname(__DIR__, 2) . '/admin/framework/composer.json');

$this->assertSame(
$devComposer['require'],
$frameworkComposer['require'],
'The framework\'s "require" section is not updated with the main composer.json.'
);
}

private function getComposerJson(string $path): array
{
try {
return json_decode((string) file_get_contents($path), true, 512, JSON_THROW_ON_ERROR);
} catch (JsonException $e) {
$this->fail(sprintf(
'The composer.json at "%s" is not readable or does not exist. Error was "%s".',
clean_path($path),
$e->getMessage()
));
}
}
}