/tests/TestCase/Controller/Traits/RegisterTraitTest.php

http://github.com/CakeDC/users · PHP · 429 lines · 311 code · 39 blank · 79 comment · 0 complexity · 23fb7dd1e721c56fe8fa816ad94b629b MD5 · raw file

  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * Copyright 2010 - 2019, Cake Development Corporation (https://www.cakedc.com)
  5. *
  6. * Licensed under The MIT License
  7. * Redistributions of files must retain the above copyright notice.
  8. *
  9. * @copyright Copyright 2010 - 2018, Cake Development Corporation (https://www.cakedc.com)
  10. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  11. */
  12. namespace CakeDC\Users\Test\TestCase\Controller\Traits;
  13. use Cake\Core\Configure;
  14. use Cake\Event\Event;
  15. use Cake\Http\Exception\NotFoundException;
  16. use Cake\Routing\Router;
  17. class RegisterTraitTest extends BaseTraitTest
  18. {
  19. /**
  20. * setUp
  21. *
  22. * @return void
  23. */
  24. public function setUp(): void
  25. {
  26. $this->traitClassName = 'CakeDC\Users\Controller\UsersController';
  27. $this->traitMockMethods = ['validate', 'dispatchEvent', 'set', 'validateReCaptcha', 'redirect'];
  28. $this->mockDefaultEmail = true;
  29. parent::setUp();
  30. }
  31. /**
  32. * tearDown
  33. *
  34. * @return void
  35. */
  36. public function tearDown(): void
  37. {
  38. parent::tearDown();
  39. }
  40. /**
  41. * test
  42. *
  43. * @return void
  44. */
  45. public function testValidateEmail()
  46. {
  47. $token = 'token';
  48. $this->Trait->expects($this->once())
  49. ->method('validate')
  50. ->with('email', $token);
  51. $this->Trait->validateEmail($token);
  52. }
  53. /**
  54. * test
  55. *
  56. * @return void
  57. */
  58. public function testRegister()
  59. {
  60. Router::connect('/users/validate-email/*', [
  61. 'plugin' => 'CakeDC/Users',
  62. 'controller' => 'Users',
  63. 'action' => 'validateEmail',
  64. ]);
  65. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  66. $this->_mockRequestPost();
  67. $this->_mockAuthentication();
  68. $this->_mockFlash();
  69. $this->_mockDispatchEvent();
  70. $this->Trait->Flash->expects($this->once())
  71. ->method('success')
  72. ->with('Please validate your account before log in');
  73. $this->Trait->expects($this->once())
  74. ->method('redirect')
  75. ->with(['action' => 'login']);
  76. $this->Trait->getRequest()->expects($this->once())
  77. ->method('getData')
  78. ->will($this->returnValue([
  79. 'username' => 'testRegistration',
  80. 'password' => 'password',
  81. 'email' => 'test-registration@example.com',
  82. 'password_confirm' => 'password',
  83. 'tos' => 1,
  84. ]));
  85. $this->Trait->register();
  86. $this->assertEquals(1, $this->table->find()->where(['username' => 'testRegistration'])->count());
  87. }
  88. /**
  89. * Triggering beforeRegister event and not able to register the user
  90. *
  91. * @return void
  92. */
  93. public function testRegisterWithEventFalseResult()
  94. {
  95. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  96. $this->_mockRequestPost();
  97. $this->_mockAuthentication();
  98. $this->_mockFlash();
  99. $this->_mockDispatchEvent(new Event('Users.Component.UsersAuth.beforeRegister'), ['username' => 'hello']);
  100. $this->Trait->Flash->expects($this->once())
  101. ->method('error')
  102. ->with('The user could not be saved');
  103. $this->Trait->expects($this->never())
  104. ->method('redirect');
  105. $this->Trait->getRequest()->expects($this->never())
  106. ->method('is');
  107. $this->Trait->register();
  108. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  109. }
  110. /**
  111. * Triggering beforeRegister event and registering the user successfully
  112. *
  113. * @return void
  114. */
  115. public function testRegisterWithEventSuccessResult()
  116. {
  117. Router::connect('/users/validate-email/*', [
  118. 'plugin' => 'CakeDC/Users',
  119. 'controller' => 'Users',
  120. 'action' => 'validateEmail',
  121. ]);
  122. $data = [
  123. 'username' => 'testRegistration',
  124. 'password' => 'password',
  125. 'email' => 'test-registration@example.com',
  126. 'password_confirm' => 'password',
  127. 'tos' => 1,
  128. ];
  129. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  130. $this->_mockRequestPost();
  131. $this->_mockAuthentication();
  132. $this->_mockFlash();
  133. $this->_mockDispatchEvent(new Event('Users.Component.UsersAuth.beforeRegister'), $data);
  134. $this->Trait->getRequest()->expects($this->once())
  135. ->method('getData')
  136. ->will($this->returnValue($data));
  137. $this->Trait->Flash->expects($this->once())
  138. ->method('success')
  139. ->with('Please validate your account before log in');
  140. $this->Trait->expects($this->once())
  141. ->method('redirect')
  142. ->with(['action' => 'login']);
  143. $this->Trait->getRequest()->expects($this->never())
  144. ->method('is');
  145. $this->Trait->register();
  146. $this->assertEquals(1, $this->table->find()->where(['username' => 'testRegistration'])->count());
  147. }
  148. /**
  149. * test
  150. *
  151. * @return void
  152. */
  153. public function testRegisterReCaptcha()
  154. {
  155. Router::connect('/users/validate-email/*', [
  156. 'plugin' => 'CakeDC/Users',
  157. 'controller' => 'Users',
  158. 'action' => 'validateEmail',
  159. ]);
  160. Configure::write('Users.reCaptcha.registration', true);
  161. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  162. $this->_mockRequestPost();
  163. $this->_mockAuthentication();
  164. $this->_mockFlash();
  165. $this->_mockDispatchEvent();
  166. $this->Trait->Flash->expects($this->once())
  167. ->method('success')
  168. ->with('Please validate your account before log in');
  169. $this->Trait->expects($this->once())
  170. ->method('validateRecaptcha')
  171. ->will($this->returnValue(true));
  172. $this->Trait->expects($this->once())
  173. ->method('redirect')
  174. ->with(['action' => 'login']);
  175. $this->Trait->getRequest()->expects($this->at(0))
  176. ->method('getData')
  177. ->with()
  178. ->will($this->returnValue([
  179. 'username' => 'testRegistration',
  180. 'password' => 'password',
  181. 'email' => 'test-registration@example.com',
  182. 'password_confirm' => 'password',
  183. 'tos' => 1,
  184. ]));
  185. $this->Trait->register();
  186. $this->assertEquals(1, $this->table->find()->where(['username' => 'testRegistration'])->count());
  187. }
  188. /**
  189. * test
  190. *
  191. * @return void
  192. */
  193. public function testRegisterValidationErrors()
  194. {
  195. Configure::write('Users.reCaptcha.registration', true);
  196. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  197. $this->_mockRequestPost();
  198. $this->_mockAuthentication();
  199. $this->_mockFlash();
  200. $this->_mockDispatchEvent();
  201. $this->Trait->Flash->expects($this->once())
  202. ->method('error')
  203. ->with('The user could not be saved');
  204. $this->Trait->expects($this->once())
  205. ->method('validateRecaptcha')
  206. ->will($this->returnValue(true));
  207. $this->Trait->expects($this->never())
  208. ->method('redirect');
  209. $this->Trait->getRequest()->expects($this->at(0))
  210. ->method('getData')
  211. ->with()
  212. ->will($this->returnValue([
  213. 'username' => 'testRegistration',
  214. 'password' => 'password',
  215. 'email' => 'test-registration@example.com',
  216. 'password_confirm' => 'not-matching',
  217. 'tos' => 1,
  218. ]));
  219. $this->Trait->register();
  220. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  221. }
  222. /**
  223. * test
  224. *
  225. * @return void
  226. */
  227. public function testRegisterRecaptchaNotValid()
  228. {
  229. Configure::write('Users.reCaptcha.registration', true);
  230. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  231. $this->_mockRequestPost();
  232. $this->_mockAuthentication();
  233. $this->_mockFlash();
  234. $this->_mockDispatchEvent();
  235. $this->Trait->Flash->expects($this->once())
  236. ->method('error')
  237. ->with('Invalid reCaptcha');
  238. $this->Trait->expects($this->once())
  239. ->method('validateRecaptcha')
  240. ->will($this->returnValue(false));
  241. $this->Trait->getRequest()->expects($this->at(0))
  242. ->method('getData')
  243. ->with()
  244. ->will($this->returnValue([
  245. 'username' => 'testRegistration',
  246. 'password' => 'password',
  247. 'email' => 'test-registration@example.com',
  248. 'password_confirm' => 'password',
  249. 'tos' => 1,
  250. ]));
  251. $this->Trait->register();
  252. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  253. }
  254. /**
  255. * test
  256. *
  257. * @return void
  258. */
  259. public function testRegisterGet()
  260. {
  261. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  262. $this->_mockRequestGet();
  263. $this->_mockAuthentication();
  264. $this->_mockFlash();
  265. $this->_mockDispatchEvent();
  266. $this->Trait->Flash->expects($this->never())
  267. ->method('success');
  268. $this->Trait->expects($this->never())
  269. ->method('validateRecaptcha');
  270. $this->Trait->expects($this->never())
  271. ->method('redirect');
  272. $this->Trait->register();
  273. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  274. }
  275. /**
  276. * test
  277. *
  278. * @return void
  279. */
  280. public function testRegisterRecaptchaDisabled()
  281. {
  282. Router::connect('/users/validate-email/*', [
  283. 'plugin' => 'CakeDC/Users',
  284. 'controller' => 'Users',
  285. 'action' => 'validateEmail',
  286. ]);
  287. Configure::write('Users.Registration.reCaptcha', false);
  288. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  289. $this->_mockRequestPost();
  290. $this->_mockAuthentication();
  291. $this->_mockFlash();
  292. $this->_mockDispatchEvent();
  293. $this->Trait->Flash->expects($this->once())
  294. ->method('success')
  295. ->with('Please validate your account before log in');
  296. $this->Trait->expects($this->never())
  297. ->method('validateRecaptcha');
  298. $this->Trait->expects($this->once())
  299. ->method('redirect')
  300. ->with(['action' => 'login']);
  301. $this->Trait->getRequest()->expects($this->at(0))
  302. ->method('getData')
  303. ->with()
  304. ->will($this->returnValue([
  305. 'username' => 'testRegistration',
  306. 'password' => 'password',
  307. 'email' => 'test-registration@example.com',
  308. 'password_confirm' => 'password',
  309. 'tos' => 1,
  310. ]));
  311. $this->Trait->register();
  312. $this->assertEquals(1, $this->table->find()->where(['username' => 'testRegistration'])->count());
  313. }
  314. /**
  315. * test
  316. *
  317. * @return void
  318. */
  319. public function testRegisterNotEnabled()
  320. {
  321. $this->expectException(NotFoundException::class);
  322. Configure::write('Users.Registration.active', false);
  323. $this->_mockRequestPost();
  324. $this->_mockAuthentication();
  325. $this->_mockFlash();
  326. $this->_mockDispatchEvent();
  327. $this->Trait->register();
  328. }
  329. /**
  330. * test
  331. *
  332. * @return void
  333. */
  334. public function testRegisterLoggedInUserAllowed()
  335. {
  336. Router::connect('/users/validate-email/*', [
  337. 'plugin' => 'CakeDC/Users',
  338. 'controller' => 'Users',
  339. 'action' => 'validateEmail',
  340. ]);
  341. Configure::write('Users.Registration.allowLoggedIn', true);
  342. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  343. $this->_mockRequestPost();
  344. $this->_mockAuthLoggedIn();
  345. $this->_mockFlash();
  346. $this->_mockDispatchEvent();
  347. $this->Trait->Flash->expects($this->once())
  348. ->method('success')
  349. ->with('Please validate your account before log in');
  350. $this->Trait->expects($this->once())
  351. ->method('redirect')
  352. ->with(['action' => 'login']);
  353. $this->Trait->getRequest()->expects($this->at(0))
  354. ->method('getData')
  355. ->with()
  356. ->will($this->returnValue([
  357. 'username' => 'testRegistration',
  358. 'password' => 'password',
  359. 'email' => 'test-registration@example.com',
  360. 'password_confirm' => 'password',
  361. 'tos' => 1,
  362. ]));
  363. $this->Trait->register();
  364. $this->assertEquals(1, $this->table->find()->where(['username' => 'testRegistration'])->count());
  365. }
  366. /**
  367. * test
  368. *
  369. * @return void
  370. */
  371. public function testRegisterLoggedInUserNotAllowed()
  372. {
  373. Configure::write('Users.Registration.allowLoggedIn', false);
  374. $this->assertEquals(0, $this->table->find()->where(['username' => 'testRegistration'])->count());
  375. $this->_mockRequestPost();
  376. $this->_mockAuthLoggedIn();
  377. $this->_mockFlash();
  378. $this->_mockDispatchEvent();
  379. $this->Trait->Flash->expects($this->once())
  380. ->method('error')
  381. ->with('You must log out to register a new user account');
  382. $this->Trait->expects($this->once())
  383. ->method('redirect')
  384. ->with(Configure::read('Users.Profile.route'));
  385. $this->Trait->getRequest()->expects($this->never())
  386. ->method('getData')
  387. ->with();
  388. $this->Trait->register();
  389. }
  390. }