TicketTest.php 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. <?php
  2. /* Copyright (C) 2010 Laurent Destailleur <eldy@users.sourceforge.net>
  3. * Copyright (C) 2023 Alexandre Janniaux <alexandre.janniaux@gmail.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. * or see https://www.gnu.org/
  18. */
  19. /**
  20. * \file test/unit/TicketTest.php
  21. * \ingroup test
  22. * \brief PHPUnit test
  23. * \remarks To run this script as CLI: phpunit filename.php
  24. */
  25. global $conf,$user,$langs,$db;
  26. //define('TEST_DB_FORCE_TYPE','mysql'); // This is to force using mysql driver
  27. //require_once 'PHPUnit/Autoload.php';
  28. require_once dirname(__FILE__).'/../../htdocs/master.inc.php';
  29. require_once dirname(__FILE__).'/../../htdocs/user/class/usergroup.class.php';
  30. require_once dirname(__FILE__).'/../../htdocs/ticket/class/ticket.class.php';
  31. if (empty($user->id)) {
  32. print "Load permissions for admin user nb 1\n";
  33. $user->fetch(1);
  34. $user->getrights();
  35. }
  36. $conf->global->MAIN_DISABLE_ALL_MAILS=1;
  37. /**
  38. * Class for PHPUnit tests
  39. *
  40. * @backupGlobals disabled
  41. * @backupStaticAttributes enabled
  42. * @remarks backupGlobals must be disabled to have db,conf,user and lang not erased.
  43. */
  44. class TicketTest extends PHPUnit\Framework\TestCase
  45. {
  46. protected $savconf;
  47. protected $savuser;
  48. protected $savlangs;
  49. protected $savdb;
  50. /**
  51. * Constructor
  52. * We save global variables into local variables
  53. *
  54. * @param string $name Name
  55. * @return TicketTest
  56. */
  57. public function __construct($name = '')
  58. {
  59. parent::__construct($name);
  60. //$this->sharedFixture
  61. global $conf,$user,$langs,$db;
  62. $this->savconf=$conf;
  63. $this->savuser=$user;
  64. $this->savlangs=$langs;
  65. $this->savdb=$db;
  66. print __METHOD__." db->type=".$db->type." user->id=".$user->id;
  67. //print " - db ".$db->db;
  68. print "\n";
  69. }
  70. /**
  71. * setUpBeforeClass
  72. *
  73. * @return void
  74. */
  75. public static function setUpBeforeClass(): void
  76. {
  77. global $conf,$user,$langs,$db;
  78. $db->begin(); // This is to have all actions inside a transaction even if test launched without suite.
  79. print __METHOD__."\n";
  80. }
  81. /**
  82. * tearDownAfterClass
  83. *
  84. * @return void
  85. */
  86. public static function tearDownAfterClass(): void
  87. {
  88. global $conf,$user,$langs,$db;
  89. $db->rollback();
  90. print __METHOD__."\n";
  91. }
  92. /**
  93. * Init phpunit tests
  94. *
  95. * @return void
  96. */
  97. protected function setUp(): void
  98. {
  99. global $conf,$user,$langs,$db;
  100. $conf=$this->savconf;
  101. $user=$this->savuser;
  102. $langs=$this->savlangs;
  103. $db=$this->savdb;
  104. print __METHOD__."\n";
  105. }
  106. /**
  107. * End phpunit tests
  108. *
  109. * @return void
  110. */
  111. protected function tearDown(): void
  112. {
  113. print __METHOD__."\n";
  114. }
  115. /**
  116. * testTicketCreate
  117. *
  118. * @return int
  119. */
  120. public function testTicketCreate()
  121. {
  122. global $conf,$user,$langs,$db;
  123. $conf=$this->savconf;
  124. $user=$this->savuser;
  125. $langs=$this->savlangs;
  126. $db=$this->savdb;
  127. // Try to create one with bad values
  128. $localobject=new Ticket($db);
  129. $localobject->initAsSpecimen();
  130. $localobject->ref = '';
  131. $result=$localobject->create($user);
  132. print __METHOD__." result=".$result."\n";
  133. $this->assertEquals(-3, $result, $localobject->error.join(',', $localobject->errors));
  134. // Try to create one with correct values
  135. $localobject=new Ticket($db);
  136. $localobject->initAsSpecimen();
  137. $result=$localobject->create($user);
  138. print __METHOD__." result=".$result."\n";
  139. $this->assertGreaterThan(0, $result, $localobject->error.join(',', $localobject->errors));
  140. return $result;
  141. }
  142. /**
  143. * testTicketFetch
  144. *
  145. * @param int $id Id of ticket
  146. * @return int
  147. *
  148. * @depends testTicketCreate
  149. * The depends says test is run only if previous is ok
  150. */
  151. public function testTicketFetch($id)
  152. {
  153. global $conf,$user,$langs,$db;
  154. $conf=$this->savconf;
  155. $user=$this->savuser;
  156. $langs=$this->savlangs;
  157. $db=$this->savdb;
  158. $localobject=new Ticket($db);
  159. $result=$localobject->fetch($id);
  160. print __METHOD__." id=".$id." result=".$result."\n";
  161. $this->assertGreaterThan(0, $result);
  162. return $localobject;
  163. }
  164. /**
  165. * testTicketmarkAsRead
  166. *
  167. * @param Ticket $localobject Ticket
  168. * @return int
  169. *
  170. * @depends testTicketFetch
  171. * The depends says test is run only if previous is ok
  172. */
  173. public function testTicketmarkAsRead($localobject)
  174. {
  175. global $conf,$user,$langs,$db;
  176. $conf=$this->savconf;
  177. $user=$this->savuser;
  178. $langs=$this->savlangs;
  179. $db=$this->savdb;
  180. $result=$localobject->markAsRead($user);
  181. print __METHOD__." id=".$localobject->id." result=".$result."\n";
  182. $this->assertGreaterThan(0, $result);
  183. return $localobject;
  184. }
  185. /**
  186. * testTicketsetProject
  187. *
  188. * @param Ticket $localobject Ticket
  189. * @return int
  190. *
  191. * @depends testTicketFetch
  192. * The depends says test is run only if previous is ok
  193. */
  194. public function testTicketsetProject($localobject)
  195. {
  196. global $conf,$user,$langs,$db;
  197. $conf=$this->savconf;
  198. $user=$this->savuser;
  199. $langs=$this->savlangs;
  200. $db=$this->savdb;
  201. $project_id = 1;
  202. $result=$localobject->setProject($project_id);
  203. print __METHOD__." id=".$localobject->id." result=".$result."\n";
  204. $this->assertGreaterThan(0, $result);
  205. return $localobject;
  206. }
  207. /**
  208. * testTicketsetContract
  209. *
  210. * @param Ticket $localobject Ticket
  211. * @return int
  212. *
  213. * @depends testTicketFetch
  214. * The depends says test is run only if previous is ok
  215. */
  216. public function testTicketsetContract($localobject)
  217. {
  218. global $conf,$user,$langs,$db;
  219. $conf=$this->savconf;
  220. $user=$this->savuser;
  221. $langs=$this->savlangs;
  222. $db=$this->savdb;
  223. $contract_id = 1;
  224. $result=$localobject->setContract($contract_id);
  225. print __METHOD__." id=".$localobject->id." result=".$result."\n";
  226. $this->assertGreaterThan(0, $result);
  227. return $localobject;
  228. }
  229. /**
  230. * testTicketsetProgression
  231. *
  232. * @param Ticket $localobject Ticket
  233. * @return int
  234. *
  235. * @depends testTicketFetch
  236. * The depends says test is run only if previous is ok
  237. */
  238. public function testTicketsetProgression($localobject)
  239. {
  240. global $conf,$user,$langs,$db;
  241. $conf=$this->savconf;
  242. $user=$this->savuser;
  243. $langs=$this->savlangs;
  244. $db=$this->savdb;
  245. $percent = 80;
  246. $result=$localobject->setProgression($percent);
  247. print __METHOD__." id=".$localobject->id." result=".$result."\n";
  248. $this->assertGreaterThan(0, $result);
  249. return $localobject;
  250. }
  251. /**
  252. * testTicketassignUser
  253. *
  254. * @param Ticket $localobject Ticket
  255. * @return int
  256. *
  257. * @depends testTicketFetch
  258. * The depends says test is run only if previous is ok
  259. */
  260. public function testTicketassignUser($localobject)
  261. {
  262. global $conf,$user,$langs,$db;
  263. $conf=$this->savconf;
  264. $user=$this->savuser;
  265. $langs=$this->savlangs;
  266. $db=$this->savdb;
  267. $user_id_to_assign = 1;
  268. $result=$localobject->assignUser($user, $user_id_to_assign);
  269. ;
  270. print __METHOD__." id=".$localobject->id." result=".$result."\n";
  271. $this->assertGreaterThan(0, $result);
  272. return $localobject;
  273. }
  274. /**
  275. * testTicketassignUserOther
  276. *
  277. * @param Ticket $localobject Ticket
  278. * @return int
  279. *
  280. * @depends testTicketFetch
  281. * The depends says test is run only if previous is ok
  282. */
  283. public function testTicketassignUserOther($localobject)
  284. {
  285. global $conf,$user,$langs,$db;
  286. $conf=$this->savconf;
  287. $user=$this->savuser;
  288. $langs=$this->savlangs;
  289. $db=$this->savdb;
  290. $user_id_to_assign = 2;
  291. $result=$localobject->assignUser($user, $user_id_to_assign);
  292. ;
  293. print __METHOD__." id=".$localobject->id." result=".$result."\n";
  294. $this->assertGreaterThan(0, $result);
  295. return $localobject;
  296. }
  297. /**
  298. * testTicketclose
  299. *
  300. * @param Ticket $localobject Ticket
  301. * @return int
  302. *
  303. * @depends testTicketFetch
  304. * The depends says test is run only if previous is ok
  305. */
  306. public function testTicketclose($localobject)
  307. {
  308. global $conf,$user,$langs,$db;
  309. $conf=$this->savconf;
  310. $user=$this->savuser;
  311. $langs=$this->savlangs;
  312. $db=$this->savdb;
  313. $result=$localobject->close($user);
  314. print __METHOD__." id=".$localobject->id." result=".$result."\n";
  315. $this->assertGreaterThan(0, $result);
  316. return $localobject->id;
  317. }
  318. /**
  319. * testTicketDelete
  320. *
  321. * @param int $id Id of ticket
  322. * @return int
  323. *
  324. * @depends testTicketclose
  325. * The depends says test is run only if previous is ok
  326. */
  327. public function testTicketDelete($id)
  328. {
  329. global $conf,$user,$langs,$db;
  330. $conf=$this->savconf;
  331. $user=$this->savuser;
  332. $langs=$this->savlangs;
  333. $db=$this->savdb;
  334. $localobject=new Ticket($db);
  335. $result=$localobject->fetch($id);
  336. $result=$localobject->delete($user);
  337. print __METHOD__." id=".$id." result=".$result."\n";
  338. $this->assertGreaterThan(0, $result);
  339. return $result;
  340. }
  341. }