ServidorMotivoAfastamentoWebTest.class.php
1.99 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
<?php
/**
* ServidorMotivoAfastamentoWebTest class.
*
* Testa as ações de atualizar e apagar um motivo de afastamento, como
* verificação da correção do bug #20.
*
* Esse teste precisa ser executado com o banco de dados distribuído na
* versão 1.0.0.
*
* @author Eriksen Costa <eriksen.paixao_bs@cobra.com.br>
* @since 1.0.1
* @version SVN: $Id$
*/
require_once realpath(dirname(__FILE__) . '/../') . '/FunctionalBaseTest.class.php';
class ServidorMotivoAfastamentoWebTest extends FunctionalBaseTest {
/**
* Os testes a seguir cobrem o bug report #20.
*
* @link http://svn.softwarepublico.gov.br/trac/ieducar/ticket/20 Bug report #20
* @{
*/
public function createNewEntry() {
$this->open("/intranet/educar_motivo_afastamento_lst.php");
$this->clickAndWait("//input[@value=' Novo ']");
$this->select("ref_cod_instituicao", "label=COBRA Tecnologia");
$this->type("nm_motivo", "Motivo teste");
$this->clickAndWait("btn_enviar");
}
public function testMotivoAfastamentoUpdate() {
$this->doLogin();
$this->createNewEntry();
$this->open("/intranet/educar_motivo_afastamento_cad.php?cod_motivo_afastamento=1");
$this->select("ref_cod_instituicao", "label=COBRA Tecnologia");
$this->type("nm_motivo", "Motivo teste");
$this->clickAndWait("btn_enviar");
$statusMessage = $this->isTextPresent("Edição não realizada.");
$this->assertTrue(!$statusMessage);
$this->doLogout();
}
public function testMotivoAfastamentoDelete() {
$this->doLogin();
$this->open("/intranet/educar_motivo_afastamento_lst.php");
$this->clickAndWait("link=Motivo teste");
$this->clickAndWait("//input[@value=' Editar ']");
$this->clickAndWait("//input[@value=' Excluir ']");
$this->assertTrue((bool)preg_match('/^Excluir registro[\s\S]$/',$this->getConfirmation()));
$statusMessage = $this->isTextPresent("Exclusão não realizada.");
$this->assertTrue(!$statusMessage);
$this->doLogout();
}
/**
* }@
*/
}