ServidorCategoriaNivelWebTest.php
2.82 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
<?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 FunctionalTests
* @since Arquivo disponível desde a versão 1.0.1
* @version $Id$
*/
require_once 'include/pmieducar/clsPmieducarCategoriaNivel.inc.php';
/**
* ServidorCategoriaNivelWebTest class.
*
* Testa as ações de atualizar um nível de categoria, como verificação
* da correção do bug #21.
*
* Esse teste precisa ser executado com o banco de dados distribuído na
* versão 1.0.0.
*
* @author Eriksen Costa Paixão <eriksen.paixao_bs@cobra.com.br>
* @category i-Educar
* @license @@license@@
* @link http://svn.softwarepublico.gov.br/trac/ieducar/ticket/21
* @package FunctionalTests
* @since Classe disponível desde a versão 1.0.1
* @version @@package_version@@
*/
class ServidorCategoriaNivelWebTest extends FunctionalBaseTest
{
private $slStringTest = 'Selenese Nivel Teste';
protected function tearDown()
{
$db = new clsBanco();
$categoriaNivel = new clsPmieducarCategoriaNivel();
$sql = sprintf('DELETE FROM %s WHERE %s = \'%s\'',
$categoriaNivel->_tabela, 'nm_categoria_nivel', $this->slStringTest);
$db->Consulta($sql);
}
private function createNewEntry()
{
$this->open("/intranet/educar_categoria_nivel_lst.php");
$this->clickAndWait("//input[@value=' Novo ']");
$this->type("nm_categoria_nivel", $this->slStringTest);
$this->clickAndWait("btn_enviar");
}
public function testCategoriaNivelDelete()
{
$this->doLogin();
$this->createNewEntry();
$this->clickAndWait("link=" . $this->slStringTest);
$this->clickAndWait("//input[@value=' Editar ']");
$this->clickAndWait("//input[@value=' Excluir ']");
$this->assertTrue((bool) preg_match('/^Excluir registro[\s\S]$/', $this->getConfirmation()));
$this->assertTrue(!$this->isTextPresent($this->slStringTest));
}
}