Commit 91b622c327271713dcce580557e532d4d51bfdbd

Authored by Etienne Pallier
1 parent b8624550
Exists in master and in 1 other branch dev

Bugfix tests

v4.105.15-3.7.9
CHANGES.txt
... ... @@ -120,6 +120,11 @@ Outre ces changements, voici d'autres changements importants :
120 120 ======= CHANGES =======
121 121  
122 122 -------
  123 +12/10/2020 v4.105.15-3.7.9 (EP)
  124 + - (b) Bugfix tests
  125 +
  126 +
  127 +-------
123 128 09/10/2020 v4.105.14-3.7.9 (EP)
124 129 - (e) Optimisation, bugfix, et amélioration des pages de listes utilisateurs et responsables
125 130 => refactorisées en 1 seule action index() (index_recap() virée) et 1 seule vue index.ctp (index_recap.ctp virée)
... ...
README.md
... ... @@ -43,7 +43,7 @@ Logiciel testé et validé sur les configurations suivantes :
43 43 --------------------------------------------------------------------------------------------
44 44  
45 45 Date: 12/10/2020
46   -Version: 4.105.14-3.7.9
  46 +Version: 4.105.15-3.7.9
47 47  
48 48  
49 49 HISTORIQUE DES CHANGEMENTS DE VERSION : voir le fichier CHANGES.txt (ou la page web /pages/changes)
... ...
src/Template/Users/index_recap.ctp renamed to src/Template/Users/index_recap.NOMOREUSED.ctp
tests/TestCase/Controller/General.php
... ... @@ -848,6 +848,7 @@ class General extends TestCase {
848 848 // 1) ACCÈS AUTORISÉ
849 849 if ($access_condition===0) {
850 850 $this->d("is 0");
  851 + //debug($action); debug($id);
851 852 $this->_testExecActionForId($action,$id,$getpost,$posted_data,true,$nbentities);
852 853 }
853 854 // 2) ACCÈS REFUSÉ
... ...
tests/TestCase/Controller/UsersControllerTest.php
... ... @@ -48,6 +48,9 @@ class UsersControllerTest extends General
48 48 'groupes_thematique_id' => 1
49 49 ];
50 50 }
  51 + static protected function _getEntityIdOkForTesting() {
  52 + return 2;
  53 + }
51 54  
52 55 /*
53 56 public function authUser() {
... ...