ComponenteDataMapperTest.php
4.17 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
<?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 ComponenteCurricular
* @subpackage UnitTests
* @since Arquivo disponível desde a versão 1.1.0
* @version $Id$
*/
require_once 'ComponenteCurricular/Model/ComponenteDataMapper.php';
/**
* ComponenteDataMapperTest class.
*
* @author Eriksen Costa Paixão <eriksen.paixao_bs@cobra.com.br>
* @category i-Educar
* @license @@license@@
* @package ComponenteCurricular
* @subpackage UnitTests
* @since Classe disponível desde a versão 1.1.0
* @version @@package_version@@
*/
class ComponenteDataMapperTest extends UnitBaseTest
{
protected $_mapper = NULL;
protected function setUp()
{
$this->_mapper = new ComponenteCurricular_Model_ComponenteDataMapper();
}
public function testGetterDeAreaDataMapperInstanciaObjetoPorPadraoSeNenhumForConfigurado()
{
$this->assertType('AreaConhecimento_Model_AreaDataMapper', $this->_mapper->getAreaDataMapper());
}
public function testGetterDeAnoEscolarDataMapperInstanciaObjetoPorPadraoSeNenhumForConfigurado()
{
$this->assertType('ComponenteCurricular_Model_AnoEscolarDataMapper',
$this->_mapper->getAnoEscolarDataMapper());
}
public function testFindAreaConhecimento()
{
// Valores de retorno
$returnValue = array(new AreaConhecimento_Model_Area(array('id' => 1, 'nome' => 'Ciências exatas')));
// Mock para área de conhecimento
$mock = $this->getCleanMock('AreaConhecimento_Model_AreaDataMapper');
$mock->expects($this->once())
->method('findAll')
->will($this->returnValue($returnValue));
// Substitui o data mapper padrão pelo mock
$this->_mapper->setAreaDataMapper($mock);
$areas = $this->_mapper->findAreaConhecimento();
$this->assertEquals($returnValue, $areas);
}
public function testFindComponenteCurricularAnoEscolar()
{
// Valores de retorno
$returnValue = new ComponenteCurricular_Model_Componente(
array('id' => 1, 'nome' => 'Ciências exatas', 'cargaHoraria' => 100)
);
$returnAnoEscolar = new ComponenteCurricular_Model_AnoEscolar(array(
'componenteCurricular' => 1, 'anoEscolar' => 1, 'cargaHoraria' => 100
));
// Mock para Ano Escolar
$mock = $this->getCleanMock('ComponenteCurricular_Model_AnoEscolarDataMapper');
$mock->expects($this->once())
->method('find')
->with(array(1, 1))
->will($this->returnValue($returnAnoEscolar));
// Mock para Componente, exclui um método de ser mocked
$mapper = $this->setExcludedMethods(array('findComponenteCurricularAnoEscolar'))
->getCleanMock('ComponenteCurricular_Model_ComponenteDataMapper');
// O método find do mapper será chamado uma vez
$mapper->expects($this->once())
->method('find')
->with(1)
->will($this->returnValue($returnValue));
// Como um mock não mantém estado, força o retorno do mapper AnoEscolarDataMapper mocked
$mapper->expects($this->once())
->method('getAnoEscolarDataMapper')
->will($this->returnValue($mock));
// Chama o método
$componenteCurricular = $mapper->findComponenteCurricularAnoEscolar(1, 1);
$this->assertEquals($returnValue, $componenteCurricular);
}
}