Skip to content
Snippets Groups Projects
Commit fda78118 authored by Chris Wells's avatar Chris Wells
Browse files

Issue #3476717 by chrisfromredfin, guptahemant: Tests failing PHP CS

parent 6cb4b7d7
No related branches found
No related tags found
1 merge request!582use phpcbf to autofix phpcs errors
Pipeline #292355 failed
...@@ -4,6 +4,9 @@ namespace Drupal\Tests\project_browser\Functional; ...@@ -4,6 +4,9 @@ namespace Drupal\Tests\project_browser\Functional;
use Drupal\Component\Serialization\Json; use Drupal\Component\Serialization\Json;
use Drupal\Core\Url; use Drupal\Core\Url;
use Drupal\Tests\ApiRequestTrait;
use Drupal\Tests\BrowserTestBase;
use Drupal\Tests\project_browser\Traits\PackageManagerFixtureUtilityTrait;
use Drupal\package_manager\Event\PostApplyEvent; use Drupal\package_manager\Event\PostApplyEvent;
use Drupal\package_manager\Event\PostCreateEvent; use Drupal\package_manager\Event\PostCreateEvent;
use Drupal\package_manager\Event\PostRequireEvent; use Drupal\package_manager\Event\PostRequireEvent;
...@@ -15,9 +18,6 @@ use Drupal\package_manager_test_validation\EventSubscriber\TestSubscriber; ...@@ -15,9 +18,6 @@ use Drupal\package_manager_test_validation\EventSubscriber\TestSubscriber;
use Drupal\project_browser\ComposerInstaller\Installer; use Drupal\project_browser\ComposerInstaller\Installer;
use Drupal\project_browser\EnabledSourceHandler; use Drupal\project_browser\EnabledSourceHandler;
use Drupal\project_browser_test\Datetime\TestTime; use Drupal\project_browser_test\Datetime\TestTime;
use Drupal\Tests\ApiRequestTrait;
use Drupal\Tests\BrowserTestBase;
use Drupal\Tests\project_browser\Traits\PackageManagerFixtureUtilityTrait;
use GuzzleHttp\RequestOptions; use GuzzleHttp\RequestOptions;
use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ResponseInterface;
......
...@@ -8,9 +8,9 @@ use Behat\Mink\Element\NodeElement; ...@@ -8,9 +8,9 @@ use Behat\Mink\Element\NodeElement;
use Drupal\Core\Recipe\Recipe; use Drupal\Core\Recipe\Recipe;
use Drupal\Core\State\StateInterface; use Drupal\Core\State\StateInterface;
use Drupal\FunctionalJavascriptTests\WebDriverTestBase; use Drupal\FunctionalJavascriptTests\WebDriverTestBase;
use Drupal\Tests\project_browser\Traits\PackageManagerFixtureUtilityTrait;
use Drupal\project_browser\EnabledSourceHandler; use Drupal\project_browser\EnabledSourceHandler;
use Drupal\system\SystemManager; use Drupal\system\SystemManager;
use Drupal\Tests\project_browser\Traits\PackageManagerFixtureUtilityTrait;
/** /**
* Provides tests for the Project Browser Installer UI. * Provides tests for the Project Browser Installer UI.
......
...@@ -2,11 +2,11 @@ ...@@ -2,11 +2,11 @@
namespace Drupal\Tests\project_browser\Kernel; namespace Drupal\Tests\project_browser\Kernel;
use Drupal\Tests\package_manager\Kernel\PackageManagerKernelTestBase;
use Drupal\fixture_manipulator\ActiveFixtureManipulator; use Drupal\fixture_manipulator\ActiveFixtureManipulator;
use Drupal\package_manager\Exception\StageEventException; use Drupal\package_manager\Exception\StageEventException;
use Drupal\package_manager\ValidationResult; use Drupal\package_manager\ValidationResult;
use Drupal\project_browser\ComposerInstaller\Installer; use Drupal\project_browser\ComposerInstaller\Installer;
use Drupal\Tests\package_manager\Kernel\PackageManagerKernelTestBase;
/** /**
* @covers \Drupal\project_browser\ComposerInstaller\Validator\CoreNotUpdatedValidator * @covers \Drupal\project_browser\ComposerInstaller\Validator\CoreNotUpdatedValidator
......
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
namespace Drupal\Tests\project_browser\Kernel; namespace Drupal\Tests\project_browser\Kernel;
use Drupal\Tests\package_manager\Kernel\PackageManagerKernelTestBase;
use Drupal\Tests\package_manager\Traits\ComposerStagerTestTrait;
use Drupal\Tests\user\Traits\UserCreationTrait;
use Drupal\fixture_manipulator\ActiveFixtureManipulator; use Drupal\fixture_manipulator\ActiveFixtureManipulator;
use Drupal\package_manager\Event\PreApplyEvent; use Drupal\package_manager\Event\PreApplyEvent;
use Drupal\package_manager\Exception\ApplyFailedException; use Drupal\package_manager\Exception\ApplyFailedException;
...@@ -11,9 +14,6 @@ use Drupal\package_manager\ValidationResult; ...@@ -11,9 +14,6 @@ use Drupal\package_manager\ValidationResult;
use Drupal\package_manager_bypass\LoggingCommitter; use Drupal\package_manager_bypass\LoggingCommitter;
use Drupal\package_manager_test_validation\EventSubscriber\TestSubscriber; use Drupal\package_manager_test_validation\EventSubscriber\TestSubscriber;
use Drupal\project_browser\ComposerInstaller\Installer; use Drupal\project_browser\ComposerInstaller\Installer;
use Drupal\Tests\package_manager\Kernel\PackageManagerKernelTestBase;
use Drupal\Tests\package_manager\Traits\ComposerStagerTestTrait;
use Drupal\Tests\user\Traits\UserCreationTrait;
use PhpTuf\ComposerStager\API\Exception\ExceptionInterface; use PhpTuf\ComposerStager\API\Exception\ExceptionInterface;
use PhpTuf\ComposerStager\API\Exception\InvalidArgumentException; use PhpTuf\ComposerStager\API\Exception\InvalidArgumentException;
...@@ -84,7 +84,7 @@ class InstallerTest extends PackageManagerKernelTestBase { ...@@ -84,7 +84,7 @@ class InstallerTest extends PackageManagerKernelTestBase {
* *
* @dataProvider providerCommitException * @dataProvider providerCommitException
*/ */
public function testCommitException(string $thrown_class, string $expected_class = NULL): void { public function testCommitException(string $thrown_class, ?string $expected_class = NULL): void {
$installer = $this->container->get(Installer::class); $installer = $this->container->get(Installer::class);
$installer->create(); $installer->create();
$installer->require(['org/package-name']); $installer->require(['org/package-name']);
......
...@@ -2,11 +2,11 @@ ...@@ -2,11 +2,11 @@
namespace Drupal\Tests\project_browser\Kernel; namespace Drupal\Tests\project_browser\Kernel;
use Drupal\Tests\package_manager\Kernel\PackageManagerKernelTestBase;
use Drupal\fixture_manipulator\ActiveFixtureManipulator; use Drupal\fixture_manipulator\ActiveFixtureManipulator;
use Drupal\package_manager\Exception\StageEventException; use Drupal\package_manager\Exception\StageEventException;
use Drupal\package_manager\ValidationResult; use Drupal\package_manager\ValidationResult;
use Drupal\project_browser\ComposerInstaller\Installer; use Drupal\project_browser\ComposerInstaller\Installer;
use Drupal\Tests\package_manager\Kernel\PackageManagerKernelTestBase;
/** /**
* @covers \Drupal\project_browser\ComposerInstaller\Validator\PackageNotInstalledValidator * @covers \Drupal\project_browser\ComposerInstaller\Validator\PackageNotInstalledValidator
......
...@@ -5,8 +5,8 @@ namespace Drupal\Tests\project_browser\Unit; ...@@ -5,8 +5,8 @@ namespace Drupal\Tests\project_browser\Unit;
use Drupal\Core\Cache\CacheBackendInterface; use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Database\Connection; use Drupal\Core\Database\Connection;
use Drupal\Core\Extension\ModuleHandlerInterface; use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\project_browser_test\Plugin\ProjectBrowserSource\ProjectBrowserTestMock;
use Drupal\Tests\UnitTestCase; use Drupal\Tests\UnitTestCase;
use Drupal\project_browser_test\Plugin\ProjectBrowserSource\ProjectBrowserTestMock;
use Psr\Log\LoggerInterface; use Psr\Log\LoggerInterface;
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment