-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathGH12017ChangeSetTest.php
More file actions
125 lines (99 loc) · 3.68 KB
/
Copy pathGH12017ChangeSetTest.php
File metadata and controls
125 lines (99 loc) · 3.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use DateTimeImmutable;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Tests\OrmFunctionalTestCase;
class GH12017ChangeSetTest extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->createSchemaForModels(GH12017ChangeSetNonUpdatableEntity::class, GH12017ChangeSetNonInsertableEntity::class);
}
public function testNonInsertableFieldShouldNotAppearInChangeSetOnInsert(): void
{
$entity = new GH12017ChangeSetNonInsertableEntity();
$this->_em->persist($entity);
$uow = $this->_em->getUnitOfWork();
$uow->computeChangeSets();
$changeSet = $uow->getEntityChangeSet($entity);
self::assertArrayHasKey('other', $changeSet);
self::assertArrayNotHasKey('tested', $changeSet, 'non-insertable field should not appear in change set on insert');
}
public function testNonInsertableFieldShouldAppearInChangeSetOnUpdate(): void
{
$entity = new GH12017ChangeSetNonInsertableEntity();
$this->_em->persist($entity);
$this->_em->flush();
$entity->tested = new DateTimeImmutable();
$entity->other = 1;
$uow = $this->_em->getUnitOfWork();
$uow->computeChangeSets();
$changeSet = $uow->getEntityChangeSet($entity);
self::assertArrayHasKey('other', $changeSet);
self::assertArrayHasKey('tested', $changeSet, 'Non-insertable field should still appear in change set on update');
}
public function testNonUpdatableFieldShouldAppearInChangeSetOnInsert(): void
{
$entity = new GH12017ChangeSetNonUpdatableEntity();
$this->_em->persist($entity);
$uow = $this->_em->getUnitOfWork();
$uow->computeChangeSets();
$changeSet = $uow->getEntityChangeSet($entity);
self::assertArrayHasKey('other', $changeSet);
self::assertArrayHasKey('tested', $changeSet, 'Non-updatable field should still appear in change set on insert');
}
public function testNonUpdatableFieldShouldNotAppearInChangeSetOnUpdate(): void
{
$entity = new GH12017ChangeSetNonUpdatableEntity();
$this->_em->persist($entity);
$this->_em->flush();
$entity->tested = new DateTimeImmutable();
$entity->other = 1;
$uow = $this->_em->getUnitOfWork();
$uow->computeChangeSets();
$changeSet = $uow->getEntityChangeSet($entity);
self::assertArrayHasKey('other', $changeSet);
self::assertArrayNotHasKey('tested', $changeSet, 'Non-updatable field should not appear in change set on update');
}
}
#[ORM\Entity]
#[ORM\Table(name: 'gh12017_changeset_non_insertable')]
class GH12017ChangeSetNonInsertableEntity
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
public int|null $id = null;
#[ORM\Column(
type: Types::DATETIME_IMMUTABLE,
nullable: true,
insertable: false,
updatable: true,
options: ['default' => 'CURRENT_TIMESTAMP'],
)]
public DateTimeImmutable|null $tested = null;
#[ORM\Column(type: Types::INTEGER)]
public int $other = 0;
}
#[ORM\Entity]
#[ORM\Table(name: 'gh12017_changeset_non_updatable')]
class GH12017ChangeSetNonUpdatableEntity
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
public int|null $id = null;
#[ORM\Column(
type: Types::DATETIME_IMMUTABLE,
nullable: true,
insertable: true,
updatable: false,
options: ['default' => 'CURRENT_TIMESTAMP'],
)]
public DateTimeImmutable|null $tested = null;
#[ORM\Column(type: Types::INTEGER)]
public int $other = 0;
}