/Users/Test/Case/Model/UserTest.php

http://github.com/croogo/croogo · PHP · 353 lines · 250 code · 28 blank · 75 comment · 0 complexity · 6b640c232e5f95cd9cffeaa04b789d26 MD5 · raw file

  1. <?php
  2. App::uses('CroogoTestCase', 'Croogo.TestSuite');
  3. App::uses('Model', 'Model');
  4. App::uses('AppModel', 'Model');
  5. App::uses('User', 'Users.Model');
  6. App::uses('AuthComponent', 'Controller/Component');
  7. /**
  8. * TestUser
  9. *
  10. */
  11. class TestUser extends User {
  12. /**
  13. * model alias
  14. *
  15. * @var string
  16. */
  17. public $alias = 'User';
  18. }
  19. /**
  20. * TestUser
  21. *
  22. */
  23. class UserTest extends CroogoTestCase {
  24. /**
  25. * Fixtures
  26. *
  27. * @var array
  28. */
  29. public $fixtures = array(
  30. 'plugin.users.aco',
  31. 'plugin.users.aro',
  32. 'plugin.users.aros_aco',
  33. 'plugin.users.role',
  34. 'plugin.users.user',
  35. );
  36. /**
  37. * User instance
  38. *
  39. * @var TestUser
  40. */
  41. public $User;
  42. /**
  43. * setUp method
  44. *
  45. * @return void
  46. */
  47. public function setUp() {
  48. parent::setUp();
  49. $this->User = ClassRegistry::init('TestUser');
  50. $this->User->Aro->useDbConfig = 'test';
  51. }
  52. /**
  53. * tearDown method
  54. *
  55. * @return void
  56. */
  57. public function tearDown() {
  58. parent::tearDown();
  59. unset($this->User->request, $this->User);
  60. }
  61. /**
  62. * testPasswords method
  63. *
  64. * @return void
  65. */
  66. public function testPasswords() {
  67. $this->User->create(array(
  68. 'username' => 'new_user',
  69. 'name' => 'New User',
  70. 'role_id' => 3,
  71. 'email' => 'contact@croogo.org',
  72. 'password' => 'password',
  73. 'website' => 'http://croogo.org',
  74. 'activation_key' => md5(uniqid()),
  75. ));
  76. $this->User->save();
  77. $this->assertEmpty($this->User->validationErrors, 'Validation error: ' . print_r($this->User->validationErrors, true));
  78. $newUser = $this->User->read();
  79. $this->assertNotEqual($newUser, false);
  80. $this->assertNotEqual($newUser['User']['password'], 'password');
  81. $this->assertEqual($newUser['User']['password'], AuthComponent::password('password'));
  82. $newUser['User']['password'] = '123456';
  83. $this->User->id = $newUser['User']['id'];
  84. $this->User->save($newUser);
  85. $this->assertEmpty($this->User->validationErrors, 'Validation error: ' . print_r($this->User->validationErrors, true));
  86. $newUser = $this->User->read();
  87. $this->assertNotEqual($newUser['User']['password'], '123456');
  88. $this->assertEqual($newUser['User']['password'], AuthComponent::password('123456'));
  89. $oldPassword = $newUser['User']['password'];
  90. $newUser['User']['password'] = '';
  91. $this->User->id = $newUser['User']['id'];
  92. $this->User->save($newUser);
  93. $this->assertContains('Passwords must be at least 6 characters long.', print_r($this->User->validationErrors, true));
  94. $newUser = $this->User->read();
  95. $this->assertEqual($newUser['User']['password'], $oldPassword);
  96. }
  97. /**
  98. * testValidIdenticalPassword method
  99. *
  100. * @return void
  101. */
  102. public function testValidIdenticalPassword() {
  103. $this->User->data['User'] = array('password' => '123456');
  104. $this->assertTrue($this->User->validIdentical(array('verify_password' => '123456')));
  105. $this->User->data['User'] = array('password' => '123456');
  106. $this->assertContains('Passwords do not match. Please, try again.', $this->User->validIdentical(array('verify_password' => 'other-value')));
  107. }
  108. /**
  109. * testDeleteLastUser method
  110. *
  111. * @return void
  112. */
  113. public function testDeleteLastUser() {
  114. $this->User->create(array(
  115. 'username' => 'new_user',
  116. 'name' => 'Admin User',
  117. 'role_id' => 1,
  118. 'email' => 'contact@croogo.org',
  119. 'password' => 'password',
  120. 'website' => 'http://croogo.org',
  121. 'activation_key' => md5(uniqid()),
  122. 'status' => true,
  123. ));
  124. $this->User->save();
  125. $newUser = $this->User->read();
  126. $this->User->deleteAll(array('User.id !=' => $newUser['User']['id']));
  127. $this->assertFalse($this->User->delete($newUser['User']['id']));
  128. }
  129. /**
  130. * testDeleteAdminUser method
  131. *
  132. * @return void
  133. */
  134. public function testDeleteAdminUser() {
  135. $this->User->create(array(
  136. 'username' => 'admin_user',
  137. 'name' => 'Admin User',
  138. 'role_id' => 1,
  139. 'email' => 'contact@croogo.org',
  140. 'password' => 'password',
  141. 'website' => 'http://croogo.org',
  142. 'activation_key' => md5(uniqid()),
  143. 'status' => true,
  144. ));
  145. $this->User->save();
  146. $newAdmin = $this->User->read();
  147. $this->User->create(array(
  148. 'username' => 'another_adm',
  149. 'name' => 'Another Admin',
  150. 'role_id' => 1,
  151. 'email' => 'another_adm@croogo.org',
  152. 'password' => 'password',
  153. 'website' => 'http://croogo.org',
  154. 'activation_key' => md5(uniqid()),
  155. 'status' => true,
  156. ));
  157. $this->User->save();
  158. $anotherAdmin = $this->User->read();
  159. $this->User->deleteAll(array('NOT' => array('User.id' => array($newAdmin['User']['id'], $anotherAdmin['User']['id']))));
  160. $this->assertTrue($this->User->delete($newAdmin['User']['id']));
  161. }
  162. /**
  163. * testDisplayFields
  164. *
  165. * @return void
  166. */
  167. public function testDisplayFields() {
  168. $result = $this->User->displayFields();
  169. $expected = array(
  170. 'id' => array(
  171. 'label' => 'Id',
  172. 'sort' => true,
  173. 'type' => 'text',
  174. 'url' => array(),
  175. 'options' => array(),
  176. ),
  177. 'username' => array(
  178. 'label' => 'Username',
  179. 'sort' => true,
  180. 'type' => 'text',
  181. 'url' => array(),
  182. 'options' => array(),
  183. ),
  184. 'name' => array(
  185. 'label' => 'Name',
  186. 'sort' => true,
  187. 'type' => 'text',
  188. 'url' => array(),
  189. 'options' => array(),
  190. ),
  191. 'email' => array(
  192. 'label' => 'Email',
  193. 'sort' => true,
  194. 'type' => 'text',
  195. 'url' => array(),
  196. 'options' => array(),
  197. ),
  198. 'status' => array(
  199. 'label' => 'Status',
  200. 'sort' => true,
  201. 'type' => 'boolean',
  202. 'url' => array(),
  203. 'options' => array(),
  204. ),
  205. 'Role.title' => array(
  206. 'label' => 'Role',
  207. 'sort' => true,
  208. 'type' => 'text',
  209. 'url' => array(),
  210. 'options' => array(),
  211. ),
  212. );
  213. $this->assertEquals($expected, $result);
  214. $result = $this->User->displayFields(array(
  215. 'one', 'two', 'three',
  216. ));
  217. $expected = array(
  218. 'one' => array(
  219. 'label' => 'One',
  220. 'sort' => true,
  221. 'type' => 'text',
  222. 'url' => array(),
  223. 'options' => array(),
  224. ),
  225. 'two' => array(
  226. 'label' => 'Two',
  227. 'sort' => true,
  228. 'type' => 'text',
  229. 'url' => array(),
  230. 'options' => array(),
  231. ),
  232. 'three' => array(
  233. 'label' => 'Three',
  234. 'sort' => true,
  235. 'type' => 'text',
  236. 'url' => array(),
  237. 'options' => array(),
  238. ),
  239. );
  240. $this->assertEquals($expected, $result);
  241. }
  242. /**
  243. * testEditFields
  244. *
  245. * @return void
  246. */
  247. public function testEditFields() {
  248. $result = $this->User->editFields();
  249. $expected = array(
  250. 'role_id' => array(),
  251. 'username' => array(),
  252. 'name' => array(),
  253. 'email' => array(),
  254. 'website' => array(),
  255. 'status' => array(),
  256. );
  257. $this->assertEquals($expected, $result);
  258. $result = $this->User->editFields(array());
  259. $expected = array(
  260. 'role_id' => array(),
  261. 'username' => array(),
  262. 'password' => array(),
  263. 'name' => array(),
  264. 'email' => array(),
  265. 'website' => array(),
  266. 'activation_key' => array(),
  267. 'image' => array(),
  268. 'bio' => array(),
  269. 'timezone' => array(),
  270. 'status' => array(),
  271. 'updated' => array(),
  272. 'created' => array(),
  273. 'updated_by' => array(),
  274. 'created_by' => array(),
  275. );
  276. $this->assertEquals($expected, $result);
  277. $expected = array(
  278. 'field' => array(
  279. 'label' => 'My Field',
  280. 'type' => 'select',
  281. 'options' => array(1, 2, 3),
  282. ),
  283. );
  284. $result = $this->User->editFields($expected);
  285. $this->assertEquals($expected, $result);
  286. }
  287. /**
  288. * testDeleteAdminUsers
  289. */
  290. public function testDeleteAdminUsers() {
  291. // delete an admin
  292. $this->User->id = 2;
  293. $result = $this->User->delete();
  294. $this->assertTrue($result);
  295. // delete last remaining admin
  296. $this->User->id = 1;
  297. $result = $this->User->delete();
  298. $this->assertFalse($result);
  299. // delete normal user
  300. $this->User->id = 3;
  301. $result = $this->User->delete();
  302. $this->assertTrue($result);
  303. $count = $this->User->find('count');
  304. $this->assertEquals(1, $count);
  305. }
  306. /**
  307. * testDeleteUsers
  308. */
  309. public function testDeleteUsers() {
  310. // delete normal user
  311. $this->User->id = 3;
  312. $result = $this->User->delete();
  313. $this->assertTrue($result);
  314. // delete an admin
  315. $this->User->id = 2;
  316. $result = $this->User->delete();
  317. $this->assertTrue($result);
  318. // delete last remaining admin
  319. $this->User->id = 1;
  320. $result = $this->User->delete();
  321. $this->assertFalse($result);
  322. $count = $this->User->find('count');
  323. $this->assertEquals(1, $count);
  324. }
  325. }