LazyLoadIntegrationTest.php
5.88 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php
/**
* i-Educar - Sistema de gestão escolar
*
* Copyright (C) 2006 Prefeitura Municipal de Itajaí
* <ctima@itajai.sc.gov.br>
*
* Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo
* sob os termos da Licença Pública Geral GNU conforme publicada pela Free
* Software Foundation; tanto a versão 2 da Licença, como (a seu critério)
* qualquer versão posterior.
*
* Este programa é distribuído na expectativa de que seja útil, porém, SEM
* NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU
* ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral
* do GNU para mais detalhes.
*
* Você deve ter recebido uma cópia da Licença Pública Geral do GNU junto
* com este programa; se não, escreva para a Free Software Foundation, Inc., no
* endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
*
* @author Eriksen Costa Paixão <eriksen.paixao_bs@cobra.com.br>
* @category i-Educar
* @license @@license@@
* @package CoreExt_DataMapper
* @subpackage IntegrationTests
* @since Arquivo disponível desde a versão 1.1.0
* @version $Id$
*/
require_once 'CoreExt/_stub/ParentEntityDataMapper.php';
require_once 'CoreExt/_stub/ChildEntityDataMapper.php';
/**
* CoreExt_DataMapper_LazyLoadIntegrationTest class.
*
* @author Eriksen Costa Paixão <eriksen.paixao_bs@cobra.com.br>
* @category i-Educar
* @license @@license@@
* @package CoreExt_DataMapper
* @subpackage IntegrationTests
* @since Classe disponível desde a versão 1.1.0
* @version @@package_version@@
*/
class CoreExt_DataMapper_LazyLoadIntegrationTest extends IntegrationBaseTest
{
/**
* Cria as tabelas parent e child.
*/
public function __construct()
{
parent::__construct();
CoreExt_DataMapper::setDefaultDbAdapter($this->getDbAdapter());
CoreExt_ParentEntityDataMapperStub::createTable($this->getDbAdapter());
CoreExt_ChildEntityDataMapperStub::createTable($this->getDbAdapter());
}
public function setUp()
{
parent::setUp();
CoreExt_DataMapper::setDefaultDbAdapter($this->getDbAdapter());
}
public function getDataSet()
{
return $this->createXMLDataSet($this->getFixture('parent-child.xml'));
}
public function testRecuperaTodosOsRegistros()
{
$mapper = new CoreExt_ParentEntityDataMapperStub();
$found = $mapper->findAll();
$this->assertTablesEqual(
$this->getDataSet()
->getTable('parent'),
$this->getConnection()
->createDataSet()
->getTable('parent')
);
$this->assertTablesEqual(
$this->getDataSet()
->getTable('child'),
$this->getConnection()
->createDataSet()
->getTable('child')
);
}
public function testLazyLoadUsandoDefinicaoDeDataMapper()
{
$definition = array(
'class' => 'CoreExt_ChildEntityDataMapperStub',
'file' => 'CoreExt/_stub/ChildEntityDataMapper.php'
);
$parentMapper = new CoreExt_ParentEntityDataMapperStub();
$parent = $parentMapper->find(1);
$parent->setReference('filho', $definition);
$this->assertEquals(1, $parent->filho->id);
$this->assertEquals('Antunes Jr.', $parent->filho->nome);
}
/**
* Uma referência NULL para CoreExt_Enum retorna NULL logo no início da
* lógica de CoreExt_Entity::_loadReference().
* @group CoreExt_Entity
*/
public function testLazyLoadUsandoDefinicaoDeEnumComReferenciaNula()
{
$child = new CoreExt_ChildEntityStub(
array('id' => 3, 'sexo' => 1, 'tipoSanguineo' => NULL)
);
$this->assertNull($child->tipoSanguineo);
}
/**
* Referência 0 é perfeitamente válido para um CoreExt_Enum. Se não existir o
* offset no Enum, retorna NULL
* @group CoreExt_Entity
*/
public function testLazyLoadUsandoDefinicaoDeEnumComReferenciaZero()
{
$child = new CoreExt_ChildEntityStub(
array('id' => 3, 'sexo' => 1, 'tipoSanguineo' => 0)
);
$this->assertNull($child->tipoSanguineo);
}
/**
* Uma referência NULL é válida para as referências que explicitam a chave
* null = TRUE.
* @group CoreExt_Entity
*/
public function testLazyLoadUsandoDefinicaoDeDataMapperComReferenciaNula()
{
$parent = new CoreExt_ParentEntityStub(
array('id' => 3, 'nome' => 'Paul M.', 'filho' => NULL)
);
$this->assertNull($parent->filho);
}
/**
* Referência 0 em DataMapper força o retorno de NULL. Isso é feito em
* razão do HTML não suportar um valor NULL e por conta dos validadores
* client-side legados do i-Educar não considerarem "" (string vazia) um
* valor válido para submit.
* @group CoreExt_Entity
*/
public function testLazyLoadUsandoDefinicaoDeDataMapperComReferenciaZero()
{
$parent = new CoreExt_ParentEntityStub(
array('id' => 3, 'nome' => 'Paul M.', 'filho' => 0)
);
$this->assertNull($parent->filho);
}
public function testInsereRegistros()
{
$child = new CoreExt_ChildEntityStub(array('nome' => 'Nascimento Jr.'));
$childMapper = new CoreExt_ChildEntityDataMapperStub();
$childMapper->save($child);
$parent = new CoreExt_ParentEntityStub(array('nome' => 'Fernando Nascimento', 'filho' => 3));
$parentMapper = new CoreExt_ParentEntityDataMapperStub();
$parentMapper->save($parent);
$parent = $parentMapper->find(3);
$child = $childMapper->find(3);
$this->assertEquals($child, $parent->filho);
}
/**
* Testa se um CoreExt_Entity retornado por um CoreExt_DataMapper configura
* a reference e o atributo, com um valor referência e a instância,
* respectivamente.
* @group Overload
*/
public function testRegistroRecuperadoConfiguraReferenceParaLazyLoadPosterior()
{
$parentMapper = new CoreExt_ParentEntityDataMapperStub();
$parent = $parentMapper->find(1);
$this->assertEquals(1, $parent->get('filho'));
$this->assertType('CoreExt_ChildEntityStub', $parent->filho);
}
}