Skip to content

Commit

Permalink
Use PHP 8.4 in Docker environment and the remaining CI jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
phansys authored and andreakeesys committed Nov 25, 2024
1 parent e5aceb0 commit 2defea2
Show file tree
Hide file tree
Showing 7 changed files with 341 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .docker/php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG PHP_VERSION=8.2-cli
ARG PHP_VERSION=8.4-cli

FROM composer:2 AS composer

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "8.3"
php-version: "8.4"

- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v3"
Expand All @@ -28,6 +28,8 @@ jobs:

- name: "Run PHP-CS-Fixer"
run: "vendor/bin/php-cs-fixer fix --ansi --verbose --diff --dry-run"
env:
PHP_CS_FIXER_IGNORE_ENV: 1

rector:
name: "Rector"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ a release.

### Fixed
- Fix regression with `doctrine/dbal` >= 4.0 that caused MariaDB to improperly attempt LONGTEXT casting in `TranslationWalker` (issue #2887)
- Tree: allow usage of UuidV7 as path source with the materialized path strategy

## [3.17.1] - 2024-10-07
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
target: php
dockerfile: ./.docker/php/Dockerfile
args:
PHP_VERSION: ${PHP_VERSION:-8.3-cli}
PHP_VERSION: ${PHP_VERSION:-8.4-cli}
volumes:
- .:/var/www
working_dir: /var/www
Expand Down
1 change: 1 addition & 0 deletions src/Tree/Mapping/Validator.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ class Validator
'string',
'int',
'float',
'uuid',
];

/**
Expand Down
162 changes: 162 additions & 0 deletions tests/Gedmo/Tree/Fixture/MPCategoryUuid.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
<?php

declare(strict_types=1);

/*
* This file is part of the Doctrine Behavioral Extensions package.
* (c) Gediminas Morkevicius <[email protected]> http://www.gediminasm.org
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Gedmo\Tests\Tree\Fixture;

use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
use Gedmo\Tree\Entity\Repository\MaterializedPathRepository;
use Symfony\Bridge\Doctrine\Types\UuidType;
use Symfony\Component\Uid\UuidV4;

/**
* @ORM\Entity(repositoryClass="Gedmo\Tree\Entity\Repository\MaterializedPathRepository")
*
* @Gedmo\Tree(type="materializedPath")
*/
#[ORM\Entity(repositoryClass: MaterializedPathRepository::class)]
#[Gedmo\Tree(type: 'materializedPath')]
class MPCategoryUuid
{
/**
* @var UuidV4
*
* @Gedmo\TreePathSource
*
* @ORM\Id
* @ORM\Column(type="uuid")
*/
#[ORM\Id]
#[ORM\Column(type: UuidType::NAME)]
#[Gedmo\TreePathSource]
private UuidV4 $id;

/**
* @Gedmo\TreePath
*
* @ORM\Column(name="path", type="string", length=3000, nullable=true)
*/
#[ORM\Column(name: 'path', type: Types::STRING, length: 3000, nullable: true)]
#[Gedmo\TreePath]
private ?string $path = null;

/**
* @ORM\Column(name="title", type="string", length=64)
*/
#[ORM\Column(name: 'title', type: Types::STRING, length: 64)]
private ?string $title = null;

/**
* @Gedmo\TreeParent
*
* @ORM\ManyToOne(targetEntity="MPCategory", inversedBy="children")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="parent_id", referencedColumnName="id", onDelete="CASCADE")
* })
*/
#[ORM\ManyToOne(targetEntity: self::class, inversedBy: 'children')]
#[ORM\JoinColumn(name: 'parent_id', referencedColumnName: 'id', onDelete: 'CASCADE')]
#[Gedmo\TreeParent]
private ?MPCategoryUuid $parentId = null;

/**
* @var int|null
*
* @Gedmo\TreeLevel
*
* @ORM\Column(name="lvl", type="integer", nullable=true)
*/
#[ORM\Column(name: 'lvl', type: Types::INTEGER, nullable: true)]
#[Gedmo\TreeLevel]
private $level;

/**
* @var string|null
*
* @Gedmo\TreeRoot
*
* @ORM\Column(name="tree_root_value", type="string", nullable=true)
*/
#[ORM\Column(name: 'tree_root_value', type: Types::STRING, nullable: true)]
#[Gedmo\TreeRoot]
private $treeRootValue;

/**
* @var Collection<int, self>
*
* @ORM\OneToMany(targetEntity="MPCategory", mappedBy="parent")
*/
#[ORM\OneToMany(targetEntity: self::class, mappedBy: 'parent')]
private Collection $children;

/**
* @var Collection<int, Article>
*
* @ORM\OneToMany(targetEntity="Article", mappedBy="category")
*/
#[ORM\OneToMany(targetEntity: Article::class, mappedBy: 'category')]
private Collection $comments;

public function __construct()
{
$this->id = new UuidV4();
$this->children = new ArrayCollection();
$this->comments = new ArrayCollection();
}

public function getId(): ?UuidV4
{
return $this->id;
}

public function getTitle(): ?string
{
return $this->title;
}

public function setTitle(?string $title): void
{
$this->title = $title;
}

public function setParent(?self $parent = null): void
{
$this->parentId = $parent;
}

public function getParent(): ?self
{
return $this->parentId;
}

public function getPath(): ?string
{
return $this->path;
}

public function setPath(?string $path): void
{
$this->path = $path;
}

public function getLevel(): ?int
{
return $this->level;
}

public function getTreeRootValue(): ?string
{
return $this->treeRootValue;
}
}
172 changes: 172 additions & 0 deletions tests/Gedmo/Tree/MaterializedPathUuidORMTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
<?php

declare(strict_types=1);

/*
* This file is part of the Doctrine Behavioral Extensions package.
* (c) Gediminas Morkevicius <[email protected]> http://www.gediminasm.org
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Gedmo\Tests\Tree;

use Doctrine\Common\EventManager;
use Gedmo\Tests\Tool\BaseTestCaseORM;
use Gedmo\Tests\Tree\Fixture\MPCategoryUuid;
use Gedmo\Tree\TreeListener;
use Symfony\Component\Uid\UuidV4;

/**
* These are tests for Tree behavior when using Uuid as primary key and TreePathSource.
*
* @author Gustavo Falco <[email protected]>
* @author Gediminas Morkevicius <[email protected]>
* @author Andrea Bergamasco <[email protected]>
*/
final class MaterializedPathUuidORMTest extends BaseTestCaseORM
{
/**
* @var array<string, mixed>
*/
protected $config;

/**
* @var TreeListener
*/
protected $listener;

protected function setUp(): void
{
parent::setUp();

$this->listener = new TreeListener();

$evm = new EventManager();
$evm->addEventSubscriber($this->listener);

$this->getDefaultMockSqliteEntityManager($evm);

$meta = $this->em->getClassMetadata(MPCategoryUuid::class);
$this->config = $this->listener->getConfiguration($this->em, $meta->getName());
}

public function testInsertUpdateAndRemove(): void
{
// Insert
$category = $this->createCategory();
$category->setTitle('1');
static::assertNotNull($category->getId());
$category2 = $this->createCategory();
$category2->setTitle('2');
static::assertNotNull($category2->getId());
$category3 = $this->createCategory();
$category3->setTitle('3');
static::assertNotNull($category3->getId());
$category4 = $this->createCategory();
$category4->setTitle('4');
static::assertNotNull($category4->getId());

$category2->setParent($category);
$category3->setParent($category2);

$this->em->persist($category4);
$this->em->persist($category3);
$this->em->persist($category2);
$this->em->persist($category);
$this->em->flush();

$this->em->refresh($category);
$this->em->refresh($category2);
$this->em->refresh($category3);
$this->em->refresh($category4);

static::assertSame($this->generatePath([$category->getId()]), $category->getPath());
static::assertSame($this->generatePath([$category->getId(), $category2->getId()]), $category2->getPath());
static::assertSame($this->generatePath([$category->getId(), $category2->getId(), $category3->getId()]), $category3->getPath());
static::assertSame($this->generatePath([$category4->getId()]), $category4->getPath());
static::assertSame(1, $category->getLevel());
static::assertSame(2, $category2->getLevel());
static::assertSame(3, $category3->getLevel());
static::assertSame(1, $category4->getLevel());

static::assertSame($this->getTreeRootValueOfRootNode($category), $category->getTreeRootValue());
static::assertSame($this->getTreeRootValueOfRootNode($category2), $category2->getTreeRootValue());
static::assertSame($this->getTreeRootValueOfRootNode($category3), $category3->getTreeRootValue());
static::assertSame($this->getTreeRootValueOfRootNode($category4), $category4->getTreeRootValue());

// Update
$category2->setParent(null);

$this->em->persist($category2);
$this->em->flush();

$this->em->refresh($category);
$this->em->refresh($category2);
$this->em->refresh($category3);

static::assertSame($this->generatePath([$category->getId()]), $category->getPath());
static::assertSame($this->generatePath([$category2->getId()]), $category2->getPath());
static::assertSame($this->generatePath([$category2->getId(), $category3->getId()]), $category3->getPath());
static::assertSame(1, $category->getLevel());
static::assertSame(1, $category2->getLevel());
static::assertSame(2, $category3->getLevel());
static::assertSame(1, $category4->getLevel());

static::assertSame($this->getTreeRootValueOfRootNode($category), $category->getTreeRootValue());
static::assertSame($this->getTreeRootValueOfRootNode($category2), $category2->getTreeRootValue());
static::assertSame($this->getTreeRootValueOfRootNode($category3), $category3->getTreeRootValue());
static::assertSame($this->getTreeRootValueOfRootNode($category4), $category4->getTreeRootValue());

// Remove
$this->em->remove($category);
$this->em->remove($category2);
$this->em->flush();

$result = $this->em->createQueryBuilder()->select('c')->from(MPCategoryUuid::class, 'c')->getQuery()->getResult();

$firstResult = $result[0];

static::assertCount(1, $result);
static::assertSame('4', $firstResult->getTitle());
static::assertSame(1, $firstResult->getLevel());
static::assertSame($this->getTreeRootValueOfRootNode($firstResult), $firstResult->getTreeRootValue());
}

protected function getUsedEntityFixtures(): array
{
return [
MPCategoryUuid::class,
];
}

private function createCategory(): MPCategoryUuid
{
$class = MPCategoryUuid::class;

return new $class();
}

/**
* @param array<int|string, int|string|UuidV4|null> $sources
*/
private function generatePath(array $sources): string
{
$path = '';

foreach ($sources as $id) {
$path .= $id.$this->config['path_separator'];
}

return $path;
}

private function getTreeRootValueOfRootNode(MPCategoryUuid $category): string
{
while (null !== $category->getParent()) {
$category = $category->getParent();
}

return $category->getTreeRootValue();
}
}

0 comments on commit 2defea2

Please sign in to comment.