MaterielsControllerTest.php
58.4 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
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
<?php
namespace App\Test\TestCase\Controller;
//use App\Test\TestCase\Controller\General;
use App\Controller\MaterielsController;
//use Cake\TestSuite\IntegrationTestCase;
use Cake\ORM\TableRegistry;
//use phpDocumentor\Reflection\Types\Self_;
use Cake\Core\Configure;
use App\Controller\AppController;
/**
* App\Controller\MaterielsController Test Case
*/
class MaterielsControllerTest extends General {
//class MaterielsControllerTest extends IntegrationTestCase {
/**
* Fixtures
*
* @var array
*/
public $fixtures = [
'app.materiels',
'app.sur_categories',
'app.categories',
'app.sous_categories',
'app.groupes_thematiques',
'app.groupes_metiers',
'app.users',
'app.organismes',
'app.sites',
'app.documents',
'app.suivis',
'app.emprunts',
'app.configurations',
'app.type_suivis',
'app.type_documents',
'app.fournisseurs',
'app.unites'
];
/*
private $statuses = [
'CREATED',
'VALIDATED',
'TOBEARCHIVED',
'ARCHIVED'
];
*/
private $STATUSES = MaterielsController::allStatus;
const mandatoryFieldsForCreation = [
//'id',
'designation',
'sur_categorie_id',
'categorie_id',
//'materiel_administratif', 'materiel_technique',
//'status' => 'CREATED',
'date_acquisition'
];
private $newMaterielWithAllMandatoryFields = [
//'id' => 16,
'designation' => 'Test 15',
'sur_categorie_id' => 1,
'categorie_id' => 1,
'materiel_administratif' => 0,
'materiel_technique' => 1,
//'status' => 'CREATED',
'date_acquisition' => '19-04-2016',
//'date_acquisition' => '19-04-2019',
/*
'nom_responsable' => 'Jacques Utilisateur',
'email_responsable' => 'Jacques.Utilisateur@irap.omp.eu'
'nom_createur' => 'Pallier Etienne',
'nom_modificateur' => 'Jean Administration',
*/
];
/* FONCTIONS UTILITAIRES UTILISÉES PAR LES TESTS */
/**
* setUp method
*
* @return void
*/
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->ControllerMateriels = new MaterielsController();
}
/**
* tearDown method
*
* @return void
*/
public function tearDown() {
unset($this->Materiels);
unset($this->Suivis);
unset($this->ControllerMateriels);
parent::tearDown();
}
// 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 dataProviderRoles5() { return $this->ROLES5; }
// Idem dataProviderRoles5 mais avec USER_from_ldap en plus:
public function dataProviderRoles6() { return $this->ROLES6; }
/*
* Tests organisés par (CONTROLEUR puis par) ACTION
*
* Ici, on teste les ACTIONS du controleur MaterielsController
* Voir https://docs.google.com/document/d/1-OhEeoi96j6ueUl5NQCQ9ZsTfbJTFw3ZVaWU2iYly_o/edit#heading=h.bxuswhw2zzwt
*
* Chaque test d'une ACTION doit tester l'appel de cette action pour chaque ROLE
*
*/
/*
* *****************************************************************************
* Basic ACL testing ($easyACL array rules)
* *****************************************************************************
*/
public function testEasyACL() {
$matCont = new MaterielsController();
$appCont = new AppController();
/*
$role = 'USER_from_ldap';
$this->authAs($role);
$roleLong = $appCont->getUserRole();
*/
/*
* SCHOOL CASES
*/
$roleLong = 'Utilisateur';
// CAS1
$this->_testEasyACL($matCont, $roleLong, 'action_CAS1_Y', 'Y');
$this->_testEasyACL($matCont, $roleLong, 'action_CAS1_N', 'N');
// CAS2
$this->_testEasyACL($matCont, $roleLong, 'action_CAS2_Y', 'Y');
$this->_testEasyACL($matCont, $roleLong, 'action_CAS2_N', 'N');
// CAS3
$this->_testEasyACL($matCont, $roleLong, 'action_CAS3_Y', 'Y');
$this->_testEasyACL($matCont, $roleLong, 'action_CAS3_N', 'N');
// CAS4
$this->_testEasyACL($matCont, $roleLong, 'action_CAS4_Y', 'Y');
$this->_testEasyACL($matCont, $roleLong, 'action_CAS4_N', 'N');
// CAS5
$this->_testEasyACL($matCont, $roleLong, 'action_unknown_CAS5_Y', 'Y');
// CAS6
/*
$role = 'RESP';
$this->authAs($role);
$roleLong = $appCont->getUserRole();
*/
$roleLong = 'Responsable';
$this->_testEasyACL($matCont, $roleLong, 'action_CAS6_resp_Y', 'Y');
$this->_testEasyACL($matCont, $roleLong, 'action_CAS6_resp_N', 'N');
/*
$role = 'ADMIN';
$this->authAs($role);
$roleLong = $appCont->getUserRole();
*/
$roleLong = 'Administration';
$this->_testEasyACL($matCont, $roleLong, 'action_CAS6_admin_Y', 'Y');
$this->_testEasyACL($matCont, $roleLong, 'action_CAS6_admin_N', 'N');
/*
* REAL CASES
*/
$roleLong = 'Utilisateur';
// add as USER
$this->_testEasyACL($matCont, $roleLong, 'add', 'Y');
// edit
$this->_testEasyACL($matCont, 'Utilisateur', 'edit', '(status == CREATED || status == VALIDATED) && (is_creator || is_user)');
$this->_testEasyACL($matCont, 'Responsable', 'edit', '(status == CREATED || status == VALIDATED) && is_resp');
$this->_testEasyACL($matCont, 'Administration', 'edit', '(status == CREATED || status == VALIDATED)');
$this->_testEasyACL($matCont, 'Administration Plus', 'edit', '(status == CREATED || status == VALIDATED)');
$this->_testEasyACL($matCont, 'Super Administrateur', 'edit', '(status == CREATED || status == VALIDATED)');
// delete
$this->_testEasyACL($matCont, 'Utilisateur', 'delete', '(status == CREATED) && is_owner');
$this->_testEasyACL($matCont, 'Responsable', 'delete', '(status == CREATED)');
$this->_testEasyACL($matCont, 'Administration', 'delete', '(status == CREATED)');
$this->_testEasyACL($matCont, 'Administration Plus', 'delete', '(status == CREATED)');
$this->_testEasyACL($matCont, 'Super Administrateur', 'delete', '(status == CREATED)');
// statusCreated
$this->_testEasyACL($matCont, 'Utilisateur', 'statusCreated', 'N');
$this->_testEasyACL($matCont, 'Responsable', 'statusCreated', 'N');
$this->_testEasyACL($matCont, 'Administration', 'statusCreated', 'Y');
$this->_testEasyACL($matCont, 'Administration Plus', 'statusCreated', 'Y');
$this->_testEasyACL($matCont, 'Super Administrateur', 'statusCreated', 'Y');
/*
$action='autre4';
$rule = $matCont->isAuthorizedAction($matCont, $roleLong, $action);
$this->assertEquals('N', $rule, $roleLong.' do '.$action);
*/
}
private function _testEasyACL(AppController $controller, $roleLong, $action, $expectedRule) {
$rule = $controller->isAuthorizedAction($controller, $roleLong, $action);
$this->assertEquals($expectedRule, $rule, $roleLong.' do '.$action);
}
/*
* *****************************************************************************
* ACTION READ
* (1) READ ALL (index) : Voir la liste des matériels
* *****************************************************************************
*/
/**
* Test index method
*
* @return void
*/
// test INDEX action
/*
public function testMat20ReadAll() {
foreach ($this->ROLES as $role) $this->_testMatReadAllAs($role);
}
*/
/*
public function testMat20ReadAllAsUserFromLdap() { $this->_testMatReadAllAs('USER_from_ldap'); }
public function testMat20ReadAllAsUserFromTable() { $this->_testMatReadAllAs('USER'); }
public function testMat20ReadAllAsResp() { $this->_testMatReadAllAs('RESP'); }
public function testMat20ReadAllAsAdmin() { $this->_testMatReadAllAs('ADMIN'); }
public function testMat20ReadAllAsAdminP() { $this->_testMatReadAllAs('ADMINP'); }
public function testMat20ReadAllAsSuperAdmin() { $this->_testMatReadAllAs('SUPER'); }
private function _testMatReadAllAs($role)
*/
/**
* @dataProvider dataProviderRoles6
*/
public function testMat20ReadAllAs($role)
{
//$this->setUp();
// On doit pouvoir accéder à la page une fois authentifié
$this->authAs($role);
$this->get('/materiels/index');
$this->assertNoRedirect("Authentifié mais redirection vers /users/login.");
// Seul admin+ peut voir les materiels archivés et a accès à des filtres par statut + bouton exporter + cases à cocher
//if ( in_array($role, ['ADMIN','ADMINP','SUPER']) ) {
if ($this->USER_IS_ADMIN_AT_LEAST()) {
$this->assertResponseContains('Liste des matériels (7)', 'Le profil '.$role.' devrait voir les matériels archivés.');
$this->assertResponseContains("A valider", 'Le profil '.$role.' devrait avoir accès à des filtres par statut.');
$this->assertResponseContains("A sortir", 'Le profil '.$role.' devrait avoir accès à des filtres par statut.');
}
else {
$this->assertResponseContains("Liste des matériels (6)", 'Le profil '.$role.' ne devrait PAS voir les matériels archivés.');
$this->assertResponseNotContains("A valider", 'Le profil '.$role.' ne devrait PAS avoir accès à des filtres par statut.');
}
$this->assertResponseContainsIf($role, ($this->getUserRole() != 'Utilisateur'), ["Exporter la liste complete"=>"un bouton Exporter"]);
$this->get('/materiels/index/CREATED');
//TODO: il faudrait remplacer "false" par "true" dans ce test
$this->assertResponseContainsIf(
$role,
//in_array($role,['ADMIN','ADMINP','SUPER']),
$this->USER_IS_ADMIN_AT_LEAST(),
[
"checkbox" => "à des checkboxes",
"Exporter la liste des matériels cochés" => "au bouton d'exportation de liste",
"Valider les matériels cochés" => "au bouton de validation de liste"
],
false
);
/*
if ( in_array($role, ['ADMIN','ADMINP','SUPER']) ) {
$this->assertResponseContains('checkbox', 'Le profil '.$role.' devrait avoir accès à des checkboxes');
$this->assertResponseContains("Exporter la liste des matériels cochés", 'Le profil '.$role.' devrait avoir accès au bouton d\'exportation de liste');
$this->assertResponseContains("Valider les matériels cochés", 'Le profil '.$role.' devrait avoir accès au bouton de validation de liste');
}
else {
}
*/
//$this->tearDown();
}
public function testMat21ReadAllAsAnonymous() { // test INDEX action
// On ne doit pas avoir accès sans authentification
$this->get('/materiels/index');
// $this->assertRedirect('/users/login', 'Problème : Accès à materiels/index SANS AUTHENTIFICATION');
// Le changement est dû au changement de version de cakephp 3.2 vers 3.4
$this->assertRedirect('/users/login?redirect=%2Fmateriels%2Findex', 'Problème : Accès à materiels/index SANS AUTHENTIFICATION');
}
/*
* *****************************************************************************
* ACTION READ
* (2) READ ONE (view/id) : Voir le détail d'un matériel
* *****************************************************************************
*/
/**
* Test view method
*
* @group failing
* @return void
*/
/*
public function testMat10ReadOne() { // test VIEW action
foreach ($this->ROLES as $role) $this->_testMatReadOneAs($role);
}
*/
// test VIEW action
/*
public function testMat10ReadOneAsUserFromLdap() { $this->_testMatReadOneAs('USER_from_ldap'); }
public function testMat10ReadOneAsUserFromTable() { $this->_testMatReadOneAs('USER'); }
public function testMat10ReadOneAsResp() { $this->_testMatReadOneAs('RESP'); }
public function testMat10ReadOneAsAdmin() { $this->_testMatReadOneAs('ADMIN'); }
public function testMat10ReadOneAsAdminPlus() { $this->_testMatReadOneAs('ADMINP'); }
public function testMat10ReadOneAsSuperAdmin() { $this->_testMatReadOneAs('SUPER'); }
private function _testMatReadOneAs($role)
*/
/**
* @dataProvider dataProviderRoles6
*/
public function testMat10ReadOneAs($role)
{
//$this->setUp();
//$this->authSuperAdmin();
$this->authAs($role);
/*
$myrole = $this->getUserRole();
$this->assertEquals('Super Administrateur', $myrole);
*/
$this->get('/materiels/view/3');
$this->assertResponseContains("Test 3", "Le matériel retourné n'est pas celui demandé.");
$this->assertResponseContains('alt="QrCode', "Le QRCode n'est pas sur la vue matériel.");
$this->assertResponseContains("Suivi(s) du matériel (1)", "Le nb de suivis liés au matériel est incorrect.");
$this->assertResponseContains("Emprunt(s) du matériel (1)", "Le nb d'emprunts liés au matériel est incorrect.");
$this->assertResponseContains("Fichier(s) lié(s) au matériel (1)", "Le nb de fichiers liés au matériel est incorrect.");
// Only admin+ see admin section:
//if ( in_array($role, ['ADMIN','ADMINP','SUPER']) ) {
if ($this->USER_IS_ADMIN_AT_LEAST()) {
$this->assertResponseContains("Informations administratives");
$this->assertResponseContains("CentreFinancier/EOTP");
}
else $this->assertResponseNotContains("Informations administratives");
//$this->tearDown();
}
/*
* *****************************************************************************
* ACTION CREATE (add) : Créer un matériel
* *****************************************************************************
*/
/**
* Test testMat30AccessCreateForm
*
* @return void
*/
/*
public function testMat30AccessCreateForm() {
foreach ($this->ROLES as $role) $this->_testMatAccessCreateFormAs($role);
}
*/
/*
public function testMat30AccessCreateFormAsUserFromLdap() { $this->_testMatAccessCreateFormAs('USER_from_ldap'); }
public function testMat30AccessCreateFormAsUser() { $this->_testMatAccessCreateFormAs('USER'); }
public function testMat30AccessCreateFormAsResp() { $this->_testMatAccessCreateFormAs('RESP'); }
public function testMat30AccessCreateFormAsAdmin() { $this->_testMatAccessCreateFormAs('ADMIN'); }
public function testMat30AccessCreateFormAsAdminPlus() { $this->_testMatAccessCreateFormAs('ADMINP'); }
public function testMat30AccessCreateFormAsSuperAdmin() { $this->_testMatAccessCreateFormAs('SUPER'); }
private function _testMatAccessCreateFormAs($role)
*/
/**
* @dataProvider dataProviderRoles6
*/
public function testMat30AccessCreateFormAs($role) {
//$this->setUp();
// On doit pouvoir accéder à la page une fois authentifié
$this->authAs($role);
$this->get('/materiels/add');
$this->assertResponseContains('Ajouter', 'La page n\'existe pas');
$this->assertResponseContainsIf(
$role,
//in_array($role,['ADMIN', 'ADMINP', 'SUPER']),
$this->USER_IS_ADMIN_AT_LEAST(),
["EOTP" => "à la partie administrative sur le formulaire add"]
);
/*
$this->assertResponseNotContains('EOTP', 'Le profil utilisateur a accès à la partie administrative sur le formulaire add.');
$this->assertResponseContains('EOTP', 'Le profil admin+ n\'a pas accès à la partie administrative sur le formulaire add.');
*/
//$this->tearDown();
}
/**
* Test testMat31Create
*
* @return void
*/
/*
public function testMat31CreateAsSuper() { $this->_testMatCreateAs('SUPER'); }
public function testMat31CreateAsAdminp() { $this->_testMatCreateAs('ADMINP'); }
public function testMat31CreateAsAdmin() { $this->_testMatCreateAs('ADMIN'); }
public function testMat31CreateAsResp() { $this->_testMatCreateAs('RESP'); }
public function testMat31CreateAsUser() { $this->_testMatCreateAs('USER'); }
public function testMat31CreateAsUserFromLdap() { $this->_testMatCreateAs('USER_from_ldap'); }
*/
/*
public function testMat32CreateAdministratifOrTechnicalAsSuper() { $this->_testMatCreateAdministratifOrTechnicalAs('SUPER'); }
private function _testMatCreateAdministratifOrTechnicalAs($role) {
*/
/**
* @dataProvider dataProviderRoles5
*/
public function testMat32CreateAdministratifOrTechnicalAs($role) {
$newMateriel = $this->newMaterielWithAllMandatoryFields;
$fields = ['materiel_administratif','materiel_technique'];
// test with materiel_administratif and materiel_technique, all combinations from (0,0) to (1,1)
//for ($i=0,$j=0; $i<=1,$j<=1 ; $i++,$j++) {
for ($i=0; $i<=1 ; $i++) {
for ($j=0; $j<=1 ; $j++) {
$newMateriel["$fields[0]"] = $i;
$newMateriel["$fields[1]"] = $j;
$combination = [$i,$j];
// ni administratif ni technique => must FAIL
if ($combination == [0,0]) $this->_testMatCreate1FailsAs($role, $newMateriel, implode(',',$combination));
// technique only
if ($combination == [0,1]) {
// cree un nouveau materiel
//$this->_testMatCreateAs($role, $newMateriel, implode(',',$combination));
$this->testMat31CreateAs($role, $newMateriel, implode(',',$combination));
// supprimer un materiel pour avoir toujours le meme nombre
//TODO: impossible de supprimer le matos 1, why ???
//$this->post('/materiels/delete/1');
$this->post('/materiels/delete/11');
$this->get('/materiels/index');
$nbmat = $this->USER_IS_ADMIN_AT_LEAST() ? 7 : 6;
$this->assertResponseContains("Liste des matériels (".$nbmat.")", $role.','.implode($combination));
}
// Administratif : (1,0) et (1,1) : ok si prix > 800
// No need to test the case [1,1] because same as [1,0]
if ($combination == [1,0]) {
//if ($i == 1) {
// prix null => fails
$this->_testMatCreate1FailsAs($role, $newMateriel, implode(',',$combination));
// prix < 800 => fails
$newMateriel['prix_ht'] = 799;
$this->_testMatCreate1FailsAs($role, $newMateriel, implode(',',$combination));
// prix >= 800 => ok
$newMateriel['prix_ht'] = 800;
$this->testMat31CreateAs($role, $newMateriel, implode(',',$combination));
/*
// supprimer un materiel pour avoir toujours le meme nombre
//TODO: impossible de supprimer le matos 1, why ???
//$this->post('/materiels/delete/1');
$this->post('/materiels/delete/2');
$this->get('/materiels/index');
$nbmat = $this->USER_IS_ADMIN_AT_LEAST($role) ? 7 : 6;
$this->assertResponseContains("Liste des matériels (".$nbmat.")", $role.','.implode($combination));
*/
}
}
}
}
/**
* @dataProvider dataProviderRoles6
*/
//private function _testMatCreateAs($role, $materiel=null) { $this->testMat31CreateAs($role, $materiel); }
public function testMat31CreateAs($role, $materiel=null) {
//$materiel = $materiel ? $this->newMaterielWithAllMandatoryFields : $materiel;
if (is_null($materiel)) $materiel = $this->newMaterielWithAllMandatoryFields;
//debug($materiel);
//$this->setUp();
// On doit pouvoir accéder à la page une fois authentifié
$this->authAs($role);
// AVANT add
$this->get('/materiels/index');
// USER ne voit pas les materiels ARCHIVED
$nbmat = $this->USER_IS_ADMIN_AT_LEAST() ? 7 : 6;
$this->assertResponseContains("Liste des matériels (".$nbmat.")", $role);
//$this->post('/materiels/add', $this->newMaterielWithAllMandatoryFields);
$this->post('/materiels/add', $materiel);
// APRES add
$this->get('/materiels/index');
$nbmat++;
// VOIR LE HTML DE LA PAGE WEB
//var_dump($this->_getBodyAsString());
$this->assertResponseContains("Liste des matériels (".$nbmat.")", "(testMat31CreateAs): Le matériel ne s'ajoute pas correctement (avec le profil $role)");
//$this->assertResponseContains("Liste des matériels (", "(testMat31CreateAs): Le matériel ne s'ajoute pas correctement avec le profil $role");
$this->assertResponseContains("Test 15", "Le matériel ne s'ajoute pas correctement.");
$this->assertResponseContains("TEST-2016-0015", "La génération du n°de labo n'est pas bonne.");
//$this->tearDown();
}
/*
public function testValueNeccessaryNotEmpty() {
$this->authSuperAdmin();
$data = [
'id' => 16,
'designation' => 'Test 16',
'sur_categorie_id' => '',
'categorie_id' => '',
'materiel_administratif' => 0,
'materiel_technique' => 1,
'status' => 'CREATED',
'date_acquisition' => '19-04-2016',
'nom_createur' => 'Pallier Etienne',
'nom_modificateur' => 'Jean Administration',
'nom_responsable' => 'Jacques Utilisateur',
'email_responsable' => 'Jacques.Utilisateur@irap.omp.eu'
];
$this->post('/materiels/add', $data);
$this->get('/materiels/index');
$this->assertResponseContains("Liste des matériels (7)", "Le matériel s'ajoute alors que les champs obligatoires ne sont pas rempli.");
}
*/
/**
* Test testMat32CreateFails
*
* @return void
*/
/*
public function testMat33CreateFailsAsSuper() { $this->_testMatCreateFailsAs('SUPER'); }
public function testMat33CreateFailsAsUser() { $this->_testMatCreateFailsAs('USER'); }
public function testMat33CreateFailsAsUserFromLdap() { $this->_testMatCreateFailsAs('USER_from_ldap'); }
private function _testMatCreateFailsAs($role) {
*/
/**
* @dataProvider dataProviderRoles6
*/
public function testMat33CreateFailsAs($role) {
// test with each mandatory field except materiel_administratif and materiel_technique
foreach (self::mandatoryFieldsForCreation as $mandatoryField) {
$newMaterielWithMissingMandatoryFields = $this->newMaterielWithAllMandatoryFields;
$newMaterielWithMissingMandatoryFields[$mandatoryField] = null;
$this->_testMatCreate1FailsAs($role, $newMaterielWithMissingMandatoryFields, $mandatoryField);
}
// test with missing materiel_administratif AND materiel_technique null (equivalent to 0,0)
$newMaterielWithMissingMandatoryFields = $this->newMaterielWithAllMandatoryFields;
$fields = ['materiel_administratif','materiel_technique'];
foreach ($fields as $f) $newMaterielWithMissingMandatoryFields["$f"] = null;
$this->_testMatCreate1FailsAs($role, $newMaterielWithMissingMandatoryFields, implode(',',$fields));
}
private function _testMatCreate1FailsAs($role, $newMaterielWithMissingMandatoryFields, $mandatoryField) {
$this->setUp();
//$newMaterielWithMissingMandatoryFields = $this->newMaterielWithAllMandatoryFields;
//$newMaterielWithMissingMandatoryFields['sur_categorie_id'] = null;
/* Mandatory fields :
'id' => 15,
'designation' => 'Test 15',
'sur_categorie_id' => 1,
'categorie_id' => 1,
'materiel_administratif' => 0,
'materiel_technique' => 1,
//'status' => 'CREATED',
'date_acquisition' => '19-04-2016',
*/
//$this->setUp();
// On doit pouvoir accéder à la page une fois authentifié
$this->authAs($role);
$this->get('/materiels/index');
$nbmat = $this->userHasRoleAtLeast('Administration') ? 7 : 6;
$this->assertResponseContains("Liste des matériels (".$nbmat.")", $role.','.$mandatoryField);
$this->post('/materiels/add', $newMaterielWithMissingMandatoryFields);
$this->get('/materiels/index');
$this->assertResponseContains("Liste des matériels (".$nbmat.")", $role." Le matériel s'ajoute alors que le champ obligatoire ".$mandatoryField." n'est pas rempli");
$this->tearDown();
}
/*
* III - ACTION UPDATE
* ACTION "materiels/edit/id" : Editer un matériel
*/
/**
* Test edit method
*
* @return void
*/
// ACTION 'edit'
/*
public function testUpdate() { // ACTION 'edit'
foreach ($this->ROLES as $role) {
$this->authAs($role);
if ($role=='USER') continue;
$this->_testUpdates($role);
} // foreach
}
*/
/*
//public function testUpdateAsUser() { $this->_testUpdatesAs('USER'); }
public function testUpdateAsResp() { $this->_testUpdatesAs('RESP'); }
public function testUpdateAsAdmin() { $this->_testUpdatesAs('ADMIN'); }
public function testUpdateAsAdminPlus() { $this->_testUpdatesAs('ADMINP'); }
public function testUpdateAsSuperAdmin() { $this->_testUpdatesAs('SUPER'); }
private function _testUpdatesAs($role) {
*/
/**
* @dataProvider dataProviderRoles6
*/
public function testUpdatesAs($role) {
//@todo: test as USER
if ($role == 'USER' || $role == 'USER_from_ldap') return;
$this->authAs($role);
// 1) Test qu'on peut modifier un materiel CREATED
// Toutes les donnees passees sont modifiees
$data = [
'designation' => 'Matos Test 2 CREATED modified',
//'sur_categorie_id' => 1,
//'categorie_id' => 1,
'materiel_administratif' => 0,
//'materiel_technique' => 1,
//'status' => 'CREATED',
'date_acquisition' => '19-04-2016',
'nom_createur' => 'Pallier Etienne',
'nom_modificateur' => 'Jean Administration',
'nom_responsable' => 'Jacques Utilisateur',
'email_responsable' => 'Jacques.Utilisateur@irap.omp.eu',
'fournisseur_id' => 2
];
$this->post('/materiels/edit/2', $data);
$this->get('/materiels/index');
$this->assertResponseContains("Matos Test 2 CREATED modified", "Le matériel CREATED édité n'a pas pu etre enregistré");
// 2) Passe le status à VALIDATED
$data = [
'designation' => 'Matos Test 2 VALIDATED',
//'sur_categorie_id' => 1,
//'categorie_id' => 1,
//'materiel_administratif' => 0,
//'materiel_technique' => 1,
'status' => 'VALIDATED',
//'date_acquisition' => '19-04-2016',
//'nom_createur' => 'Pallier Etienne',
//'nom_modificateur' => 'Jean Administration',
//'nom_responsable' => 'Jacques Utilisateur',
//'email_responsable' => 'Jacques.Utilisateur@irap.omp.eu',
//'fournisseur_id' => 2
];
$this->post('/materiels/edit/2', $data);
$this->get('/materiels/index');
$this->assertResponseContains("Matos Test 2 VALIDATED", "Le matériel CREATED édité n'a pas pu etre passé à VALIDATED");
// 3) Test qu'on peut modifier un materiel VALIDATED (certains champs, a completer TODO:)
$data = [
'designation' => 'Matos Test 2 VALIDATED updated',
//'sur_categorie_id' => 1,
//'categorie_id' => 1,
//'materiel_administratif' => 0,
//'materiel_technique' => 1,
//'status' => 'VALIDATED',
//'date_acquisition' => '19-04-2016',
//'nom_createur' => 'Pallier Etienne',
//'nom_modificateur' => 'Jean Administration',
//'nom_responsable' => 'Jacques Utilisateur',
//'email_responsable' => 'Jacques.Utilisateur@irap.omp.eu',
//'fournisseur_id' => 2
];
$this->post('/materiels/edit/2', $data);
$this->get('/materiels/index');
$this->assertResponseContains("Matos Test 2 VALIDATED updated", "Le matériel VALIDATED édité n'a pas pu etre enregistré");
// 4) Test que un edit anormal ne fonctionne pas (erreur sur champ status)
$data = [
'designation' => 'Matos Test 9',
/*
'sur_categorie_id' => 1,
'categorie_id' => 1,
'materiel_administratif' => 0,
'materiel_technique' => 1,
*/
'status' => 'xxx',
/*
'date_acquisition' => '19-04-2016',
'nom_createur' => 'Pallier Etienne',
'nom_modificateur' => 'Jean Administration',
'nom_responsable' => 'Jacques Utilisateur',
'email_responsable' => 'Jacques.Utilisateur@irap.omp.eu',
*/
];
$this->post('/materiels/edit/2', $data);
$this->get('/materiels/index');
$this->assertResponseNotContains("Matos Test 9", "Le matériel édité a pu etre enregistré alors que le statut n'est pas valide");
}
/*
* ACTION "materiels/delete" : (D) Supprimer un materiel
*/
/*
* IV - ACTION Delete
*/
/**
* Test delete method
*
* @return void
*/
public function testDelete() {
$this->authSuperAdmin();
//TODO: impossible de supprimer le matos 1, why ???
//$this->post('/materiels/delete/1');
$this->post('/materiels/delete/2');
$this->get('/materiels/index');
$this->assertResponseContains("Liste des matériels (6)", "Le matériel n'as pas été supprimé.");
$this->assertResponseNotContains("Test 2", "Le matériel n'as pas été supprimé.");
//$this->assertResponseNotContains("matos 1 USER", "Le matériel n'as pas été supprimé.");
}
/*
* V - OTHER ACTIONS
*/
/**
* Test find method
*
* @return void
*/
private function get_specific_fields() {
return [
//'s_designation' => 'Test',
's_designation' => '',
's_matostype' => '',
's_sur_categorie_id' => '',
's_categorie_id' => '',
's_sous_categorie_id' => '',
's_status' => '',
's_groupes_metier_id' => '',
's_groupes_thematique_id' => '',
's_numero_commande' => '',
's_numero_laboratoire' => '',
's_organisme_id' => '',
's_nom_responsable' => '',
's_numero_inventaire_organisme' => '',
's_numero_inventaire_old' => '',
's_date_acquisition' => '',
's_periode_acquisition1' => '',
's_periode_acquisition2' => '',
's_prix_ht' => '',
's_prix_ht_sup' => '',
's_prix_ht_inf' => '',
's_fournisseur_id' => '',
's_salle' => ''
];
}
public function testFind() {
$this->authSuperAdmin();
$dataSearch = $this->get_specific_fields();
/*
* 1. Test sans aucun champ
*/
$this->get('/materiels/find');
$this->assertResponseContains("Aucun résultats pour cette recherche.", "Le contenu de la recherche devrait être vide.");
/*
* 2. Test champ global "s_all_2" dans le menu latéral de gauche
*/
// Recherche en majuscules
$this->post( '/materiels/find', ['s_all_2' => 'TEST-2016-0002'] );
$this->assertResponseContains("Résultats (1)", "Le nb de materiels pour la recherche général du menu latéral est incorrecte.");
// Recherche en minuscules
$this->post( '/materiels/find', ['s_all_2' => 'test-2016-0002'] );
$this->assertResponseContains("Résultats (1)", "Le nb de materiels pour la recherche général du menu latéral est incorrecte.");
/*
* 3. Test champ général "s_all" en haut du formulaire
*/
$this->post( '/materiels/find', ['s_all' => 'TEST-2016-0002'] );
$this->assertResponseContains("Résultats (1)", "Le nb de materiels pour la recherche générale du formulaire est incorrecte.");
$this->post( '/materiels/find', ['s_all' => 'Fournisseur'] );
$this->assertResponseContains("Résultats (7)", "Le nb de materiels pour la recherche générale du formulaire est incorrecte.");
$this->post( '/materiels/find', ['s_all' => 'Fournisseur1'] );
$this->assertResponseContains("Résultats (4)", "Le nb de materiels pour la recherche générale du formulaire est incorrecte.");
$this->post( '/materiels/find', ['s_all' => 'Fournisseur2'] );
$this->assertResponseContains("Résultats (3)", "Le nb de materiels pour la recherche générale du formulaire est incorrecte.");
$this->post( '/materiels/find', ['s_all' => 'Fournisseur Test'] );
$this->assertResponseContains("Résultats (7)", "Le nb de materiels pour la recherche générale du formulaire est incorrecte.");
// les matériels trouvés doivent contenir "Fournisseur" ET "Test" ET "(C)"
$this->post( '/materiels/find', ['s_all' => 'Fournisseur Test (C)'] );
$this->assertResponseContains("Résultats (3)", "Le nb de materiels pour la recherche générale du formulaire est incorrecte.");
/*
* 4. Recherche dans les champs spécifiques du formulaire
*/
// 4.1 Test champs individuels (un seul champ)
// - Test champ designation
// -- un mot
// --- tel quel
$dataSearch['s_designation'] = 'Test';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (6)", "Le nb de materiels pour la recherche par désignation est incorrecte.");
// --- en minuscules
$dataSearch['s_designation'] = 'test';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (6)", "Le nb de materiels pour la recherche par désignation est incorrecte.");
// --- en majuscules
$dataSearch['s_designation'] = 'TEST';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (6)", "Le nb de materiels pour la recherche par désignation est incorrecte.");
// -- N mots
$dataSearch['s_designation'] = 'Test TBA'; // = contient "Test" ET "TBA" => devrait trouver "Test 13 (TBA)"
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (1)", "Le nb de materiels pour la recherche par désignation est incorrecte.");
$dataSearch['s_designation'] = 'Test 13 TBA'; // = contient "Test" ET "TBA" => devrait trouver "Test 13 (TBA)"
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (1)", "Le nb de materiels pour la recherche par désignation est incorrecte.");
$dataSearch['s_designation'] = '';
// - Test champ numero_laboratoire
$dataSearch['s_numero_laboratoire'] = 'TEST-2016-0003';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (1)", "Le nb de materiels pour la recherche par numero de laboratoire est incorrecte.");
$dataSearch['s_numero_laboratoire'] = '';
// - Test champ status
$dataSearch['s_status'] = 'CREATED';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (3)", "Le nb de materiels pour la recherche par statut est incorrecte.");
$dataSearch['s_status'] = '';
// - Test champ date_acquisition
$dataSearch['s_date_acquisition'] = '2016-05-11';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (4)", "Le nb de materiels pour la recherche par date d'acquisition est incorrecte.");
$dataSearch['s_date_acquisition'] = '';
// - Test champ fournisseur_id
$dataSearch['s_fournisseur_id'] = 1;
$dataSearch['s_date_acquisition'] = '2016-05-11';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (3)", "Le nb de materiels pour la recherche par fournisseur_id est incorrecte.");
$dataSearch['s_date_acquisition'] = '';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (4)", "Le nb de materiels pour la recherche par fournisseur_id est incorrecte.");
$dataSearch['s_fournisseur_id'] = '';
$dataSearch['s_date_acquisition'] = '';
//- Test champ salle
/*
* $dataSearch['s_salle'] = 'I203';
* $this->post('/materiels/find', $dataSearch);
* $this->assertResponseContains("Résultats (2)", "Le nb de materiels pour la recherche par detaille lieu est incorrecte.");
*/
// - Test champ periode_acquisition1 (debut)
$dataSearch['s_periode_acquisition1'] = '2015-01-01';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (6)", "Le nb de materiels pour la recherche par debut de periode d'acquisition est incorrecte.");
// - Test champ periode_acquisition1 (debut) && champ periode_acquisition2 (fin)
$dataSearch['s_periode_acquisition2'] = '2016-01-01';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (1)", "Le nb de materiels pour la recherche par intervalle entre la periode d'acquisition (debut) et la periode d'acquisition (fin) est incorrecte.");
// - Test champ periode_acquisition2 (fin)
$dataSearch['s_periode_acquisition1'] = '';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (2)", "Le nb de materiels pour la recherche par fin de periode d'acquisition est incorrecte.");
$dataSearch['s_periode_acquisition2'] = '';
// - Test champ prix_ht
$dataSearch['s_prix_ht'] = '50';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (1)", "Le nb de materiels pour la recherche par prix ht est incorrecte (v1).");
$dataSearch['s_prix_ht'] = '';
// - Meme test mais avec autres champs
$dataSearch['s_prix_ht_sup'] = '50'; // >= 50
$dataSearch['s_prix_ht_inf'] = '50'; // <= 50
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (1)", "Le nb de materiels pour la recherche par prix ht est incorrecte (v2).");
$dataSearch['s_prix_ht_inf'] = '';
$dataSearch['s_prix_ht_sup'] = '';
$dataSearch['s_prix_ht'] = '75';
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (5)", "Le nb de materiels pour la recherche par prix ht est incorrecte (v1).");
$dataSearch['s_prix_ht'] = '';
// - Test champ prix_ht_sup
$dataSearch['s_prix_ht_sup'] = '30'; // >= 30
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (6)", "Le nb de materiels pour la recherche par prix ht superieur est incorrecte.");
$dataSearch['s_prix_ht_sup'] = '';
// - Test champ prix_ht_inf
$dataSearch['s_prix_ht_inf'] = '70'; // <=70
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (2)", "Le nb de materiels pour la recherche par prix ht inferieur est incorrecte.");
$dataSearch['s_prix_ht_inf'] = '';
// - Test champ prix_ht_inf et sup
$dataSearch['s_prix_ht_sup'] = '30'; // >= 30
$dataSearch['s_prix_ht_inf'] = '70'; // <=70
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (1)", "Le nb de materiels pour la recherche par prix ht inf et sup est incorrecte.");
$dataSearch['s_prix_ht_sup'] = '25'; // >= 30
$dataSearch['s_prix_ht_inf'] = '75'; // <=70
$this->post('/materiels/find', $dataSearch);
$this->assertResponseContains("Résultats (7)", "Le nb de materiels pour la recherche par prix ht inf et sup est incorrecte.");
$dataSearch['s_prix_ht_inf'] = '';
$dataSearch['s_prix_ht_sup'] = '';
// 4.2 Test champs multiples (plusieurs champs à la fois)
//$dataSearch = $this->get_specific_fields();
}
/**
* Test addReadSuivisMateriel
*
* @return void
*/
public function testAddReadSuivisMateriel() {
$this->authSuperAdmin();
$dataSuivi1 = [
'materiel_id' => 1,
'date_controle' => '2016-04-19',
'date_prochain_controle' => '2016-04-19',
'type_suivi_id' => 1,
'groupes_metier_id' => 1,
'groupes_thematique_id' => 1,
'organisme' => 'Lorem ipsum dolor sit amet',
'frequence' => 1,
'type_frequence' => '/ Jours',
'commentaire' => 'Lorem ipsum dolor sit amet',
'nom_createur' => 'Lorem ipsum dolor sit amet',
'nom_modificateur' => 'Lorem ipsum dolor sit amet',
'created' => '2016-04-19 09:09:28',
'modified' => '2016-04-19 09:09:28'
];
$dataSuivi2 = [
'materiel_id' => 1,
'date_controle' => '2016-04-19',
'date_prochain_controle' => '2016-04-19',
'type_suivi_id' => 1,
'groupes_metier_id' => 1,
'groupes_thematique_id' => 1,
'organisme' => 'Lorem ipsum dolor sit amet',
'frequence' => 1,
'type_frequence' => '/ Jours',
'commentaire' => 'Lorem ipsum dolor sit amet',
'nom_createur' => 'Lorem ipsum dolor sit amet',
'nom_modificateur' => 'Lorem ipsum dolor sit amet',
'created' => '2016-04-19 09:09:28',
'modified' => '2016-04-19 09:09:28'
];
$this->post('/suivis/add/1', $dataSuivi1);
$this->post('/suivis/add/1', $dataSuivi2);
$this->get('/materiels/view/1');
$this->assertResponseContains("Suivi(s) du matériel (3)", "Le nb de suivi renvoyé pour ce matériel est incorrect.");
}
/**
* Test addReadEmpruntsMateriel
*
* @return void
*/
public function testAddReadEmpruntsMateriel() {
$this->authSuperAdmin();
$dataEmprunt1 = [
'materiel_id' => 1,
'date_emprunt' => '2016-04-19',
'date_retour_emprunt' => '2016-04-19',
'emprunt_interne' => 1,
'laboratoire' => 'Lorem ipsum dolor sit amet',
'site_id' => 1,
'e_lieu_detail' => 'Lorem ipsum dolor sit amet',
'nom_emprunteur' => 'Lorem ipsum dolor sit amet',
'email_emprunteur' => 'Lorem ipsum dolor sit amet',
'tel' => 'Lorem ipsum dolor ',
'commentaire' => 'Lorem ipsum dolor sit amet',
'nom_createur' => 'Lorem ipsum dolor sit amet',
'nom_modificateur' => 'Lorem ipsum dolor sit amet',
'created' => '2016-04-19 09:09:26',
'modified' => '2016-04-19 09:09:26'
];
$dataEmprunt2 = [
'materiel_id' => 1,
'date_emprunt' => '2016-04-19',
'date_retour_emprunt' => '2016-04-19',
'emprunt_interne' => 0,
'laboratoire' => 'Lorem ipsum dolor sit amet',
'site_id' => 1,
'e_lieu_detail' => 'Lorem ipsum dolor sit amet',
'nom_emprunteur' => 'Lorem ipsum dolor sit amet',
'email_emprunteur' => 'Lorem ipsum dolor sit amet',
'tel' => 'Lorem ipsum dolor ',
'commentaire' => 'Lorem ipsum dolor sit amet',
'nom_createur' => 'Lorem ipsum dolor sit amet',
'nom_modificateur' => 'Lorem ipsum dolor sit amet',
'created' => '2016-04-19 09:09:26',
'modified' => '2016-04-19 09:09:26'
];
$this->post('/emprunts/add/1', $dataEmprunt1);
$this->post('/emprunts/add/1', $dataEmprunt2);
$this->get('/materiels/view/1');
$this->assertResponseContains("Emprunt(s) du matériel (3)", "Le nb d'emprunt renvoyé pour ce matériel est incorrect.");
}
/**
* NE FONCTIONNE PAS
* Test addCopieMateriel
*
* @return void public function testAddCopieMateriel() {
* $this->authUser();
* $data = [
* 'designation' => 'Test 14',
* 'sur_categorie_id' => 1,
* 'categorie_id' => 1,
* 'materiel_administratif' => 0,
* 'materiel_technique' => 1,
* 'status' => 'CREATED',
* 'date_acquisition' => '2016-04-16'];
* $this->post('/materiels/add/13', $data);
* $this->get('/materiels/view/14');
* $this->assertResponseContains("Jesus", "La copie du materiel ne se fait pas correctement.");
* $this->assertResponseContains("TEST COPIE MATERIEL", "La copie du materiel ne se fait pas correctement.");
* }
*/
/**
* Test updateStatutCreated
*
* @return void
*/
public function testUpdateStatutCreated() {
$this->authSuperAdmin();
$this->post('/materiels/status-validated/11');
$this->get('/materiels/view/11');
$this->assertResponseContains('VALIDATED', "La validation du materiel ne se fait pas correctement.");
}
/**
* Test updateStatutValidated
*
* @return void
*/
public function testUpdateStatutValidated() {
$this->authSuperAdmin();
$this->post('/materiels/status-to-be-archived/12');
$this->get('/materiels/view/12');
$this->assertResponseContains('TOBEARCHIVED', "La demande d'archivage du materiel ne se fait pas correctement.");
}
/**
* Test updateStatutToBeArchived
*
* @return void
*/
public function testUpdateStatutToBeArchived() {
$this->authAdmin();
$this->post('/materiels/status-archived/13');
$this->get('/materiels/view/13');
$this->assertResponseNotContains('TOBEARCHIVED', "L'archivage du materiel ne se fait pas correctement.");
}
/**
* Test UpdatePlaceEtiquetteMateriel
*
* @return void
*/
public function testUpdatePlaceEtiquetteMateriel() {
$this->authSuperAdmin();
$this->post('/materiels/set-label-is-placed/11/view');
$this->get('/materiels/view/11');
$this->assertResponseContains('Etiquette posée </strong></td><td>Oui', "Le placement de l'étiquette sur le materiel ne se fait pas correctement.");
}
/**
* Test UpdateNotPlaceEtiquetteMateriel
*
* @return void
*/
public function testUpdateNotPlaceEtiquetteMateriel() {
$this->authSuperAdmin();
$this->post('/materiels/set-label-is-not-placed/12/view');
$this->get('/materiels/view/12');
$this->assertResponseContains('Etiquette posée </strong></td><td>Non', "L'enlevement de l'étiquette sur le materiel ne se fait pas correctement.");
}
/**
* Test UpdateStatusSelectedMateriel
*
* @return void
*/
public function testUpdateStatusSelectedMateriels() {
$this->authSuperAdmin();
//$this->authAdmin();
$this->post('/materiels/execActions', ['updateSelectedStatus' => 'true', 'what' => 'CREATED', 11 => '1', 12 => '1', 13 => '1']);
$this->get('/materiels/view/11');
$this->assertResponseContains('VALIDATED', "(11) La mise à jour de plusieurs statuts sur le materiel ne se fait pas correctement.");
$this->assertResponseNotContains('CREATED', "(11) La mise à jour de plusieurs statuts sur le materiel ne se fait pas correctement.");
$this->assertResponseNotContains('TOBEARCHIVED', "(11) La mise à jour de plusieurs statuts sur le materiel ne se fait pas correctement.");
$this->assertResponseNotContains('ARCHIVED', "(11) La mise à jour de plusieurs statuts sur le materiel ne se fait pas correctement.");
$this->get('/materiels/view/12');
$this->assertResponseContains('VALIDATED', "(12) La mise à jour de plusieurs statuts sur le materiel ne se fait pas correctement.");
$this->assertResponseNotContains('CREATED', "(12) La mise à jour de plusieurs statuts sur le materiel ne se fait pas correctement.");
$this->assertResponseNotContains('TOBEARCHIVED', "La mise à jour de plusieurs statuts sur le materiel ne se fait pas correctement.");
$this->assertResponseNotContains('ARCHIVED', "La mise à jour de plusieurs statuts sur le materiel ne se fait pas correctement.");
$this->get('/materiels/view/13');
$this->assertResponseContains('VALIDATED', "(13) La mise à jour de plusieurs statuts sur le materiel ne se fait pas correctement.");
$this->assertResponseNotContains('CREATED', "(13) La mise à jour de plusieurs statuts sur le materiel ne se fait pas correctement.");
$this->assertResponseNotContains('TOBEARCHIVED', "La mise à jour de plusieurs statuts sur le materiel ne se fait pas correctement.");
$this->assertResponseNotContains('ARCHIVED', "La mise à jour de plusieurs statuts sur le materiel ne se fait pas correctement.");
}
/**
* Test ACLEditUtilisateur
*
* @return void
*/
public function testACLEditUtilisateur() {
// $this->authAdmin();
$this->authUtilisateur();
// $this->get('/materiels/edit/12');
// $this->assertResponseNotContains('Test 12', 'Le profil utilisateur a accès au formulaire edit, alors que le matériel ne lui appartient pas.');
// $this->assertResponseContains('Test 12', 'Le profil utilisateur a accès au formulaire edit, alors que le matériel ne lui appartient pas.');
$this->get('/materiels/view/11');
$this->assertResponseContains('Informations', 'La page view n\'existe pas');
$this->get('/materiels/edit/11');
$this->assertResponseContains('Editer', 'La page edit n\'existe pas');
$this->assertResponseContains('Test 11', 'Le profil utilisateur n\'a pas accès au formulaire edit, alors que le matériel lui appartient.');
$this->assertResponseNotContains('EOTP', 'Le profil utilisateur a accès à la partie administrative sur le formulaire edit.');
}
/**
* Test ACLEditAdmin
*
* @return void
*/
public function testACLEditAdmin() {
$this->authAdmin();
$this->get('/materiels/edit/12');
$this->assertResponseContains('EOTP', 'Le profil admin+ n\'a pas accès à la partie administrative sur le formulaire edit.');
}
/**
* Test ACLDeleteUtilisateur
*
* @return void
*/
public function testACLDeleteUtilisateur() {
$this->authUtilisateur();
$this->post('/materiels/delete/2');
$this->get('/materiels/index');
$this->assertResponseContains('Liste des matériels (6)', 'Le profil utilisateur a accès à la suppression, alors que le matériel ne lui appartient pas.');
$this->post('/materiels/delete/11');
$this->get('/materiels/index');
$this->assertResponseContains('Liste des matériels (5)', 'Le profil utilisateur n\'a pas accès à la suppression, alors que le matériel lui appartient.');
}
/**
* Test ACLDeleteAdmin
*
* @return void
*/
public function testACLDeleteAdmin() {
$this->authAdmin();
$this->post('/materiels/delete/13');
$this->get('/materiels/index');
$this->assertResponseContains('Liste des matériels (7)', 'Le profil admin+ a accès à la suppression alors que le statut est TOBEARCHIVED.');
$this->post('/materiels/delete/2');
$this->get('/materiels/index');
$this->assertResponseContains('Liste des matériels (6)', 'Le profil admin+ n\'a pas accès à la suppression.');
}
/**
* Test ACLChangeStatutUtilisateur
*
* @return void
*/
public function testACLChangeStatutUtilisateur() {
$this->authUtilisateur();
$this->post('/materiels/status-validated/11');
$this->get('/materiels/view/11');
$this->assertResponseContains('CREATED', "La validation du materiel se fait avec un profil utilisateur.");
$this->post('/materiels/status-to-be-archived/12');
$this->get('/materiels/view/12');
$this->assertResponseContains('VALIDATED', "La demande d'archivage du materiel se fait avec un profil utilisateur.");
$this->post('/materiels/status-archived/13');
$this->get('/materiels/view/13');
$this->assertResponseContains('TOBEARCHIVED', "L'archivage du materiel se fait avec un profil utilisateur.");
}
/**
* Test ACLChangeStatutAdmin
*
* @return void
*/
public function testACLChangeStatutAdmin() {
$this->authAdmin();
$this->post('/materiels/status-validated/11');
$this->get('/materiels/view/11');
$this->assertResponseContains('VALIDATED', "La validation du materiel ne se fait pas correctement avec un profil admin+.");
$this->post('/materiels/status-to-be-archived/12');
$this->get('/materiels/view/12');
$this->assertResponseContains('TOBEARCHIVED', "La demande d'archivage du materiel ne se fait pas correctement avec un profil admin+.");
$this->post('/materiels/status-archived/13');
$this->get('/materiels/view/13');
$this->assertResponseContains('ARCHIVED', "L'archivage du materiel ne se fait pas correctement avec un profil admin+.");
}
/**
* Test ACLIndexResponsable
*
* @return void
*/
public function testACLIndexResponsable() {
$this->authResponsable();
$this->get('/materiels/index?GM=1');
$this->assertResponseContains('Liste des matériels (6)', "La liste des materiels selon le groupe métier ne s'affiche pas correctement.");
$this->get('/materiels/index?GMV=1');
$this->assertResponseContains('Liste des matériels (3)', "La liste des materiels selon le groupe métier et CREATED ne s'affiche pas correctement.");
}
/**
* Test MaterielPanne
*
* @return void
*/
public function testMaterielPanne() {
$this->authSuperAdmin();
$this->get('/materiels/view/2');
$this->assertResponseNotContains("(HORS SERVICE)", "Le matériel est hors-service par défaut.");
$data = [
'designation' => 'Test 6',
'sur_categorie_id' => 1,
'categorie_id' => 1,
'materiel_administratif' => 0,
'materiel_technique' => 1,
'status' => 'CREATED',
'date_acquisition' => '19-04-2016',
'nom_createur' => 'Pallier Etienne',
'nom_modificateur' => 'Jean Administration',
'nom_responsable' => 'Jacques Utilisateur',
'email_responsable' => 'Jacques.Utilisateur@irap.omp.eu',
'hors_service' => 1
];
$this->post('/materiels/edit/2', $data);
$this->get('/materiels/view/2');
$this->assertResponseContains("(HORS SERVICE)", "Le matériel n'est pas hors-service comme demandé.");
}
/**
* TEST IMPOSSIBLE CAR FONCTION DU CONTROLLER FINI PAR EXIT()
* Test exportFind
*
* @return void public function testExportFind() {
* $this->authUser();
* $csv = 'id;Designation;Sur-categorie;Categorie;Sous-categorie;"Numero interne";Description;Organisme;"Mat. administratif";"Mat. technique";Statut;"Date d\'acquisition";"Date de reception";Fournisseur;"Prix HT";EOTP;"Numero de commande";"Code comptable";"Numero de serie";"Grp. thematique";"Grp. metier";"Numero inventaire organisme";"Ancien Numero inventaire";"Site stockage";"Nom responsable";"Email responsable"
* 12;"Test 12";"Lorem ipsum dolor sit amet";"Lorem ipsum dolor sit amet";"Lorem ipsum dolor sit amet";TEST-2016-0012;"Lorem ipsum dolor sit amet, aliquet feugiat. Convallis morbi fringilla gravida, phasellus feugiat dapibus velit nunc, pulvinar eget sollicitudin venenatis cum nullam, vivamus ut a sed, mollitia lectus. Nulla vestibulum massa neque ut et, id hendrerit sit, feugiat in taciti enim proin nibh, tempor dignissim, rhoncus duis vestibulum nunc mattis convallis.";"Lorem ipsum dolor sit amet";1;1;VALIDATED;11/05/2016;19/04/2016;"Lorem ipsum dolor sit amet";75;"Lorem ipsum dolor sit amet";"Lorem ipsum dolor sit amet";"Lorem ipsum dolor sit amet";"Lorem ipsum dolor sit amet";"Lorem ipsum dolor sit amet";"Lorem ipsum dolor sit amet";"Lorem ipsum dolor sit amet";"Lorem ipsum dolor sit amet";"Lorem ipsum dolor sit amet-Lorem ipsum dolor sit amet";"Lorem ipsum dolor sit amet";"Lorem ipsum dolor sit amet"';
* $materiel = $this->Materiels->get('12');
* $data = [ 'result' => [$materiel]];
* $this->session($data);
* $this->put('/materiels/export/search');
* //$this->assertTextContains(, $csv);
* $this->assertResponseContains($csv, 'L\'export CSV de la recherche ne fonctionne pas correctement');
* }
* /** TEST IMPOSSIBLE CAR FONCTION DU CONTROLLER FINI PAR EXIT()
* Test exportAll
* @return void public function testExportAll() {
* $this->authUser();
* $this->>post('materiels/export', ['exportAll' => 'test']);
* $this->assertResponseContains("fdsf");
* }
* /** TEST IMPOSSIBLE CAR FONCTION DU CONTROLLER FINI PAR EXIT()
* Test generateRubanMateriel
* @return void public function testGenerateRubanMateriel() {
* $this->authUser();
* }
*/
}