General.php
56.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
<?php
namespace App\Test\TestCase\Controller;
//use Cake\TestSuite\IntegrationTestCase;
use App\Controller\AppController;
use Cake\ORM\TableRegistry;
//use Cake\ORM\Locator\TableLocator;
use Cake\TestSuite\IntegrationTestTrait;
use Cake\TestSuite\TestCase;
use App\Controller\MaterielsController;
use App\Controller\SuivisController;
//use App\Controller\SurCategoriesController;
use Cake\Http\Exception\NotImplementedException;
use Cake\Utility\Inflector;
use App\Controller\UsersController;
use Cake\Core\Configure;
//use App\Controller\MaterielsController;
/**
* App\Controller\GeneralController Test Case
*/
//class General extends IntegrationTestCase {
// https://book.cakephp.org/3/en/development/testing.html#controller-integration-testing
// New in version 3.7.0: The IntegrationTestCase class was moved into the IntegrationTestTrait trait.
class General extends TestCase {
use IntegrationTestTrait;
// Si DEBUG, affiche plus d'infos
protected $DEBUG=false;
//protected $DEBUG=true;
// instance du controleur testé
protected $controller_instance = null;
// instance spécifique de MaterielsController
protected $controller_materiels_instance = null;
//TODO: definine this in a superclass
/*
const PROFILE_USER = 1;
const PROFILE_RESPONSABLE = 2;
const PROFILE_ADMIN = 3;
const PROFILE_ADMINPLUS = 4;
const PROFILE_SUPERADMIN = 5;
*/
protected $ROLES = [
'USER',
'RESP',
'ADMIN',
//'ADMINP',
'SUPER'
];
/*
* (EP 20200504)
* Supprimé le cas USER_from_ldap car tous les users sont desormais dans la table users.
* On n'a donc plus jamais ce cas...
*/
protected $ROLES6 = [
//['USER_from_ldap'],
['USER'],
['RESP'],
['ADMIN'],
//['ADMINP'],
['SUPER']
/*
*/
];
protected $ROLES5 = [
//['USER_from_ldap'],
['USER'],
['RESP'],
['ADMIN'],
//['ADMINP'],
['SUPER']
/*
*/
];
protected $ROLES4 = [
/*
*/
['USER'],
['RESP'],
['ADMIN'],
['SUPER'],
];
const PROFILES = AppController::PROFILES;
// Current role (profile) of the user
private $CURRENT_ROLE = null;
// Utilisateur courant from DB (Entity)
private $CURRENT_USER = null;
// Instance de la table materiels
private $Materiels = null;
/*
public $ControllerApp = null;
public function setUp() {
parent::setUp();
/*
$config = TableRegistry::exists('Materiels') ? [] : [
'className' => 'App\Model\Table\MaterielsTable'
];
$this->Materiels = TableRegistry::get('Materiels', $config);
$config = TableRegistry::exists('Suivis') ? [] : [
'className' => 'App\Model\Table\SuivisTable'
];
$this->Suivis = TableRegistry::get('Suivis', $config);
*/ /*
$this->ControllerApp = new AppController();
}
public function tearDown() {
//unset($this->Materiels);
//unset($this->Suivis);
unset($this->ControllerApp);
parent::tearDown();
}
*/
public function setUp() {
// (EP202010)
// https://stackoverflow.com/questions/29748911/cakephp-connections-while-testing/45592461
/*
* Some tables tests were getting default db instead of test db for no reason.
* This solves the problem (we have a main test class from which we extend all tests, do some setting up. We put it there)
*/
TableRegistry::clear();
parent::setUp();
//$this->toto = 'titi';
// Check qu'on lit bien la table configurations de la BD de test !!
$config = TableRegistry::exists('Configurations') ? [] : [
'className' => 'App\Model\Table\ConfigurationsTable'
];
$confLabinvent = TableRegistry::getTableLocator()->get('Configurations', $config)->find()->first();
//assert($confLabinvent->ldap_authenticationType == 'uid', 'On ne lit pas la bonne configuration');
//debug($confLabinvent->ldap_authenticationType);
$this->assertTextEquals('uid', $confLabinvent->ldap_authenticationType, 'On ne lit pas la bonne configuration');
$this->assertTextNotEquals('samaccountname', $confLabinvent->ldap_authenticationType, 'On ne lit pas la bonne configuration');
$this->assertTextEquals(1, $confLabinvent->test, 'On ne lit pas la bonne configuration');
$this->assertTextEquals(800, $confLabinvent->prix_inventaire_administratif, 'On ne lit pas la bonne configuration');
$this->assertTextEquals('TEST', $confLabinvent->labNameShort, 'On ne lit pas la bonne configuration');
// On lit la config de test pour les champs materiels
// => moved to config/bootstrap avec _IN_TEST_MODE
/*
#Configure::config('my_yaml_engine', new YamlConfig());
$filetoload = CORE_PATH . 'config' . DS . CONFIG_MATERIEL_FIELDS_FILE_NAME.'.test.yml';
Configure::load($filetoload, 'my_yaml_engine');
*/
// On check la config pour voir si on lit bien la config de test
$general_fieldset_comment = Configure::read('MANDATORY_AND_READONLY_FIELDS.GENERAL.fieldset_comment');
$this->assertTextEquals('Paramètres généraux _TEST_', $general_fieldset_comment, 'On ne lit pas le bon fichier de configuration des champs materiels obligatoires');
}
public function d($msg) {
if ($this->DEBUG) pr($msg);
}
/*
* On recupère une entité quelconque de la BD (fixture), peu importe ce que c'est car on va la modifier
* Par défaut, on utilise la première entité de la BD (id 1)
*/
static protected function _getEntityIdOkForTesting() {
return 1;
}
// To be overriden by subclasses
protected function getNewEntityWithAllMandatoryFields() {
throw new NotImplementedException(__METHOD__);
}
protected function getEntitiesName() {
//throw new NotImplementedException("Méthode getEntitiesName() non implémentée !!");
$test_class_name = get_class($this); // MaterielsControllerTest, SurCategoriesControllerTest, ...
//debug($test_class_name);
$entities_name = explode('\\', substr($test_class_name,0,strpos($test_class_name, 'ControllerTest')));
//debug($entities_name);
return $entities_name[count($entities_name)-1];
}
protected function getNbEntitiesInFixture() {
$entities_name = $this->getEntitiesName();
$nb = TableRegistry::getTableLocator()->get($entities_name)->find()->count();
//$this->d("nb entities in fixture: $nb");
return $nb;
}
protected function getNbEntitiesExpectedInIndexView() {
return $this->getNbEntitiesInFixture();
}
protected function getMaterielsTable() {
//if (!$this->Materiels) $this->Materiels = TableRegistry::get('Materiels');
if (!$this->Materiels) $this->Materiels = TableRegistry::getTableLocator()->get('Materiels');
return $this->Materiels;
/*
$m = $this->Materiels->get($id);
return $m;
*/
}
protected function getMaterielsController() {
// On est dans MaterielsControllerTest => on retourne le controleur courant
if ($this->getEntitiesName()=='Materiels') return $this->_getController();
// Sinon, on retourne une instance spécifique pour les materiels
if (!$this->controller_materiels_instance) $this->controller_materiels_instance = new MaterielsController();
return $this->controller_materiels_instance;
}
protected function _getController() {
//if (!$this->controller_instance) $this->controller_instance = new MaterielsController();
$entities_name = $this->getEntitiesName(); // ex: 'Materiels', 'Suivis', 'SurCategories'...
//$entities_name = 'SurCategories';
//debug("entities_name is $entities_name");
$controller_name = $this->_getControllerFullNameFromEntitiesName($entities_name);
//debug("controller_name is $controller_name"); exit;
if (!$this->controller_instance) $this->controller_instance = new $controller_name();
return $this->controller_instance;
}
protected static function _getControllerInstanceFromName($entities_name) {
//$controller_name = $this->_getControllerFullNameFromEntitiesName($entities_name);
$controller_name = self::_getControllerFullNameFromEntitiesName($entities_name);
return new $controller_name();
}
/*
* $entities_name is 'Materiels', 'Suivis', 'SurCategories'...
* @return : App\Controller\SurCategoriesController, ...
*/
private static function _getControllerFullNameFromEntitiesName($entities_name) {
//$entities_name = ucfirst(strtolower($entities_name)); // Materiels, Suivis, Emprunts...
//$entities_name = ucfirst(strtolower($entities_name)); // Materiels, Suivis, Emprunts...
//$controller_name = 'App\\Controller\\'.$this->getEntitiesName().'Controller'; // ex: 'Materiels' ou 'Suivis'...
return 'App\\Controller\\'.$entities_name.'Controller'; // ex: 'MaterielsController' ou 'SuivisController'...
//$controller_name = 'App\\Controller\\'.$this->getEntitiesName().'Controller'; // ex: 'Materiels' ou 'Suivis'...
}
// This are data providers used for a lot of tests
// See https://jtreminio.com/2013/03/unit-testing-tutorial-part-2-assertions-writing-a-useful-test-and-dataprovider
public function dataProviderRoles4() { return $this->ROLES4; }
public function dataProviderRoles5() { return $this->ROLES5; }
// Idem dataProviderRoles5 mais avec USER_from_ldap en plus:
public function dataProviderRoles6() { return $this->ROLES6; }
protected function getActions() {
//return ['toto'];
return $this->_getController()->getActions();
}
// Combinaison de roles (U,R,A,S) et statuts (C,V,T,A)
public function dataProviderRoles4AndStatuses4() {
$roles_and_statuses = [];
foreach ($this->ROLES4 as $user_role) {
//debug($user_role[0]);
foreach ($this->MATOS_STATUSES as $matos_status)
$roles_and_statuses[] = [$user_role[0], $matos_status[0]];
}
//$this->d($roles_and_statuses);
return $roles_and_statuses;
}
//public function dataProviderActionsAndRoles4($controller) {
public function dataProviderActionsAndRoles4() {
$actions_and_roles = [];
$actions = $this->getActions();
//$actions = ['add'];
//$actions = MaterielsController::getActions();
//$controller = 'App\\Controller\\'.$controller;
//debug($this);
//debug("controller is $controller_name"); exit;
//$actions = $controller_name::getActions();
//$actions = SuivisController::getActions();
//debug($actions); exit;
//debug("entities is : ".$this->getEntitiesName()); exit;
//$actions = $this->getController()->getActions();
//debug("Liste des Actions à tester:");debug($actions); exit;
//foreach ($actions as $a) echo("$a\n");
/*
*/
/*
$actions = [
// CRUD
'add','add_by_copy', 'view','index','edit','delete',
//'view',
//'index',
// Autres
'statusCreated',
];
*/
$roles4 = [
/*
*/
'user',
'resp',
'admin',
'super',
];
//$actions = ['delete'];
//$actions = ['edit'];
foreach ($actions as $action)
//foreach ([0,1] as $i) {
//foreach ([1] as $i) {
//foreach ([0] as $i) {
foreach ([0,1,2,3] as $i) {
$item = [ $action, $roles4[$i], $this->ROLES4[$i][0] ];
//debug($item);
$actions_and_roles[] = $item;
}
return $actions_and_roles;
}
/* FONCTIONS UTILITAIRES UTILISÉES PAR (tous) LES TESTS */
public static function getRoleLevel($role) { return AppController::getRoleLevel($role); }
// Definition DIFFERENTE de celle de AppController
public function getUserRole() {
//return $this->ControllerMateriels->getUserRole();
if (! $this->CURRENT_ROLE) {
$user = $this->getCurrentUser();
/*
$user = TableRegistry::get('Users')->find()->where([
// username = LOGIN (ex: 'epallier') ; pour les tests : user1_SUPER, user5_USER, ...
'username' => $this->_session['Auth']['User']['uid'][0]
//'username' => 'user1_SUPER'
//'username' => $this->_session['Auth']['User']['cn'][0]
])->first();
*/
// Unpriviledged user
$role = $user ? $user['role'] : "Utilisateur";
$this->CURRENT_ROLE = $role;
}
return $this->CURRENT_ROLE;
}
protected function getCurrentUser() {
if (! $this->CURRENT_USER) {
$this->CURRENT_USER = TableRegistry::get('Users')->find()->where([
// username = LOGIN (ex: 'epallier') ; pour les tests : user1_SUPER, user5_USER, ...
'username' => $this->_session['Auth']['User']['uid'][0]
//'username' => 'user1_SUPER'
//'username' => $this->_session['Auth']['User']['cn'][0]
])->first();
}
return $this->CURRENT_USER;
}
// MEME Definition de celle de AppController (mais n'utilise pas la meme fonction getUserRole())
public function userHasRole($expectedRole, $ORMORE=false) {
$role = $this->getUserRole();
//debug($role);
if (! $ORMORE) return ($role == $expectedRole);
return ($this->getRoleLevel($role) >= $this->getRoleLevel($expectedRole));
}
// MEME Definition de celle de AppController (mais n'utilise la meme fonction getUserRole())
public function userHasRoleAtLeast($expectedRole) {
return $this->userHasRole($expectedRole, true);
}
// MEME Definition de celle de AppController (mais n'utilise la meme fonction getUserRole())
public function USER_IS_ADMIN_AT_LEAST() { return $this->userHasRoleAtLeast('Administration'); }
public function USER_IS_RESP_AT_LEAST() { return $this->userHasRoleAtLeast('Responsable'); }
public function USER_IS_SUPERADMIN() { return $this->userHasRole('Super Administrateur'); }
//public function USER_IS_ADMIN_PLUS() { return $this->userHasRole('Administration Plus'); }
public function USER_IS_ADMIN() { return $this->userHasRole('Administration'); }
public function USER_IS_RESP() { return $this->userHasRole('Responsable'); }
public function USER_IS_USER() { return $this->userHasRole('Utilisateur'); }
/*
public function USER_IS_ADMIN_AT_LEAST($role=null) {
if (is_null($role)) {
$role = $this->getUserRole();
$roles = ['Administration','Administration Plus','Super Administrateur'];
}
else {
$roles = ['ADMIN','ADMINP','SUPER'];
}
return in_array($role, $roles);
}
*/
public function authAs($role) {
switch ($role) {
case 'USER_from_ldap':
$this->authUtilisateurFromLdap();
//$this->CURRENT_ROLE = 'Utilisateur';
break;
case 'USER':
$this->authUtilisateurFromTable();
//$this->CURRENT_ROLE = 'Utilisateur';
break;
case 'RESP':
$this->authResponsable();
//$this->CURRENT_ROLE = 'Responsable';
break;
case 'ADMIN':
$this->authAdmin();
//$this->CURRENT_ROLE = 'Administration';
break;
/*
case 'ADMINP':
$this->authAdminPlus();
//$this->CURRENT_ROLE = 'Administration Plus';
break;
*/
case 'SUPER':
$this->authSuperAdmin();
//$this->CURRENT_ROLE = 'Super Administrateur';
break;
}
}
// authUser('login', 'Prenom', 'Nom');
// ex: $this->authUser('u1SUPER', 'user1', 'SUPER');
// ex: $this->authUser('user5_USER', 'test9', 'test0');
private function authUser($login, $givenName='test1', $name='test2') {
$user = [
'Auth' => [
'User' => [
// Nom
'sn' => [
0 => $name
],
// Email (normalement prenom.nom@test.fr)
'mail' => [
0 => 'testa@test.fr'
],
// Prenom
'givenname' => [
0 => $givenName
],
// LOGIN (normalement epallier)
/*
'cn' => [
0 => $cn
],
*/
'uid' => [
0 => $login
],
'userpassword' => [
0 => 'test'
]
]
]
];
$this->session($user);
//$this->request->getSession()->write($user);
$authType = [
'authType' => 'cn'
];
$this->session($authType);
//$this->request->getSession()->write($authType);
(new UsersController())->statsUpdateForCurrentUserWhen($user['Auth']['User'],'login');
}
public function authSuperAdmin() {
//$this->authUser('login', 'Prenom', 'Nom');
$this->authUser('u1SUPER', 'user1', 'SUPER');
///$this->authUser('user1_SUPER', 'user1', 'SUPER');
//$this->authUser('user1_SUPER', 'test1', 'test2');
//$this->authUser('testa', 'user1', 'SUPER');
}
/*
public function authSuperAdmin() {
$user = [
'Auth' => [
'User' => [
'sn' => [
0 => 'test2'
],
'mail' => [
0 => 'testa@test.fr'
],
'givenname' => [
0 => 'test1'
],
'cn' => [
//0 => 'testa'
0 => 'user1_SUPER'
],
'userpassword' => [
0 => 'test'
]
]
]
];
$this->session($user);
$authType = [
'authType' => 'cn'
];
$this->session($authType);
}
*/
/*
public function authAdminPlus() {
/////$this->authUser('user2_ADMINPLUS', 'test3', 'test4');
$this->authUser('u2ADMINP', 'user2', 'ADMINP');
}
*/
/*
$user = [
'Auth' => [
'User' => [
'sn' => [
0 => 'test4'
],
'mail' => [
0 => 'testz@test.fr'
],
'givenname' => [
0 => 'test3'
],
'cn' => [
//0 => 'testz'
0 => 'user2_ADMINPLUS'
],
'userpassword' => [
0 => 'test'
]
]
]
];
$this->session($user);
$authType = [
'authType' => 'cn'
];
$this->session($authType);
}
*/
public function dataProviderRoles2() { return $this->ROLES2; }
public function authAdmin() {
//////$this->authUser('user3_ADMIN', 'test5', 'test6');
$this->authUser('u3ADMIN', 'user3', 'ADMIN');
}
/*
$user = [
'Auth' => [
'User' => [
'sn' => [
0 => 'test6'
],
'mail' => [
0 => 'teste@test.fr'
],
'givenname' => [
0 => 'test5'
],
'cn' => [
//0 => 'teste'
0 => 'user3_ADMIN'
],
'userpassword' => [
0 => 'test'
]
]
]
];
$this->session($user);
$authType = [
'authType' => 'cn'
];
$this->session($authType);
}
*/
public function authResponsable() {
///////$this->authUser('user4_RESP', 'test7', 'test8');
$this->authUser('u4RESP', 'user4', 'RESP');
}
/*
$user = [
'Auth' => [
'User' => [
'sn' => [
0 => 'test8'
],
'mail' => [
0 => 'testr@test.fr'
],
'givenname' => [
0 => 'test7'
],
'cn' => [
//0 => 'testr'
0 => 'user4_RESP'
],
'userpassword' => [
0 => 'test'
]
]
]
];
$this->session($user);
$authType = [
'authType' => 'cn'
];
$this->session($authType);
}
*/
public function authUtilisateur() { $this->authUtilisateurFromTable(); }
public function authUtilisateurFromTable() {
/////$this->authUser('user5_USER', 'test9', 'test0');
$this->authUser('u5USER', 'user5', 'USER');
}
public function authUtilisateurFromLdap() {
//$this->authUser('_NouvelUtilisateur_username', 'NOUVEL', 'UTILISATEUR');
$this->authUser('_fake_ldap_user_', 'FAKE_LDAP', 'UTILISATEUR');
}
/*
$user = [
'Auth' => [
'User' => [
'sn' => [
0 => 'test0'
],
'mail' => [
0 => 'testt@test.fr'
],
'givenname' => [
0 => 'test9'
],
'cn' => [
//0 => 'testt'
0 => 'user5_USER'
],
'userpassword' => [
0 => 'test'
]
]
]
];
$this->session($user);
$authType = [
'authType' => 'cn'
];
$this->session($authType);
}
*/
//protected function assertResponseContainsIf($role, $condition, $content, $messageIfNot=null) {
//protected function assertResponseContainsIf(string $role, bool $condition, array $contents, $testOpposite=true) {
protected function assertResponseContainsIf($role, $condition, array $contents, $testOpposite=true) {
if ($condition) {
$messageOnFail = 'devrait avoir accès';
$assertMethod = 'assertResponseContains';
}
else {
if (!$testOpposite) return;
$messageOnFail = 'ne devrait PAS avoir accès';
$assertMethod = 'assertResponseNotContains';
}
foreach ($contents as $content=>$endmsg)
$this->$assertMethod($content, "Le profil (rôle) $role $messageOnFail $endmsg");
/*
$this->assertResponseContains($content, 'Le profil (rôle) '.$role.' devrait avoir accès à '. $messageIfNot);
}
else {
$this->assertResponseNotContains($content, 'Le profil (rôle) '.$role.' ne devrait PAS avoir accès à '. $messageIfNot);
}
*/
}
// Test qu'on a bien le nb attendu d'entités dans la vue index
protected function _testNbEntitiesInIndexView($entities_name, $nb_entities, $error_msg=null) {
//$this->get('/emprunts/index');
$this->get("/$entities_name/index");
if (!$error_msg) $error_msg = "Le nombre des $entities_name dans la BD (tel qu'affiché par la vue index) devrait être de $nb_entities !";
$this->assertResponseContains("Liste des $entities_name ($nb_entities)", $error_msg);
}
// Ajout d'entités liées à un matériel, telles que suivis, emprunts, ou documents...
protected function _testAddEntitiesRelatedToMateriel($entity_name, $nb_entities_in_fixture, $data) {
$matos_created_id = 1;
$matos_validated_id = 3;
$entities_name = $entity_name.'s';
// Test qu'on a bien le nb d'entités de la fixture en BD
$nb = $nb_entities_in_fixture;
$this->_testNbEntitiesInIndexView($entities_name, $nb);
/*
//$this->get('/emprunts/index');
$this->get("/$entities_name/index");
$this->assertResponseContains("Liste des $entities_name ($nb)", "Le nombre initial (fixture) des $entities_name dans la BD devrait être de $nb !");
*/
// Ajout d'une 1ère entité (matériel VALIDATED) => OK
$data['materiel_id'] = $matos_validated_id;
$this->assertTextEquals($data['materiel_id'], $matos_validated_id);
//$this->post("/emprunts/add/$matos_validated_id", $data);
$this->post("/$entities_name/add/$matos_validated_id", $data);
$nb++;
$this->_testNbEntitiesInIndexView($entities_name, $nb, "L'ajout d'un $entity_name (1) pour un materiel VALIDATED ne se fait pas correctement alors que ça devrait !");
return;
/*
$this->get("/$entities_name/index");
$this->assertResponseContains("Liste des $entities_name ($nb)", "L'ajout d'un $entity_name (1) pour un materiel VALIDATED ne se fait pas correctement alors que ça devrait !");
*/
// Ajout d'une 2ème entité (matériel VALIDATED) => OK
//$data['materiel_id'] = $matos_validated_id;
//$this->assertTextEquals($data['materiel_id'], $matos_validated_id);
$this->post("/$entities_name/add/$matos_validated_id", $data);
$nb++;
$this->_testNbEntitiesInIndexView($entities_name, $nb, "L'ajout d'un $entity_name (2) pour un materiel VALIDATED ne se fait pas correctement alors que ça devrait !");
/*
$this->get("/$entities_name/index");
$this->assertResponseContains("Liste des $entities_name ($nb)", "L'ajout d'un $entity_name (2) pour un materiel VALIDATED ne se fait pas correctement alors que ça devrait !");
*/
// Ajout d'une 3ème entité (matériel CREATED) => KO
$data['materiel_id'] = $matos_created_id;
$this->assertTextEquals($data['materiel_id'], $matos_created_id);
$this->post("/$entities_name/add/$matos_created_id", $data);
//$nb++;
$this->_testNbEntitiesInIndexView($entities_name, $nb, "L'ajout d'un $entity_name (3) pour un materiel CREATED ne se fait pas correctement alors que ça ne devrait pas !");
/*
$this->get("/$entities_name/index");
$this->assertResponseContains("Liste des $entities_name ($nb)", "L'ajout d'un $entity_name (3) pour un materiel CREATED se fait correctement alors que ça ne devrait pas !");
*/
// Ajout d'une 4ème entité (matériel VALIDATED) => OK
$data['materiel_id'] = $matos_validated_id;
$this->assertTextEquals($data['materiel_id'], $matos_validated_id);
$this->post("/$entities_name/add/$matos_validated_id", $data);
$nb++;
$this->_testNbEntitiesInIndexView($entities_name, $nb, "L'ajout d'un $entity_name (4) pour un materiel VALIDATED ne se fait pas correctement alors que ça devrait !");
/*
$this->get("/$entities_name/index");
$this->assertResponseContains("Liste des $entities_name ($nb)", "L'ajout d'un $entity_name (4) pour un materiel VALIDATED ne se fait pas correctement alors que ça devrait !");
*/
} // testAddEntitiesRelatedToMateriel
protected function inflectEntityName($entities_name) {
//$entities_name = strtolower($entities_name);
switch ($entities_name) {
case 'Materiel': $entities_name = 'Matériel'; break;
case 'Materiels': $entities_name = 'Matériels'; break;
case 'User': $entities_name = 'Utilisateur'; break;
case 'Users': $entities_name = 'Utilisateurs'; break;
case 'SurCategorie': $entities_name = 'Domaine'; break;
case 'SurCategories': $entities_name = 'Domaines'; break;
/*
case 'materiel': $entities_name = 'matériel'; break;
case 'materiels': $entities_name = 'matériels'; break;
case 'user': $entities_name = 'utilisateur'; break;
case 'users': $entities_name = 'utilisateurs'; break;
case 'sur-categorie': $entities_name = 'domaine'; break;
case 'sur-categories': $entities_name = 'domaines'; break;
*/
}
// Par défaut, aucun changement (ex: 'suivis' => 'suivis')
//return $entities_name;
return lcfirst($entities_name);
}
protected function _checkNbEntitiesInIndexViewIsAsExpected($entities_name,$nbentities_expected) {
//$this->get('/materiels/index');
//$entities_name = Inflector::dasherize($entities_name);
//debug("entities1 $entities_name");
$this->get("/$entities_name/index");
//debug($_SESSION);return;
$this->assertResponseOk();
$entities_name = $this->inflectEntityName($entities_name);
//debug("entities2 $entities_name");
$this->assertResponseContains("Liste des $entities_name ($nbentities_expected)", "Le nombre d'entités dans la vue 'index' est incorrect");
}
/**
*
* (EP 20200620)
*
* Test (automatique) de (presque) TOUTES les actions d'un controleur
*
* Appelé par chaque test de controleur en passant en paramètre $entities_name (et le reste par DataProvider)
*
* @return void
*
*/
protected function _testAuthorizationsForAllControllerActions($action, $role_short, $role_long) {
//protected function _testAuthorizationsForAllActionsOfController($entities_name, $action, $role_short, $role_long) {
// Force le rechargement des entités materiel en BD (car on les modifie en cours de route)
//AppController::forceReload();
$entities_name = $this->getEntitiesName();
//debug("entities0 $entities_name");
$IS_MATERIEL = ($entities_name=='Materiels');
//debug("entities_name is $entities_name");
/*
//$controller_name = 'Materiels';
$controller_name = 'App\Controller\\'.$entities_name.'Controller';
//$mc = new MaterielsController();
$c = new $controller_name();
//$entity_name =$c->name;
*/
$c = $this->_getController();
// POUR CHAQUE $action et $role (fournis par le dataProvider) :
$this->d("*******************");
//$this->d(" CONTROLEUR $c->name, ACTION $action, ROLE $role_short");
$this->d(" CONTROLEUR {$c->getName()}, ACTION $action, ROLE $role_short");
$this->d("*******************");
//$this->setUp();
//$this->authSuperAdmin();
$this->authAs($role_long);
// NULL why ?
//debug($_SESSION);return;
$nbentities = $this->getNbEntitiesExpectedInIndexView();
// NULL why ?
//debug($_SESSION);return;
$this->_checkNbEntitiesInIndexViewIsAsExpected($entities_name, $nbentities);
// pas NULL why ?
//debug($_SESSION);return;
// On recupère une entité quelconque de la BD (fixture), peu importe ce que c'est car on va la modifier
$id = $this->_getEntityIdOkForTesting();
if (in_array($action, ['add','index'])) $id=null; // OU $id=0 ?
$getpost = in_array($action, ['view', 'index', 'find', 'printLabelRuban']) ? 'get':'post';
$posted_data = [];
if ($action=='add') $posted_data = $this->getNewEntityWithAllMandatoryFields();
// Si 'edit', on marque le materiel comme ayant été modifié (on change le nom)
if ($action=='edit') {
$e = $c->getEntity($id);
$name_field = $c->getNameFieldLabel();
// On ajoute '(CHANGED)' à la fin du nom de l'entité pour vérifier ensuite qu'elle a bien été modifiée
$posted_data = [
$name_field => $e->$name_field.' (CHANGED)'
];
}
// Quel id pour le matos (associé) ?
// Par défaut (pour MaterielsController) $matos_id et $id sont identiques (confondus)
$matos_id = $id;
$entities_related_to_materiel = ['Documents', 'Emprunts', 'Suivis'];
// Entité associée à un matériel ? (Suivis, Emprunts, Documents...)
//if (!$IS_MATERIEL && $action!='index') {
if ( in_array($entities_name, $entities_related_to_materiel) && $action!='index' ) {
//if ($action=='add') $related_matos_id = $this->getNewEntityWithAllMandatoryFields()->materiel_id;
//$related_matos_id = $this->getMaterielsController()->_getEntityIdOkForTesting();
$actions_with_related_matos_id = ['add'];
//if ($c->name == 'Documents') $actions_with_related_matos_id[] = ['admission','sortie'];
if ($c->getName() == 'Documents') $actions_with_related_matos_id[] = ['admission','sortie'];
if (in_array($action, $actions_with_related_matos_id)) {
// id = celui du matos associé
$id = MaterielsControllerTest::_getEntityIdOkForTesting();
if ($action == 'add') $posted_data['materiel_id'] = $id;
$matos_id = $id;
}
else {
// id = celui de l'entité (suivi, emprunt, document....)
// matos_id = celui associé à l'entité
$e = $this->_getController()->getEntity($id);
if ($e->has('materiel_id')) $matos_id = $e->materiel_id;
}
}
$access_condition = $c->getAccessConditionForActionAndRole($action,$role_short);
//debug("Condition d'accès pour l'action $action et le rôle $role_short"); debug($access_condition);
/*
*
* Test de l'accès à l'action : 3 GRANDS CAS POSSIBLES
*
*/
// Force le rechargement des materiels car ils vont être modifiés par les tests
AppController::forceReload();
/*
if ($access_condition==='default') {
debug("is default");
}
*/
// 1) ACCÈS AUTORISÉ
if ($access_condition===0) {
$this->d("is 0");
//if ($this->DEBUG) {debug($action); debug($id)};
$this->_testExecActionForId($action,$id,$getpost,$posted_data,true,$nbentities);
}
// 2) ACCÈS REFUSÉ
elseif ($access_condition===-1) {
$this->d("is -1");
$this->_testExecActionForId($action,$id,$getpost,$posted_data,false,$nbentities);
}
// 3) ACCÈS AUTORISÉ SOUS CONDITION
// ATTENTION : toujours tester le cas où ca marche (AUTORISÉ) en dernier
// Utile pour des actions telles que 'delete' !!!
elseif (is_array($access_condition)) {
$this->d("is array");
$access_condition_on_status = $access_condition[0];
$access_condition_on_belonging = $access_condition[1];
// 4 cas possibles :
/*
* a) [0,0] => idem cas 1) ci-dessus => accès autorisé (avec matos quelconque)
*/
//if ($access_condition_on_status===0 && $access_condition_on_belonging===0) {
if ([$access_condition_on_status,$access_condition_on_belonging]===[0,0]) {
$this->d("- is [0,0] => equivaut à 0");
$this->_testExecActionForId($action,$id,$getpost,$posted_data,true,$nbentities);
}
/*
* b) [0,1] => on ne teste que l'appartenance, soit 2 tests :
* - (1) on crée un materiel (T,F) => on teste que l'accès être bien AUTORISÉ
* - (2) on crée un materiel (F,T) => on teste que l'accès être bien REFUSÉ, SAUF si le profil est RESP (AUTORISÉ)
*/
elseif ([$access_condition_on_status,$access_condition_on_belonging]===[0,1]) {
$this->d("- is [0,1]");
//$m = $this->Materiels->get($id);
// - (1) (T,F)
$this->_updateMatosBelongingToCurrentUserAndInSameGroup($matos_id, true, false);
$this->_testExecActionForId($action,$id,$getpost,$posted_data,true,$nbentities);
// - (2) (F,T)
$this->_updateMatosBelongingToCurrentUserAndInSameGroup($matos_id, false, true);
// ok seulement pour RESP
$this->_testExecActionForId($action,$id,$getpost,$posted_data,$this->USER_IS_RESP(),$nbentities);
}
/*
* c) [*,0] => on ne teste que le statut, soit 2 tests :
* - (1) on crée un matériel qui A le statut demandé => on teste que l'accès être bien AUTORISÉ
* - (2) on crée un matériel qui n'A PAS le statut demandé => on teste que l'accès être bien REFUSÉ
*/
elseif (is_string($access_condition_on_status) && $access_condition_on_belonging===0) {
$this->d("- is [*,0]");
//$m = $this->Materiels->get($id);
// - (1) statut KO
/*
$this->_updateMatosWithStatusAs($id, $access_condition_on_status, false);
$this->_testExecActionForId($action,$id,false);
*/
// - (2) statut OK
$this->_updateMatosWithStatusAs($matos_id, $access_condition_on_status, true);
$this->_testExecActionForId($action,$id,$getpost,$posted_data,true,$nbentities);
}
/*
* d) [*,1] => Cas général, on teste les 2 conditions, soit 2x2=4 tests
* Les 2 conditions (A-statut et B-appartenance) doivent être vérifiées : A && B (c'est un AND)
* On va donc tester le couple (A,B), ce qui nous donne 3 cas :
*/
elseif (is_string($access_condition_on_status) && $access_condition_on_belonging===1) {
$this->d("- is [*,1]");
//$m = $this->Materiels->get($id);
// (1) (T,F) => accès REFUSÉ
$this->d("(1. TF) should be KO");
$this->_updateMatosWithStatusAs($matos_id, $access_condition_on_status, true);
$this->_updateMatosBelongingToCurrentUserAndInSameGroup($matos_id, false, false);
$m = $this->Materiels->get($matos_id);
$this->d("(1) id is $id, materiel (id, statut, nom_responsable, nom_createur) is : $m->id, $m->status, $m->nom_responsable, $m->nom_createur");
$this->_testExecActionForId($action,$id,$getpost,$posted_data,false,$nbentities);
// (2) (F,T) => accès REFUSÉ
$this->d("(2. FT) should be KO");
//debug($access_condition_on_status);
$this->_updateMatosWithStatusAs($matos_id, $access_condition_on_status, false);
$this->_updateMatosBelongingToCurrentUserAndInSameGroup($matos_id, true, true);
$m = $this->Materiels->get($matos_id);
$this->d("(2) id is $id, materiel (id, statut, nom_responsable, nom_createur) is : $m->id, $m->status, $m->nom_responsable, $m->nom_createur");
$this->_testExecActionForId($action,$id,$getpost,$posted_data,false,$nbentities);
// (3) (F,F) => accès REFUSÉ => inutile de tester ce cas
// (4) (T,T) => accès AUTORISÉ
$this->d("(3. TT) should be OK");
$this->_updateMatosWithStatusAs($matos_id, $access_condition_on_status, true);
$this->_updateMatosBelongingToCurrentUserAndInSameGroup($matos_id, true, $this->USER_IS_RESP());
$m = $this->Materiels->get($matos_id);
$this->d("(3) id is $id, materiel (id, statut, nom_responsable, nom_createur) is : $m->id, $m->status, $m->nom_responsable, $m->nom_createur");
$this->_testExecActionForId($action,$id,$getpost,$posted_data,true,$nbentities);
}
else throw new \ErrorException("La conditions d'accès $access_condition est incorrecte (1)");
}
else throw new \ErrorException("La conditions d'accès $access_condition est incorrecte (2)");
} // testAuthorizationsForAllActionsOfController()
protected function _updateMatosStatusAndBelongingWith($id, $status, $BELONGS=true, $SAMEGROUP=true) {
$this->_updateMatosWithStatusAs($id, $status);
$this->_updateMatosBelongingToCurrentUserAndInSameGroup($id, $BELONGS, $SAMEGROUP);
}
private function _updateMatosWithStatusAs($id, $status, $WITH_SAME_STATUS=true, $DO_SAVE=true) {
//$mc = new MaterielsController();
$mc = $this->getMaterielsController();
$u = $this->getCurrentUser();
$m = $this->getMaterielsTable()->get($id);
//$m = $this->getMateriel($id);
//debug("statut:"); debug($status);
$NOT = FALSE;
// Statut commence par 'NOT' ?
if (strpos($status,'NOT ') === 0) {
$NOT = TRUE;
// on prend le statut après le "NOT " :
$status = substr($status,4);
}
// Condition de statut complexe ? (normalement de la forme "STATUS &&_ou_|| autre_condition")
// => pour simplifier, on ne tient compte que du STATUS (donc le 1er argument)
if ( (strpos($status,'&&')!==FALSE) || (strpos($status,'||')!==FALSE) ) {
//debug("statut complexe '$status'");
$status = explode(' ', $status)[0];
//$status = $status[0];
//debug("=> simplifié en '$status'");
}
//if ($mc->isStatus($status)) {
if (! $mc->isStatus($status))
// On a un cas spécial, du style 'conf.hasPrinter' (sans statut avant, alors que ça pourrait être "VALIDATED && conf.hasPrinter")
// Pour le moment, on ne le traite pas...
//throw new \Exception("Le statut du matériel est incorrect !!!");
;
else {
/*
$m->status = $WITH_SAME_STATUS ? $status : $mc->getNextStatusFrom($status);
if ($NOT) $m->status = $mc->getNextStatusFrom($status);
*/
// MEME statut (par défaut) ?
$m->status = $status;
//debug("bef: $m->status");
// ou STATUT différent ?
if ( ($NOT && $WITH_SAME_STATUS) || (!$NOT && !$WITH_SAME_STATUS) ) $m->status = $mc->getNextStatusFrom($status);
//debug("after: $m->status");
// On sauvegarde le matos modifié
//if (! $this->Materiels->save($m))
//if ($DO_SAVE && !$this->getMaterielsTable()->save($m))
if ($DO_SAVE)
if (! $this->getMaterielsTable()->save($m) )
throw new \Exception("La sauvegarde du materiel modifié ne se fait pas !!!");
//return $m;
}
//else throw new \Exception("Le statut du matériel est incorrect !!!");
return $m;
}
private function _updateMatosBelongingToCurrentUserAndInSameGroup($id, $BELONGS=true, $SAMEGROUP=true, $DO_SAVE=true) {
$u = $this->getCurrentUser();
$m = $this->Materiels->get($id);
// BELONGS ?
$user_name = $BELONGS ? $u->nom : 'inconnu'; // 'user5 USER'
$m->nom_responsable = $user_name;
$m->nom_createur = $user_name;
// SAME GROUP ?
$WRONG_GROUP_ID = 2;
$groupe_thematique_id = $SAMEGROUP ? $u->groupes_thematique_id : $WRONG_GROUP_ID;
$groupe_metier_id = $SAMEGROUP ? $u->groupes_metier_id : $WRONG_GROUP_ID;
$m->groupes_thematique_id = $groupe_thematique_id;
$m->groupes_metier_id = $groupe_metier_id;
//debug($matos);
// On sauvegarde le matos modifié
if ( $DO_SAVE && !$this->Materiels->save($m) )
throw new \Exception("La sauvegarde du materiel modifié ne se fait pas !!!");
return $m;
}
//private function _testExecActionForId($action,$id,$SHOULD_BE_SUCCESS) {
private function _testExecActionForId($action,$id,$getpost,$posted_data,$SHOULD_BE_SUCCESS,$nbentities) {
//debug($this->_flashMessages);
//$entities = 'materiels';
//$entities_name = strtolower($this->getEntitiesName());
//$entities_name = Inflector::dasherize($this->getEntitiesName());
$entities_name = $this->getEntitiesName();
//$entities_name = $this->getEntitiesName();
//$IS_MATERIEL = ($entities_name=='materiels');
$IS_MATERIEL = ($entities_name=='Materiels');
//$getpost = in_array($action, ['add','add_by_copy','edit','delete', 'statusCreated']) ? 'post' : 'get';
//$getpost = in_array($action, ['view', 'index', 'find', 'printLabelRuban']) ? 'get':'post';
//$getpost = in_array($action, ['view', 'index', 'find']) ? 'get':'post';
//$this->post("/materiels/$action/$matos_id");
// Si 'add' ou 'index' => pas d'id
//debug("0"); debug($_SESSION);
//$data = ($action=='add') ? $this->newMaterielWithAllMandatoryFields : [];
//$data = ($action=='add') ? $this->getNewEntityWithAllMandatoryFields() : [];
/*
$data = [];
if ($action=='add') {
$data = $this->getNewEntityWithAllMandatoryFields();
if ($entities_name != 'materiels') $data['materiel_id'] = $id;
}
*/
$exec_action = $action;
if ($action=='add_by_copy') $exec_action='add';
$full_action = "/$entities_name/$exec_action";
//if (! in_array($action, ['add', 'index'])) $full_action .= "/$id";
if (! ($action=='index' || ($action=='add' && $IS_MATERIEL)) ) $full_action .= "/$id";
$this->d("Execution action : \$this->$getpost($full_action, data); (avec data=)"); $this->d($posted_data);
// GET
if ($getpost=='get')
$this->$getpost($full_action);
// POST
else
$this->$getpost($full_action, $posted_data);
/*
if ($SUCCESS) $this->assertNoRedirect();
else $this->assertRedirect();
*/
//$this->get('/materiels/view/2');
//$res = $this->_getBodyAsString();
//$res = $this->_getBodyAsString(); debug($res);
//debug($this->_flashMessages);
//debug($_SESSION);
//debug($flash_message);
// Normalement, l'action devrait avoir été autorisée
if ($SHOULD_BE_SUCCESS) {
$flash_message = null;
$this->assertResponseSuccess();
//if ($entities_name=='materiels' && $action=='printLabelRuban') {
if ($entities_name=='Materiels' && $action=='printLabelRuban') {
/*
$this->assertFileResponse('inventirap_label.label', 'pas de fichier généré');
$this->assertHeader('Content-type', 'application/xml');
$this->assertHeader('Content-Type', 'application/xml');
*/
//var_dump($this->_getBodyAsString());
$filename = 'inventirap_label.label';
$this->assertHeader('Content-Disposition', 'attachment; filename="'.$filename.'"');
//$this->assertHeader('Content-Disposition', "attachment; filename='$filename'");
$msg_error = "L'action $action n'est pas autorisée (pour le role {$this->getUserRole()}) alors qu'elle devrait !!!";
// - DLS :
/*
$this->assertResponseContains("ContinuousLabel", $msg_error);
$this->assertResponseContains("<PaperOrientation>Landscape</PaperOrientation>", $msg_error);
*/
// - DCD :
$this->assertResponseContains("DYMOLabel", $msg_error);
$this->assertResponseContains("19X7-TAPE BLACK/WHITE", $msg_error); // format 19mm
$this->assertResponseContains("<Orientation>Landscape</Orientation>", $msg_error);
}
// GET
if ($getpost == 'get') {
$this->assertResponseOk();
$this->assertResponseNotEmpty();
$this->assertNoRedirect();
if (isset($_SESSION['Flash'])) {
$flash_message = $_SESSION['Flash'];
//$this->assertEquals([], $flash_message);
}
}
// POST
else {
// Nom de l'entité au singulier et en minuscule
$entity_name = substr($entities_name,0,-1);
$entity_name = $this->inflectEntityName($entity_name);
//if ($entity_name=='materiel') $entity_name='matériel';
$c = $this->_getController();
$article = $c->getArticle();
if ($entity_name=='domaine') $article='Le ';
// "Le materiel/suivi/emprunt a bien été"
$expected_flash_message = $article.$entity_name.' a bien été ';
switch($action) {
case 'add':
case 'add_by_copy':
$expected_flash_message .= 'ajouté';
// Vérifier la conséquence de l'action : 1 entité de plus
//debug("entities_name4 is $entities_name");
$this->_checkNbEntitiesInIndexViewIsAsExpected($entities_name, $nbentities+1);
break;
case 'edit':
$expected_flash_message .= 'modifié';
// Vérifier la conséquence de l'action : 1 entité de plus
$e = $c->getEntity($id);
$this->d("entity is"); $this->d($e);
$name_field = $c->getNameFieldLabel();
$this->assertTrue(strpos($e->$name_field,'(CHANGED)')!==false, "L'entité n'a pas été modifiée (action 'edit')");
break;
case 'delete':
$expected_flash_message .= 'supprimé';
// Vérifier la conséquence de l'action : 1 entité de moins
$this->_checkNbEntitiesInIndexViewIsAsExpected($entities_name, $nbentities-1);
break;
case 'statusCreated': $expected_flash_message .= 'rétrogradé au statut CREATED'; break;
case 'statusValidated': $expected_flash_message .= 'validé'; break;
case 'statusTobearchived': $expected_flash_message = "La sortie d'inventaire a bien été demandée"; break;
case 'statusArchived': $expected_flash_message .= "archivé (sorti de l'inventaire)"; break;
case 'setLabelIsPlaced':
case 'setLabelIsNotPlaced':
$verb = ($action=='setLabelIsPlaced') ? 'a' : "n'a pas";
$expected_flash_message = "Je prends note que l'étiquette $verb été collée sur le matériel"; break;
}
$flash_message = isset($_SESSION['Flash']) ? $_SESSION['Flash']['flash'][0]['message']:[];
//if ($flash_message==null) $flash_message = [];
}
$this->d("(2) action $action, flash is:");$this->d($flash_message);
/*
* Test flash message
* (https://book.cakephp.org/3/en/development/testing.html#testing-flash-messages)
*
* If you want to assert the presence of flash messages in the session and not the rendered HTML,
* you can use enableRetainFlashMessages() in your tests
* to retain flash messages in the session so you can write assertions :
*
* $this->enableRetainFlashMessages();
*/
if ($flash_message) {
// Assert a flash message in the 'flash' key.
// Test message partiel
$this->assertTrue(strpos($flash_message, $expected_flash_message) === 0, "Le message flash est incorrect : ($flash_message) au lieu de ($expected_flash_message)");
// Test message complet
$this->assertFlashMessage($expected_flash_message, 'flash');
//$this->assertEquals($expected_flash_message, $flash_message);
}
//$this->assertResponseContains("Matos Test 2 (C)", "L'action $action n'est pas autorisée (pour le role {$this->getUserRole()}) !!!");
// BUG !!!! pourquoi ça marche avec l'action 'view' ???
//$this->assertResponseContains("Désolé, vous n'êtes pas autorisé à accéder à cette zone", "(2)L'action $action n'est pas autorisée (pour le role {$this->getUserRole()}) !!!");
//$this->assertResponseNotContains("Désolé, vous n", "L'action $action n'est pas autorisée (pour le role {$this->getUserRole()}) alors qu'elle le devrait !");
}
// Normalement, l'action devrait avoir été refusée
else {
// 1) Assert redirect
//$this->assertRedirect(['controller' => 'Users', 'action' => 'login']);
//$this->assertRedirect(['controller' => 'Pages', 'action' => 'home']);
// OK
//$this->assertResponseSuccess();
$this->assertResponseEmpty();
//if (!in_array($action,['add_by_copy'])) $this->assertResponseEmpty();
//if ($getpost == 'get') $this->assertRedirect('/');
// MARCHE PAS !!!
//$this->disableErrorHandlerMiddleware();
// OK
//$this->assertResponseCode(302);
// VOIR LE CONTENU DE LA REPONSE HTML
//debug($this->_response); // materiels/view/2
if (!in_array($action,['edit','delete'])) $this->assertRedirect('/');
//if (!in_array($action,['edit','delete'])) $this->assertRedirect('/materiels/view/2');
//if (!in_array($action,['edit','delete'])) $this->assertRedirect('/pages/home');
//if (!in_array($action,['edit','delete'])) $this->assertRedirect('/pages/display');
//var_dump($this->headers['Location']); exit;
// 2) Assert Flash error message (flash message in the 'flash' key)
// Assert a flash messages uses the error element
$this->assertFlashElement('Flash/error');
$expected_flash_message = "Désolé, vous n'êtes pas autorisé à accéder à cette zone.";
//var_dump($flash_message);
// Test message complet
//$this->assertFlashMessage($expected_flash_message);
$this->assertFlashMessage($expected_flash_message, 'flash');
$this->assertSession($expected_flash_message, 'Flash.flash.0.message');
$flash_message = $_SESSION['Flash']['flash'][0]['message'];
$this->assertEquals($expected_flash_message, $flash_message);
//$this->assertTrue(strpos($flash_message, "Désolé, vous n'êtes pas") !== false);
$this->assertTrue(strpos($flash_message, "Désolé, vous n'êtes pas") === 0);
// BUG !!! why ???
//$this->assertResponseContains("Désolé", "L'action $action est autorisée (pour le role {$this->getUserRole()}) alors qu'elle ne le devrait pas !");
}
} // _testExecActionForId()
/*
* Test générique de l'action delete (appelé par chaque controleur de test)
*/
protected function _testActionDeleteEntity($role) {
$action = 'delete';
//$entities_name = strtolower($this->getEntitiesName());
$entities_name = $this->getEntitiesName();
$this->d("*******************");
$this->d(" CONTROLEUR $entities_name, ACTION $action, ROLE $role");
$this->d("*******************");
$this->authAs($role);
$nbentities = $this->getNbEntitiesExpectedInIndexView();
$this->_checkNbEntitiesInIndexViewIsAsExpected($entities_name, $nbentities);
$id = $this->_getEntityIdOkForTesting();
$this->post("$entities_name/delete/$id");
$nbentities--;
$this->_checkNbEntitiesInIndexViewIsAsExpected($entities_name, $nbentities);
}
}