Commit f32eba55f794305fc5721d2915035b7dce3c5b4a
1 parent
3ce6c46e
Exists in
master
and in
1 other branch
Mise à jour de toutes les Fixtures de test (tests/TestCase/Model)...
...pour qu'elles soient en 1ère lettre capitale (nouvelle norme) + Correction de quelques DEPRECATED errors v4.105.23-3.7.9
Showing
6 changed files
with
35 additions
and
27 deletions
Show diff stats
CHANGES.txt
... | ... | @@ -120,12 +120,15 @@ Outre ces changements, voici d'autres changements importants : |
120 | 120 | ======= CHANGES ======= |
121 | 121 | |
122 | 122 | ------- |
123 | -14/10/2020 v4.105.22-3.7.9 (EP) | |
124 | - - (i) tests cleanup | |
123 | +14/10/2020 v4.105.23-3.7.9 (EP) | |
124 | + - (i) tests cleanup | |
125 | + - (i) Mise à jour de toutes les Fixtures de test (tests/TestCase/Model) pour qu'elles soient en 1ère lettre capitale (nouvelle norme) | |
126 | + - (b) Correction de quelques DEPRECATED errors | |
127 | + | |
125 | 128 | |
126 | 129 | ------- |
127 | 130 | 13/10/2020 v4.105.21-3.7.9 (EP) |
128 | - - (i) Mise à jour de toutes les Fixtures de test pour qu'elles soient en 1ère lettre capitale (nouvelle norme) | |
131 | + - (i) Mise à jour de toutes les Fixtures de test (tests/TestCase/Controller) pour qu'elles soient en 1ère lettre capitale (nouvelle norme) | |
129 | 132 | |
130 | 133 | ------- |
131 | 134 | 13/10/2020 v4.105.20-3.7.9 (EP) | ... | ... |
README.md
... | ... | @@ -43,7 +43,7 @@ Logiciel testé et validé sur les configurations suivantes : |
43 | 43 | -------------------------------------------------------------------------------------------- |
44 | 44 | |
45 | 45 | Date: 14/10/2020 |
46 | -Version: 4.105.22-3.7.9 | |
46 | +Version: 4.105.23-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/Controller/AppController.php
... | ... | @@ -2821,7 +2821,8 @@ class AppController extends Controller |
2821 | 2821 | */ |
2822 | 2822 | |
2823 | 2823 | // Ca sert à quoi ??? |
2824 | - if (! array_key_exists('_serialize', $this->viewVars) && in_array($this->response->type(), [ | |
2824 | + //if (! array_key_exists('_serialize', $this->viewVars) && in_array($this->response->type(), [ | |
2825 | + if (! array_key_exists('_serialize', $this->viewVars) && in_array($this->response->getType(), [ | |
2825 | 2826 | 'application/json', |
2826 | 2827 | 'application/xml' |
2827 | 2828 | ])) | ... | ... |
src/Template/Materiels/view.ctp
... | ... | @@ -219,11 +219,13 @@ $CAN_PRINT_LABEL = $IS_VALIDATED && $configuration->hasPrinter && $USER_IS_ADMIN |
219 | 219 | //debug($this->request); |
220 | 220 | // 1) Création |
221 | 221 | //$proto = $this->request->env('REQUEST_SCHEME'); |
222 | - $proto = $this->request->env('HTTP_REFERER'); | |
222 | + //$proto = $this->request->env('HTTP_REFERER'); | |
223 | + $proto = $this->request->getEnv('HTTP_REFERER'); | |
223 | 224 | //debug("proto"); debug($proto); |
224 | 225 | $proto = $proto ? substr($proto, 0,strpos($proto,'://')) : ''; // 'http' ou 'https' |
225 | 226 | //debug("proto"); debug($proto); |
226 | - $qrCodeUrl = $proto.'://' . $this->request->env('SERVER_NAME') . $this->request->env('REQUEST_URI'); // 'http://labinvent.devv/materiels/view/11126' | |
227 | + //$qrCodeUrl = $proto.'://' . $this->request->env('SERVER_NAME') . $this->request->env('REQUEST_URI'); // 'http://labinvent.devv/materiels/view/11126' | |
228 | + $qrCodeUrl = $proto.'://' . $this->request->getEnv('SERVER_NAME') . $this->request->getEnv('REQUEST_URI'); // 'http://labinvent.devv/materiels/view/11126' | |
227 | 229 | //debug("qrCodeUrl"); debug($qrCodeUrl); |
228 | 230 | $this->request->getSession()->write("qrUrl", $qrCodeUrl); |
229 | 231 | ... | ... |
tests/TestCase/Controller/General.php
... | ... | @@ -795,7 +795,8 @@ class General extends TestCase { |
795 | 795 | // POUR CHAQUE $action et $role (fournis par le dataProvider) : |
796 | 796 | |
797 | 797 | $this->d("*******************"); |
798 | - $this->d(" CONTROLEUR $c->name, ACTION $action, ROLE $role_short"); | |
798 | + //$this->d(" CONTROLEUR $c->name, ACTION $action, ROLE $role_short"); | |
799 | + $this->d(" CONTROLEUR $c->getName(), ACTION $action, ROLE $role_short"); | |
799 | 800 | $this->d("*******************"); |
800 | 801 | //$this->setUp(); |
801 | 802 | |
... | ... | @@ -839,7 +840,8 @@ class General extends TestCase { |
839 | 840 | //if ($action=='add') $related_matos_id = $this->getNewEntityWithAllMandatoryFields()->materiel_id; |
840 | 841 | //$related_matos_id = $this->getMaterielsController()->_getEntityIdOkForTesting(); |
841 | 842 | $actions_with_related_matos_id = ['add']; |
842 | - if ($c->name == 'Documents') $actions_with_related_matos_id[] = ['admission','sortie']; | |
843 | + //if ($c->name == 'Documents') $actions_with_related_matos_id[] = ['admission','sortie']; | |
844 | + if ($c->getName() == 'Documents') $actions_with_related_matos_id[] = ['admission','sortie']; | |
843 | 845 | if (in_array($action, $actions_with_related_matos_id)) { |
844 | 846 | // id = celui du matos associé |
845 | 847 | $id = MaterielsControllerTest::_getEntityIdOkForTesting(); | ... | ... |
tests/TestCase/Model/Table/MaterielsTableTest.php
... | ... | @@ -24,31 +24,31 @@ class MaterielsTableTest extends TestCase |
24 | 24 | * @var array |
25 | 25 | */ |
26 | 26 | public $fixtures = [ |
27 | - 'app.materiels', | |
27 | + 'app.Materiels', | |
28 | 28 | |
29 | - 'app.sur_categories', | |
30 | - 'app.categories', | |
31 | - 'app.sous_categories', | |
29 | + 'app.SurCategories', | |
30 | + 'app.Categories', | |
31 | + 'app.SousCategories', | |
32 | 32 | |
33 | - 'app.groupes_thematiques', | |
34 | - 'app.groupes_metiers', | |
33 | + 'app.GroupesThematiques', | |
34 | + 'app.GroupesMetiers', | |
35 | 35 | |
36 | 36 | 'app.Projets', |
37 | 37 | |
38 | - 'app.fakeldapusers', | |
39 | - 'app.users', | |
40 | - 'app.organismes', | |
41 | - 'app.sites', | |
42 | - 'app.documents', | |
43 | - 'app.suivis', | |
44 | - 'app.emprunts', | |
45 | - 'app.fournisseurs', | |
46 | - 'app.unites', | |
38 | + 'app.Fakeldapusers', | |
39 | + 'app.Users', | |
40 | + 'app.Organismes', | |
41 | + 'app.Sites', | |
42 | + 'app.Documents', | |
43 | + 'app.Suivis', | |
44 | + 'app.Emprunts', | |
45 | + 'app.Fournisseurs', | |
46 | + 'app.Unites', | |
47 | 47 | |
48 | 48 | // 14/1/19 bake autogenerated: |
49 | - 'app.type_suivis', | |
50 | - 'app.type_documents', | |
51 | - 'app.fichemetrologiques', | |
49 | + 'app.TypeSuivis', | |
50 | + 'app.TypeDocuments', | |
51 | + 'app.Fichemetrologiques', | |
52 | 52 | //'app.mesures', |
53 | 53 | ]; |
54 | 54 | ... | ... |