forked from Wavyzz/dolibarr
code syntax
This commit is contained in:
@@ -30,9 +30,9 @@ require_once dirname(__FILE__).'/../../htdocs/master.inc.php';
|
||||
require_once dirname(__FILE__).'/../../htdocs/comm/action/class/actioncomm.class.php';
|
||||
|
||||
if (empty($user->id)) {
|
||||
print "Load permissions for admin user nb 1\n";
|
||||
$user->fetch(1);
|
||||
$user->getrights();
|
||||
print "Load permissions for admin user nb 1\n";
|
||||
$user->fetch(1);
|
||||
$user->getrights();
|
||||
}
|
||||
$conf->global->MAIN_DISABLE_ALL_MAILS=1;
|
||||
|
||||
@@ -46,210 +46,212 @@ $conf->global->MAIN_DISABLE_ALL_MAILS=1;
|
||||
*/
|
||||
class ActionCommTest extends PHPUnit\Framework\TestCase
|
||||
{
|
||||
protected $savconf;
|
||||
protected $savuser;
|
||||
protected $savlangs;
|
||||
protected $savdb;
|
||||
protected $savconf;
|
||||
protected $savuser;
|
||||
protected $savlangs;
|
||||
protected $savdb;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* We save global variables into local variables
|
||||
*
|
||||
* @return ActionCommTest
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
/**
|
||||
* Constructor
|
||||
* We save global variables into local variables
|
||||
*
|
||||
* @return ActionCommTest
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
//$this->sharedFixture
|
||||
global $conf,$user,$langs,$db;
|
||||
$this->savconf=$conf;
|
||||
$this->savuser=$user;
|
||||
$this->savlangs=$langs;
|
||||
$this->savdb=$db;
|
||||
//$this->sharedFixture
|
||||
global $conf,$user,$langs,$db;
|
||||
$this->savconf=$conf;
|
||||
$this->savuser=$user;
|
||||
$this->savlangs=$langs;
|
||||
$this->savdb=$db;
|
||||
|
||||
print __METHOD__." db->type=".$db->type." user->id=".$user->id;
|
||||
//print " - db ".$db->db;
|
||||
print "\n";
|
||||
}
|
||||
print __METHOD__." db->type=".$db->type." user->id=".$user->id;
|
||||
//print " - db ".$db->db;
|
||||
print "\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* setUpBeforeClass
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function setUpBeforeClass()
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$db->begin(); // This is to have all actions inside a transaction even if test launched without suite.
|
||||
/**
|
||||
* setUpBeforeClass
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function setUpBeforeClass()
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$db->begin(); // This is to have all actions inside a transaction even if test launched without suite.
|
||||
|
||||
if (empty($conf->agenda->enabled)) { print __METHOD__." module agenda must be enabled.\n"; die(); }
|
||||
if (empty($conf->agenda->enabled)) {
|
||||
print __METHOD__." module agenda must be enabled.\n"; die();
|
||||
}
|
||||
|
||||
print __METHOD__."\n";
|
||||
}
|
||||
print __METHOD__."\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* tearDownAfterClass
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function tearDownAfterClass()
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$db->rollback();
|
||||
/**
|
||||
* tearDownAfterClass
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function tearDownAfterClass()
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$db->rollback();
|
||||
|
||||
print __METHOD__."\n";
|
||||
}
|
||||
print __METHOD__."\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* Init phpunit tests
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function setUp()
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$conf=$this->savconf;
|
||||
$user=$this->savuser;
|
||||
$langs=$this->savlangs;
|
||||
$db=$this->savdb;
|
||||
/**
|
||||
* Init phpunit tests
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function setUp()
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$conf=$this->savconf;
|
||||
$user=$this->savuser;
|
||||
$langs=$this->savlangs;
|
||||
$db=$this->savdb;
|
||||
|
||||
print __METHOD__."\n";
|
||||
//print $db->getVersion()."\n";
|
||||
}
|
||||
print __METHOD__."\n";
|
||||
//print $db->getVersion()."\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* End phpunit tests
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function tearDown()
|
||||
{
|
||||
print __METHOD__."\n";
|
||||
}
|
||||
/**
|
||||
* End phpunit tests
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function tearDown()
|
||||
{
|
||||
print __METHOD__."\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* testActionCommCreate
|
||||
*
|
||||
* @return int Id of created object
|
||||
*/
|
||||
public function testActionCommCreate()
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$conf=$this->savconf;
|
||||
$user=$this->savuser;
|
||||
$langs=$this->savlangs;
|
||||
$db=$this->savdb;
|
||||
/**
|
||||
* testActionCommCreate
|
||||
*
|
||||
* @return int Id of created object
|
||||
*/
|
||||
public function testActionCommCreate()
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$conf=$this->savconf;
|
||||
$user=$this->savuser;
|
||||
$langs=$this->savlangs;
|
||||
$db=$this->savdb;
|
||||
|
||||
$now = dol_now();
|
||||
$now = dol_now();
|
||||
|
||||
$localobject=new ActionComm($this->savdb);
|
||||
$localobject=new ActionComm($this->savdb);
|
||||
|
||||
$localobject->type_code = 'AC_OTH_AUTO'; // Type of event ('AC_OTH', 'AC_OTH_AUTO', 'AC_XXX'...)
|
||||
$localobject->code = 'AC_PHPUNITTEST';
|
||||
$localobject->label = 'This is a description';
|
||||
$localobject->note_private = 'This is note';
|
||||
$localobject->fk_project = 0;
|
||||
$localobject->datep = $now;
|
||||
$localobject->datef = $now;
|
||||
$localobject->percentage = -1; // Not applicable
|
||||
$localobject->socid = 0;
|
||||
$localobject->contactid = 0;
|
||||
$localobject->authorid = $user->id; // User saving action
|
||||
$localobject->userownerid = $user->id; // Owner of action
|
||||
// Fields when action is en email (content should be added into note)
|
||||
/*$localobject->email_msgid = $object->email_msgid;
|
||||
$localobject->email_from = $object->email_from;
|
||||
$localobject->email_sender= $object->email_sender;
|
||||
$localobject->email_to = $object->email_to;
|
||||
$localobject->email_tocc = $object->email_tocc;
|
||||
$localobject->email_tobcc = $object->email_tobcc;
|
||||
$localobject->email_subject = $object->email_subject;
|
||||
$localobject->errors_to = $object->errors_to;*/
|
||||
//$localobject->fk_element = $invoice->id;
|
||||
//$localobject->elementtype = $invoice->element;
|
||||
$localobject->extraparams = 'Extra params';
|
||||
$localobject->type_code = 'AC_OTH_AUTO'; // Type of event ('AC_OTH', 'AC_OTH_AUTO', 'AC_XXX'...)
|
||||
$localobject->code = 'AC_PHPUNITTEST';
|
||||
$localobject->label = 'This is a description';
|
||||
$localobject->note_private = 'This is note';
|
||||
$localobject->fk_project = 0;
|
||||
$localobject->datep = $now;
|
||||
$localobject->datef = $now;
|
||||
$localobject->percentage = -1; // Not applicable
|
||||
$localobject->socid = 0;
|
||||
$localobject->contactid = 0;
|
||||
$localobject->authorid = $user->id; // User saving action
|
||||
$localobject->userownerid = $user->id; // Owner of action
|
||||
// Fields when action is en email (content should be added into note)
|
||||
/*$localobject->email_msgid = $object->email_msgid;
|
||||
$localobject->email_from = $object->email_from;
|
||||
$localobject->email_sender= $object->email_sender;
|
||||
$localobject->email_to = $object->email_to;
|
||||
$localobject->email_tocc = $object->email_tocc;
|
||||
$localobject->email_tobcc = $object->email_tobcc;
|
||||
$localobject->email_subject = $object->email_subject;
|
||||
$localobject->errors_to = $object->errors_to;*/
|
||||
//$localobject->fk_element = $invoice->id;
|
||||
//$localobject->elementtype = $invoice->element;
|
||||
$localobject->extraparams = 'Extra params';
|
||||
|
||||
$result = $localobject->create($user);
|
||||
$result = $localobject->create($user);
|
||||
|
||||
$this->assertLessThan($result, 0);
|
||||
print __METHOD__." result=".$result."\n";
|
||||
return $result;
|
||||
}
|
||||
$this->assertLessThan($result, 0);
|
||||
print __METHOD__." result=".$result."\n";
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* testActionCommFetch
|
||||
*
|
||||
* @param int $id Id action comm
|
||||
* @return ActionComm
|
||||
*
|
||||
* @depends testActionCommCreate
|
||||
* The depends says test is run only if previous is ok
|
||||
*/
|
||||
public function testActionCommFetch($id)
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$conf=$this->savconf;
|
||||
$user=$this->savuser;
|
||||
$langs=$this->savlangs;
|
||||
$db=$this->savdb;
|
||||
/**
|
||||
* testActionCommFetch
|
||||
*
|
||||
* @param int $id Id action comm
|
||||
* @return ActionComm
|
||||
*
|
||||
* @depends testActionCommCreate
|
||||
* The depends says test is run only if previous is ok
|
||||
*/
|
||||
public function testActionCommFetch($id)
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$conf=$this->savconf;
|
||||
$user=$this->savuser;
|
||||
$langs=$this->savlangs;
|
||||
$db=$this->savdb;
|
||||
|
||||
$localobject=new ActionComm($this->savdb);
|
||||
$result=$localobject->fetch($id);
|
||||
$localobject=new ActionComm($this->savdb);
|
||||
$result=$localobject->fetch($id);
|
||||
|
||||
$this->assertLessThan($result, 0);
|
||||
print __METHOD__." id=".$id." result=".$result."\n";
|
||||
return $localobject;
|
||||
}
|
||||
$this->assertLessThan($result, 0);
|
||||
print __METHOD__." id=".$id." result=".$result."\n";
|
||||
return $localobject;
|
||||
}
|
||||
|
||||
/**
|
||||
* testActionCommUpdate
|
||||
*
|
||||
* @param Object $localobject ActionComm
|
||||
* @return int Id action comm updated
|
||||
*
|
||||
* @depends testActionCommFetch
|
||||
* The depends says test is run only if previous is ok
|
||||
*/
|
||||
public function testActionCommUpdate($localobject)
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$conf=$this->savconf;
|
||||
$user=$this->savuser;
|
||||
$langs=$this->savlangs;
|
||||
$db=$this->savdb;
|
||||
/**
|
||||
* testActionCommUpdate
|
||||
*
|
||||
* @param Object $localobject ActionComm
|
||||
* @return int Id action comm updated
|
||||
*
|
||||
* @depends testActionCommFetch
|
||||
* The depends says test is run only if previous is ok
|
||||
*/
|
||||
public function testActionCommUpdate($localobject)
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$conf=$this->savconf;
|
||||
$user=$this->savuser;
|
||||
$langs=$this->savlangs;
|
||||
$db=$this->savdb;
|
||||
|
||||
$localobject->label='New label';
|
||||
$result=$localobject->update($user);
|
||||
$localobject->label='New label';
|
||||
$result=$localobject->update($user);
|
||||
|
||||
$this->assertLessThan($result, 0);
|
||||
print __METHOD__." id=".$localobject->id." result=".$result."\n";
|
||||
return $localobject->id;
|
||||
}
|
||||
$this->assertLessThan($result, 0);
|
||||
print __METHOD__." id=".$localobject->id." result=".$result."\n";
|
||||
return $localobject->id;
|
||||
}
|
||||
|
||||
/**
|
||||
* testActionCommDelete
|
||||
*
|
||||
* @param int $id Id of action comm
|
||||
* @return int Result of delete
|
||||
*
|
||||
* @depends testActionCommUpdate
|
||||
* The depends says test is run only if previous is ok
|
||||
*/
|
||||
public function testActionCommDelete($id)
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$conf=$this->savconf;
|
||||
$user=$this->savuser;
|
||||
$langs=$this->savlangs;
|
||||
$db=$this->savdb;
|
||||
/**
|
||||
* testActionCommDelete
|
||||
*
|
||||
* @param int $id Id of action comm
|
||||
* @return int Result of delete
|
||||
*
|
||||
* @depends testActionCommUpdate
|
||||
* The depends says test is run only if previous is ok
|
||||
*/
|
||||
public function testActionCommDelete($id)
|
||||
{
|
||||
global $conf,$user,$langs,$db;
|
||||
$conf=$this->savconf;
|
||||
$user=$this->savuser;
|
||||
$langs=$this->savlangs;
|
||||
$db=$this->savdb;
|
||||
|
||||
$localobject=new ActionComm($this->savdb);
|
||||
$result=$localobject->fetch($id);
|
||||
$result=$localobject->delete($user);
|
||||
$localobject=new ActionComm($this->savdb);
|
||||
$result=$localobject->fetch($id);
|
||||
$result=$localobject->delete($user);
|
||||
|
||||
print __METHOD__." id=".$id." result=".$result."\n";
|
||||
$this->assertLessThan($result, 0);
|
||||
return $result;
|
||||
}
|
||||
print __METHOD__." id=".$id." result=".$result."\n";
|
||||
$this->assertLessThan($result, 0);
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user