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

Add more tests #3

Merged
merged 1 commit into from
Jul 30, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
fail-fast: false
matrix:
include:
- { php: "8.1", laravel: "^8.12.0", os: "ubuntu-latest" }
- { php: "8.1", laravel: "^8.12.0", os: "windows-latest" }
- { php: "8.1", laravel: "8.*", os: "ubuntu-latest" }
- { php: "8.1", laravel: "8.*", os: "windows-latest" }
- { php: "8.1", laravel: "9.*", os: "ubuntu-latest" }
- { php: "8.1", laravel: "9.*", os: "windows-latest" }
- { php: "8.2", laravel: "9.*", os: "ubuntu-latest" }
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.11"
"phpunit/phpunit": "^9.3.10|^10.0",
"phpstan/phpstan": "^1.11",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 6 additions & 1 deletion src/Middleware/IgnoreDevEnv.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ public function __construct(string $environment)

public function __invoke($report): void
{
$report->ignored = !($this->environment === 'local' || $this->environment === 'testing');
$report->ignored = ($this->environment === 'local' || $this->environment === 'testing');
}

public function getWeight(): int
{
return -1000;
}
}
3 changes: 1 addition & 2 deletions src/TelebugsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ class TelebugsServiceProvider extends ServiceProvider
public function boot(): void
{
$this->publishes([
// @phpstan-ignore-next-line
__DIR__ . '/../config/telebugs.php' => base_path('config/telebugs.php'),
], 'config');
}
Expand All @@ -33,7 +32,7 @@ public function register()
$config->middleware()->use(new IgnoreDevEnv($app->environment()));
});

return new Reporter();
return Reporter::getInstance();
});

$path = realpath(__DIR__ . '/../config/telebugs.php');
Expand Down
25 changes: 25 additions & 0 deletions tests/AbstractTestCase.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

declare(strict_types=1);

namespace Telebugs\TelebugsLaravel\Tests;

use Telebugs\TelebugsLaravel\TelebugsServiceProvider;
use Orchestra\Testbench\TestCase;

abstract class AbstractTestCase extends TestCase
{
/**
* Get the service provider class.
*
* @param \Illuminate\Contracts\Foundation\Application $app
*
* @return array<string>
*/
protected function getPackageProviders($app): array
{
return [
TelebugsServiceProvider::class,
];
}
}
59 changes: 59 additions & 0 deletions tests/Middleware/IgnoreDevEnvTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?php

declare(strict_types=1);

namespace Telebugs\TelebugsLaravel\Tests;

use PHPUnit\Framework\TestCase;
use Telebugs\TelebugsLaravel\Middleware\IgnoreDevEnv;
use Telebugs\Report;

class IgnoreDevEnvTest extends TestCase
{
public function testIgnoreDevEnvIgnoresLocalEnvironment(): void
{
$report = $this->createMock(Report::class);

$middleware = new IgnoreDevEnv("local");
$middleware($report);

$this->assertTrue($report->ignored);
}

public function testIgnoreDevEnvIgnoresTestingEnvironment(): void
{
$report = $this->createMock(Report::class);

$middleware = new IgnoreDevEnv("testing");
$middleware($report);

$this->assertTrue($report->ignored);
}

public function testIgnoreDevEnvDoesNotIgnoreProductionEnvironment(): void
{
$report = $this->createMock(Report::class);

$middleware = new IgnoreDevEnv("production");
$middleware($report);

$this->assertFalse($report->ignored);
}

public function testIgnoreDevEnvDoesNotIgnoreStagingEnvironment(): void
{
$report = $this->createMock(Report::class);

$middleware = new IgnoreDevEnv("staging");
$middleware($report);

$this->assertFalse($report->ignored);
}

public function testWeight(): void
{
$middleware = new IgnoreDevEnv("local");

$this->assertSame(-1000, $middleware->getWeight());
}
}
31 changes: 31 additions & 0 deletions tests/Middleware/ReporterInfoTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php

declare(strict_types=1);

namespace Telebugs\TelebugsLaravel\Tests;

use PHPUnit\Framework\TestCase;
use Telebugs\TelebugsLaravel\Middleware\ReporterInfo;
use Telebugs\Report;

class ReporterInfoTest extends TestCase
{
public function testReporterInfoAddsReporterInfo(): void
{
$laravelVersion = "1.2.3";
$report = $this->createMock(Report::class);

$middleware = new ReporterInfo($laravelVersion);
$middleware($report);

$laravelReporter = $report->data["reporters"][0];

$this->assertSame("telebugs-laravel", $laravelReporter["library"]["name"]);
$this->assertSame(
\Telebugs\TelebugsLaravel\TelebugsLaravel::VERSION,
$laravelReporter["library"]["version"]
);
$this->assertSame("Laravel", $laravelReporter["platform"]["name"]);
$this->assertSame($laravelVersion, $laravelReporter["platform"]["version"]);
}
}
31 changes: 31 additions & 0 deletions tests/TelebugsServiceProviderTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php

declare(strict_types=1);

namespace Telebugs\TelebugsLaravel\Tests;

use Illuminate\Support\ServiceProvider;
use Telebugs\Reporter;
use Telebugs\Config;

use Telebugs\TelebugsLaravel\TelebugsServiceProvider;

class TelebugsServiceProviderTest extends AbstractTestCase
{
public function testServiceProviderRegisters()
{
$serviceProvider = $this->app->getProvider(TelebugsServiceProvider::class);
$this->assertInstanceOf(ServiceProvider::class, $serviceProvider);
}

public function testServiceProviderBoots()
{
$this->assertTrue($this->app->bound('telebugs'));
}

public function testReporterInfoMiddlewareIsAttached()
{
$this->assertInstanceOf(Reporter::class, $this->app['telebugs']);
$this->assertEquals(4, count(Config::getInstance()->middleware()->getMiddlewares()));
}
}