dbudwin/RoboHome-Web

View on GitHub

Showing 76 of 76 total issues

DevicesControllerTest has 32 functions (exceeds 20 allowed). Consider refactoring.
Open

class DevicesControllerTest extends DevicesControllerTestCase
{
public function testDevices_GivenUserNotLoggedIn_RedirectToLogin(): void
{
$response = $this->get('/devices');
Severity: Minor
Found in tests/Unit/Controller/Web/DevicesControllerTest.php - About 4 hrs to fix

    The class DevicesTest has 13 public methods. Consider refactoring DevicesTest to keep number of public methods under 10.
    Open

    class DevicesTest extends DuskTestCase
    {
    private $user;
     
    public function setUp(): void
    Severity: Minor
    Found in tests/Browser/DevicesTest.php by phpmd

    The class DeviceRepositoryTest has 12 public methods. Consider refactoring DeviceRepositoryTest to keep number of public methods under 10.
    Open

    class DeviceRepositoryTest extends RepositoryTestCaseWithRealDatabase
    {
    private $deviceRepository;
     
    public function setUp(): void

    The class DevicesControllerTest has 20 public methods. Consider refactoring DevicesControllerTest to keep number of public methods under 10.
    Open

    class DevicesControllerTest extends DevicesControllerTestCase
    {
    public function testDevices_GivenUserNotLoggedIn_RedirectToLogin(): void
    {
    $response = $this->get('/devices');

    The class DevicesControllerTest has 32 non-getter- and setter-methods. Consider refactoring DevicesControllerTest to keep number of methods under 25.
    Open

    class DevicesControllerTest extends DevicesControllerTestCase
    {
    public function testDevices_GivenUserNotLoggedIn_RedirectToLogin(): void
    {
    $response = $this->get('/devices');

    File DevicesControllerTest.php has 291 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
     
    namespace Tests\Unit\Controller\Web;
     
    use App\Device;
    Severity: Minor
    Found in tests/Unit/Controller/Web/DevicesControllerTest.php - About 3 hrs to fix

      DevicesControllerTest has 22 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class DevicesControllerTest extends DevicesControllerTestCase
      {
      private $mockDeviceRepository;
      private $mockUser;
      private $messageId;
      Severity: Minor
      Found in tests/Unit/Controller/API/DevicesControllerTest.php - About 2 hrs to fix

        Avoid excessively long variable names like $htmlDataAttributesForSpecificDeviceProperties. Keep variable name length under 35.
        Open

        $htmlDataAttributesForSpecificDeviceProperties = [];
        Severity: Minor
        Found in app/Device.php by phpmd

        Method testDevices_GivenUserLoggedIn_EditsDevice_DevicesUpdatedOnPage has 30 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        public function testDevices_GivenUserLoggedIn_EditsDevice_DevicesUpdatedOnPage(): void
        {
        $this->browse(function (Browser $browser) {
        $deviceName = self::$faker->word();
        $deviceDescription = self::$faker->sentence();
        Severity: Minor
        Found in tests/Browser/DevicesTest.php - About 1 hr to fix

          Method testDevices_GivenUserLoggedIn_ClicksEditDeviceButton_OpensEditDeviceModal has 26 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          public function testDevices_GivenUserLoggedIn_ClicksEditDeviceButton_OpensEditDeviceModal(): void
          {
          $this->browse(function (Browser $browser) {
          $deviceName = self::$faker->word();
          $deviceDescription = self::$faker->sentence();
          Severity: Minor
          Found in tests/Browser/DevicesTest.php - About 1 hr to fix

            Each class must be in a namespace of at least one level (a top-level vendor name)
            Open

            class DatabaseSeeder extends Seeder

            A file should declare new symbols (classes, functions, constants, etc.) and cause no other side effects, or it should execute logic with side effects, but should not do both. The first symbol is defined on line 10 and the first side effect is on line 24.
            Open

            <?php
            Severity: Minor
            Found in public/index.php by phpcodesniffer

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

            $mockDeviceRepository
            ->shouldReceive('name')->once()->with($deviceId)
            ->shouldReceive('getForPublicId')->with(Mockery::on(function (Uuid $argument) use ($publicDeviceId) {
            return $argument instanceof Uuid && $argument == Uuid::import($publicDeviceId);
            }))->once()->andReturn($device)
            Severity: Minor
            Found in tests/Unit/Controller/Web/DevicesControllerTest.php and 1 other location - About 45 mins to fix
            tests/Unit/Controller/Web/DevicesControllerTest.php on lines 269..274

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

            $mockDeviceRepository
            ->shouldReceive('name')->never()->with($deviceId)
            ->shouldReceive('getForPublicId')->with(Mockery::on(function (Uuid $argument) use ($publicDeviceId) {
            return $argument instanceof Uuid && $argument == Uuid::import($publicDeviceId);
            }))->once()->andReturn($device)
            Severity: Minor
            Found in tests/Unit/Controller/Web/DevicesControllerTest.php and 1 other location - About 45 mins to fix
            tests/Unit/Controller/Web/DevicesControllerTest.php on lines 290..295

            Method loginAndAddDevice has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            private function loginAndAddDevice(Browser $browser, string $deviceName, string $deviceDescription, int $onCode, int $offCode, int $pulseLength) : Browser
            Severity: Minor
            Found in tests/Browser/DevicesTest.php - About 45 mins to fix

              Each class must be in a file by itself
              Open

              class FakeDeviceModel extends Model

              Missing class import via use statement (line '86', column '33').
              Open

              $deviceTypesClass = new \ReflectionClass(DeviceTypes::class);
              Severity: Minor
              Found in tests/Unit/Model/DeviceTest.php by phpmd

              The method callDeleteOnDeviceUserOwns has a boolean flag argument $wasDeleteSuccessful, which is a certain sign of a Single Responsibility Principle violation.
              Open

              private function callDeleteOnDeviceUserOwns(bool $wasDeleteSuccessful = true): TestResponse

              The method createDevice has a boolean flag argument $isOwnedByUser, which is a certain sign of a Single Responsibility Principle violation.
              Open

              private function createDevice(bool $isOwnedByUser = true): Device

              The method mockMessagePublisher has a boolean flag argument $messagePublishedSuccessfully, which is a certain sign of a Single Responsibility Principle violation.
              Open

              protected function mockMessagePublisher(int $timesPublishIsCalled, bool $messagePublishedSuccessfully = true): void
              Severity
              Category
              Status
              Source
              Language