63 lines
2.4 KiB
PHP
63 lines
2.4 KiB
PHP
<?php
|
|
include dirname(__FILE__, 5) . '/test/lib/ui.php';
|
|
class manageProductsTester extends tester
|
|
{
|
|
/**
|
|
* 检查选择产品不能为空。
|
|
* Check selected products cannot be empty.
|
|
*
|
|
* @param array $project
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function linkNoProducts($project)
|
|
{
|
|
$form = $this->initForm('project', 'manageproducts', array('project' => 11), 'appIframe-project');
|
|
$form->dom->linkBtn->click(); //点击关联其他产品
|
|
$form->dom->btn($this->lang->save)->click();
|
|
$form->wait(1);
|
|
if($form->dom->alertModal('text') === '『产品』不能为空。') return $this->success('关联其他产品必填提示信息正确');
|
|
return $this->failed('关联其他产品必填提示信息不正确');
|
|
}
|
|
/**
|
|
* 关联产品。
|
|
* Link Products.
|
|
*
|
|
* @param array $project
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function linkProducts($project)
|
|
{
|
|
$form = $this->initForm('project', 'manageproducts', array('project' => 11), 'appIframe-project');
|
|
$form->dom->linkBtn->click(); //点击关联其他产品
|
|
if(isset($project['otherProducts'])) $form->dom->{'otherProducts[]'}->multiPicker($project['otherProducts']);
|
|
$form->dom->btn($this->lang->save)->click();
|
|
|
|
//跳转到项目概况页检查已关联产品
|
|
$form = $this->initForm('project', 'view', array('project' => 11), 'appIframe-project');
|
|
if($form->dom->linkedProduct->getText() != $project['otherProducts']['multiPicker']) return $this->failed('关联产品失败');
|
|
return $this->success('关联产品成功');
|
|
}
|
|
/**
|
|
* 取消关联产品。
|
|
* Unlink Product.
|
|
*
|
|
* @param array $project
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function unlinkProducts($project)
|
|
{
|
|
$form = $this->initForm('project', 'manageproducts', array('project' => 11), 'appIframe-project');
|
|
$form->dom->checkbox->click(); //取消勾选已关联产品
|
|
$form->wait(1);
|
|
$form->dom->saveBtn->click();
|
|
|
|
//跳转到项目概况页检查取消关联产品
|
|
$form = $this->initForm('project', 'view', array('project' => 11), 'appIframe-project');
|
|
if($form->dom->linkedProduct === false) return $this->success('取消关联产品成功');
|
|
return $this->failed('取消关联产品失败');
|
|
}
|
|
}
|