Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4dcbcad5a54b087e45731f3c91ab0264b60227eb (plain) (blame)
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
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
/**********************************************************************
 * This file is part of "Object Teams Development Tooling"-Software
 * 
 * Copyright 2010 Stephan Herrmann
 * 
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 * $Id$
 * 
 * Please visit http://www.eclipse.org/objectteams for updates and contact.
 * 
 * Contributors:
 * 	  Stephan Herrmann - Initial API and implementation
 **********************************************************************/
package org.eclipse.objectteams.otdt.tests.otjld.rolesandteams;

import org.eclipse.objectteams.otdt.tests.otjld.AbstractOTJLDTest;

import junit.framework.Test;

public class Confinement extends AbstractOTJLDTest {
	
	public Confinement(String name) {
		super(name);
	}
	
	// Static initializer to specify tests subset using TESTS_* static variables
	// All specified tests which does not belong to the class are skipped...
	static {
//		TESTS_NAMES = new String[] { "test1710_confinedBoundRole3"};
//		TESTS_NUMBERS = new int[] { 1459 };
//		TESTS_RANGE = new int[] { 1097, -1 };
	}
	
	public static Test suite() {
		return buildComparableTestSuite(testClass());
	}

	public static Class testClass() {
		return Confinement.class;
	}
    // attempting to invoke a method from Object on an IConfined object
    // 1.7.1-otjld-invalid-method-on-iconfined-1
    public void test171_invalidMethodOnIconfined1() {
        runNegativeTestMatching(
            new String[] {
		"T171imoi1Main.java",
			    "\n" +
			    "public class T171imoi1Main {\n" +
			    "    public static void main (String[] args) {\n" +
			    "        org.objectteams.IConfined i = new T171imoi1();\n" +
			    "        Object o = i.clone();\n" +
			    "    }\n" +
			    "}    \n" +
			    "    \n",
		"T171imoi1.java",
			    "\n" +
			    "public class T171imoi1 implements org.objectteams.IConfined {\n" +
			    "    void foo() {\n" +
			    "        System.out.print(\"foo\");\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "undefined");
    }

    // invoking a method from user class on an IConfined object
    // 1.7.1-otjld-invalid-method-on-iconfined-2
    public void test171_invalidMethodOnIconfined2() {
       
       runConformTest(
            new String[] {
		"T171imoi2Main.java",
			    "\n" +
			    "public class T171imoi2Main {\n" +
			    "    public static void main (String[] args) {\n" +
			    "        I171imoi2 i = new T171imoi2();\n" +
			    "        i.foo();\n" +
			    "    }\n" +
			    "}    \n" +
			    "    \n",
		"I171imoi2.java",
			    "\n" +
			    "public interface I171imoi2 extends org.objectteams.IConfined {\n" +
			    "    void foo();\n" +
			    "}\n" +
			    "    \n",
		"T171imoi2.java",
			    "\n" +
			    "public class T171imoi2 implements I171imoi2 {\n" +
			    "    public void foo() {\n" +
			    "        System.out.print(\"OK\");\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "OK");
    }

    // attempting to invoke a method from Object on an IConfined role
    // 1.7.1-otjld-invalid-method-on-iconfined-3
    public void test171_invalidMethodOnIconfined3() {
        runNegativeTest(
            new String[] {
		"Team171imoi3.java",
			    "\n" +
			    "public team class Team171imoi3 {\n" +
			    "    protected class R implements IConfined {\n" +
			    "        void foo() {\n" +
			    "            System.out.print(\"foo\");\n" +
			    "        }\n" +
			    "    }\n" +
			    "    public Team171imoi3() {\n" +
			    "        IConfined i = new R();\n" +
			    "        Object o = i.clone();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "----------\n" + 
    		"1. ERROR in Team171imoi3.java (at line 10)\n" + 
    		"	Object o = i.clone();\n" + 
    		"	             ^^^^^\n" + 
    		"The method clone() is undefined for the type IConfined<@tthis[Team171imoi3]>\n" + 
    		"----------\n");
    }

    // attempting to invoke a method from Object on an IConfined role -- illegal qualified role type
    // 1.7.1-otjld-invalid-method-on-iconfined-3b
    public void test171_invalidMethodOnIconfined3b() {
        runNegativeTestMatching(
            new String[] {
		"Team171imoi3b.java",
			    "\n" +
			    "public team class Team171imoi3b {\n" +
			    "    protected class R implements org.objectteams.Team.IConfined {\n" +
			    "        void foo() {\n" +
			    "            System.out.print(\"foo\");\n" +
			    "        }\n" +
			    "    }\n" +
			    "    public Team171imoi3b() {\n" +
			    "        org.objectteams.Team.IConfined i = new R();\n" +
			    "        Object o = i.clone();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "1.2.2(b)");
    }

    // attempting to invoke a method from Object on an externalized IConfined role
    // 1.7.1-otjld-invalid-method-on-iconfined-3e
    public void test171_invalidMethodOnIconfined3e() {
        runNegativeTestMatching(
            new String[] {
		"Team171imoi3e.java",
			    "\n" +
			    "public team class Team171imoi3e {\n" +
			    "    protected class R implements IConfined {\n" +
			    "        void foo() {\n" +
			    "            System.out.print(\"foo\");\n" +
			    "        }\n" +
			    "    }\n" +
			    "    public IConfined getR() {\n" +
			    "        return new R();\n" +
			    "    }\n" +
			    "    public boolean foo() {\n" +
			    "        final Team171imoi3e t= new Team171imoi3e();\n" +
			    "        IConfined<@t> i = t.getR();\n" +
			    "        return i.equals(null);\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "undefined");
    }

    // attempting to invoke a method from Object on an externalized IConfined role
    // 1.7.1-otjld-invalid-method-on-iconfined-3E
    public void test171_invalidMethodOnIconfined3E() {
        runNegativeTestMatching(
            new String[] {
		"Team171imoi3E.java",
			    "\n" +
			    "public team class Team171imoi3E {\n" +
			    "    protected class R implements IConfined {\n" +
			    "        void foo() {\n" +
			    "            System.out.print(\"foo\");\n" +
			    "        }\n" +
			    "    }\n" +
			    "    public IConfined getR() {\n" +
			    "        return new R();\n" +
			    "    }\n" +
			    "    public String foo() {\n" +
			    "        final Team171imoi3E t= new Team171imoi3E();\n" +
			    "        IConfined<@t> i = t.getR();\n" +
			    "        return i.toString();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "undefined");
    }

    // attempting to invoke a method from Object on an externalized IConfined role
    // 1.7.1-otjld-invalid-method-on-iconfined-3f
    public void test171_invalidMethodOnIconfined3f() {
        runNegativeTestMatching(
            new String[] {
		"Team171imoi3f.java",
			    "\n" +
			    "public team class Team171imoi3f {\n" +
			    "    protected class R implements IConfined {\n" +
			    "        void foo() {\n" +
			    "            System.out.print(\"foo\");\n" +
			    "        }\n" +
			    "    }\n" +
			    "    public IConfined getR() {\n" +
			    "        return new R();\n" +
			    "    }\n" +
			    "    public String foo() {\n" +
			    "        final Team171imoi3f t= new Team171imoi3f();\n" +
			    "        IConfined<@t> i = t.getR();\n" +
			    "        return \"Result:\"+i;\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "undefined");
    }

    // attempting to invoke a method from Object on an externalized IConfined role
    // 1.7.1-otjld-invalid-method-on-iconfined-3F
    public void test171_invalidMethodOnIconfined3F() {
        runNegativeTestMatching(
            new String[] {
		"Team171imoi3F.java",
			    "\n" +
			    "public team class Team171imoi3F {\n" +
			    "    protected class R implements IConfined {\n" +
			    "        void foo() {\n" +
			    "            System.out.print(\"foo\");\n" +
			    "        }\n" +
			    "    }\n" +
			    "    public IConfined getR() {\n" +
			    "        return new R();\n" +
			    "    }\n" +
			    "    public String foo() {\n" +
			    "        final Team171imoi3F t= new Team171imoi3F();\n" +
			    "        IConfined<@t> i = t.getR();\n" +
			    "        return i+\"Result:\";\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "undefined");
    }

    // invoking a method from user class on an IConfined role
    // 1.7.1-otjld-invalid-method-on-iconfined-4
    public void test171_invalidMethodOnIconfined4() {
       
       runConformTest(
            new String[] {
		"T171imoi4Main.java",
			    "\n" +
			    "public class T171imoi4Main {\n" +
			    "    public static void main (String[] args) {\n" +
			    "        Team171imoi4 t = new Team171imoi4();\n" +
			    "	I171imoi4 r = t.getR();\n" +
			    "        r.foo();\n" +
			    "    }\n" +
			    "}    \n" +
			    "    \n",
		"I171imoi4.java",
			    "\n" +
			    "public interface I171imoi4 extends org.objectteams.IConfined {\n" +
			    "	void foo();\n" +
			    "}\n" +
			    "	\n",
		"Team171imoi4.java",
			    "\n" +
			    "public team class Team171imoi4 {\n" +
			    "	protected class R171imoi4 implements I171imoi4 {\n" +
			    "    		public void foo() {\n" +
			    "        		System.out.print(\"OK\");\n" +
			    "    		}\n" +
			    "	}\n" +
			    "	public I171imoi4 getR() {\n" +
			    "		return new R171imoi4();\n" +
			    "	}\n" +
			    "}\n" +
			    "    \n"
            },
            "OK");
    }

    // invoking a method from user class on an IConfined role
    // 1.7.1-otjld-invalid-method-on-iconfined-5
    public void test171_invalidMethodOnIconfined5() {
       
       runConformTest(
            new String[] {
		"T171imoi5Main.java",
			    "\n" +
			    "public class T171imoi5Main {\n" +
			    "    public static void main (String[] args) {\n" +
			    "        final Team171imoi5 t = new Team171imoi5();\n" +
			    "	I171imoi5<@t> r = t.getR();\n" +
			    "        r.foo();\n" +
			    "    }\n" +
			    "}    \n" +
			    "    \n",
		"Team171imoi5.java",
			    "\n" +
			    "public team class Team171imoi5 {\n" +
			    "	public interface I171imoi5 extends IConfined {\n" +
			    "    		void foo();\n" +
			    "	}\n" +
			    "	protected class R171imoi5 implements I171imoi5 {\n" +
			    "    		public void foo() {\n" +
			    "        		System.out.print(\"OK\");\n" +
			    "    		}\n" +
			    "	}\n" +
			    "	public I171imoi5 getR() {\n" +
			    "		return new R171imoi5();\n" +
			    "	}\n" +
			    "}\n" +
			    "    \n"
            },
            "OK");
    }

    // invoking a method that is listed in Confined - according to 6.2(a) nothing is listed there
    // 1.7.1-otjld_invalid_invalid-method-on-iconfined-6
    public void _invalid_test171_invalidMethodOnIconfined6() {
       
       runConformTest(
            new String[] {
		"T171imoi6Main.java",
			    "\n" +
			    "public class T171imoi6Main {\n" +
			    "	public static void main(String[] args) {\n" +
			    "		Team171imoi6 t = new Team171imoi6();\n" +
			    "		t.test();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team171imoi6.java",
			    "\n" +
			    "public team class Team171imoi6 {\n" +
			    "	protected class R extends Confined {\n" +
			    "	}\n" +
			    "	void test() { \n" +
			    "		R r = new R();\n" +
			    "		int h = r.hashCode();\n" +
			    "		System.out.print(\"OK\");\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n" +
			    "	\n"
            },
            "OK");
    }

    // attempting to widen a confined role to type Object
    // 1.7.2-otjld-invalid-widening-of-confined-role-1
    public void test172_invalidWideningOfConfinedRole1() {
        runNegativeTestMatching(
            new String[] {
		"Team172iwocr1.java",
			    "\n" +
			    "public team class Team172iwocr1 {\n" +
			    "    protected class R extends Confined {\n" +
			    "    }\n" +
			    "    Object getR() {\n" +
			    "        return new R();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "cannot convert");
    }

    // attempting to cast a confined role to type Object
    // 1.7.2-otjld-invalid-widening-of-confined-role-1c
    public void test172_invalidWideningOfConfinedRole1c() {
        runNegativeTestMatching(
            new String[] {
		"Team172iwocr1c.java",
			    "\n" +
			    "public team class Team172iwocr1c {\n" +
			    "    protected class R extends Confined {\n" +
			    "    }\n" +
			    "    Object getR() {\n" +
			    "        return (Object)new R();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "Cannot cast");
    }

    // attempting to cast a confined role to type Object -- read class file
    // 1.7.2-otjld-invalid-widening-of-confined-role-1C
    public void test172_invalidWideningOfConfinedRole1C() {
        runNegativeTestMatching(
            new String[] {
		"Team172iwocr1C_2.java",
			    "\n" +
			    "public team class Team172iwocr1C_2 extends Team172iwocr1C_1 {\n" +
			    "    Object getR() {\n" +
			    "        return (Object)new R();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team172iwocr1C_1.java",
			    "\n" +
			    "public team class Team172iwocr1C_1 {\n" +
			    "    protected class R extends Confined {\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "Cannot cast");
    }

    // attempting to assign a confined role to different team instance - missing final
    // 1.7.2-otjld-invalid-widening-of-confined-role-2
    public void test172_invalidWideningOfConfinedRole2() {
        runNegativeTestMatching(
            new String[] {
		"Team172iwocr2.java",
			    "\n" +
			    "public team class Team172iwocr2 {\n" +
			    "    protected class R extends Confined {\n" +
			    "    }\n" +
			    "    void test (R r) {\n" +
			    "	Team172iwocr2 t = new Team172iwocr2();\n" +
			    "	t.test(r);\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "is not applicable");
    }

    // attempting to assign a confined role to different team instance
    // 1.7.2-otjld-invalid-widening-of-confined-role-3
    public void test172_invalidWideningOfConfinedRole3() {
        runNegativeTestMatching(
            new String[] {
		"Team172iwocr3.java",
			    "\n" +
			    "public team class Team172iwocr3 {\n" +
			    "    protected class R extends Confined {\n" +
			    "    }\n" +
			    "    void test (R r) {\n" +
			    "	final Team172iwocr3 t = new Team172iwocr3();\n" +
			    "	t.test(r);\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "is not applicable");
    }

    // attempting to widen a confined role from custom IConfined to type Object
    public void test172_invalidWideningOfConfinedRole4() {
        runNegativeTestMatching(
            new String[] {
		"Team172iwocr4.java",
			    "\n" +
			    "public team class Team172iwocr4 {\n" +
			    "	 protected interface IMyConfined extends IConfined {}\n" +
			    "    protected class R extends Confined implements IMyConfined {\n" +
			    "    }\n" +
			    "    Object getR() {\n" +
			    "        IMyConfined ic = new R();\n" +
			    "		 return ic;" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "cannot convert");
    }

    // attempting to cast a confined role from custom IConfined to type Object
    public void test172_invalidWideningOfConfinedRole5() {
        runNegativeTest(
            new String[] {
		"Team172iwocr5.java",
			    "\n" +
			    "public team class Team172iwocr5 {\n" +
			    "	 protected interface IMyConfined extends IConfined {}\n" +
			    "    protected class R extends Confined implements IMyConfined {\n" +
			    "    }\n" +
			    "    Object getR() {\n" +
			    "        IMyConfined ic = new R();\n" +
			    "		 return (Object)ic;" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "----------\n" + 
    		"1. ERROR in Team172iwocr5.java (at line 8)\n" + 
    		"	return (Object)ic;    }\n" + 
    		"	       ^^^^^^^^^^\n" + 
    		"Cannot cast from IMyConfined<@tthis[Team172iwocr5]> to Object\n" + 
    		"----------\n");
    }

    // attempting to widen a confined role from custom IConfined to type Object applies lowering
    public void test172_invalidWideningOfConfinedRole6() {
        runConformTest(
            new String[] {
		"Team172iwocr6.java",
			    "\n" +
			    "public team class Team172iwocr6 {\n" +
			    "	 protected interface IMyConfined extends IConfined {}\n" +
			    "    protected class R extends Confined implements IMyConfined playedBy T172iwocr6 {\n" +
			    "    }\n" +
			    "    void testR() {\n" +
			    "        Object o = new R(new T172iwocr6());\n" +
			    "		 System.out.print(o instanceof T172iwocr6);\n" +
			    "    }\n" +
			    "	 public static void main(String... args) {\n" +
			    "		 new Team172iwocr6().testR();" +
			    "	 }\n" +
			    "}\n",
		"T172iwocr6.java",
			    "public class T172iwocr6 {}\n"
            },
            "true");
    }

    // a protected role type is mentioned outside the team
    // 1.7.3-otjld-mentioning-protected-role-outside-team-1
    public void test173_mentioningProtectedRoleOutsideTeam1() {
        runNegativeTestMatching(
            new String[] {
		"T173mprot1Main.java",
			    "\n" +
			    "public class T173mprot1Main{\n" +
			    "        @SuppressWarnings(\"unused\")\n" +
			    "	public static void main(String[] args) {\n" +
			    "		final Team173mprot1 t = new Team173mprot1();\n" +
			    "		R<@t> r = null;\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team173mprot1.java",
			    "\n" +
			    "public team class Team173mprot1 {\n" +
			    "	protected class R {}\n" +
			    "}\n" +
			    "	\n"
            },
            "1.2.3(b)");
    }

    // a protected role type is mentioned outside the team instance
    // 1.7.3-otjld-mentioning-protected-role-outside-team-2
    public void test173_mentioningProtectedRoleOutsideTeam2() {
        runNegativeTestMatching(
            new String[] {
		"Team173mprot2.java",
			    "\n" +
			    "public team class Team173mprot2 {\n" +
			    "	protected class R {}\n" +
			    "        @SuppressWarnings(\"unused\")\n" +
			    "	public void foo() {\n" +
			    "		final Team173mprot2 t = new Team173mprot2();\n" +
			    "		R<@t> r = null;\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "1.2.3(b)");
    }

    // a protected role type is mentioned outside the team instance
    // 1.7.3-otjld-mentioning-protected-role-outside-team-3
    public void test173_mentioningProtectedRoleOutsideTeam3() {
        runNegativeTestMatching(
            new String[] {
		"Team173mprot3.java",
			    "\n" +
			    "public team class Team173mprot3 {\n" +
			    "	protected class R {}\n" +
			    "	public R getR() { return new R(); }\n" +
			    "	public void foo() {\n" +
			    "		final Team173mprot3 t = new Team173mprot3();\n" +
			    "		R<@t> r = t.getR();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "1.2.2(a)");
    }

    // an object of a confined type is seen by the type IConfined
    // 1.7.4-otjld-viewing-confined-role-by-interface-1
    public void test174_viewingConfinedRoleByInterface1() {
       
       runConformTest(
            new String[] {
		"T174vcrbi1Main.java",
			    "\n" +
			    "public class T174vcrbi1Main {\n" +
			    "	public static void main(String[] args) {\n" +
			    "		final Team174vcrbi1 t = new Team174vcrbi1();\n" +
			    "		IConfined<@t> i = t.getR();\n" +
			    "		t.receiveR(i);\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team174vcrbi1.java",
			    "\n" +
			    "public team class Team174vcrbi1 {\n" +
			    "	protected class R extends Confined implements IConfined {\n" +
			    "		protected String getValue() { return \"OK\"; }\n" +
			    "	}\n" +
			    "	public IConfined getR() { \n" +
			    "		return new R(); \n" +
			    "	}\n" +
			    "	public void receiveR(IConfined i) {\n" +
			    "		R r = (R)i;\n" +
			    "		System.out.print(r.getValue());\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "OK");
    }

    // an object of a confined type is seen by the type IConfined -- passed to wrong team
    // 1.7.4-otjld-viewing-confined-role-by-interface-2
    public void test174_viewingConfinedRoleByInterface2() {
        runNegativeTestMatching(
            new String[] {
		"T174vcrbi2Main.java",
			    "\n" +
			    "public class T174vcrbi2Main {\n" +
			    "	public static void main(String[] args) {\n" +
			    "		final Team174vcrbi2 t1 = new Team174vcrbi2();\n" +
			    "		IConfined<@t1> i = t1.getR();\n" +
			    "		final Team174vcrbi2 t2 = new Team174vcrbi2();\n" +
			    "		t2.receiveR(i);\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team174vcrbi2.java",
			    "\n" +
			    "public team class Team174vcrbi2 {\n" +
			    "	protected class R extends Confined implements IConfined {\n" +
			    "		protected String getValue() { return \"OK\"; }\n" +
			    "	}\n" +
			    "	public IConfined getR() { \n" +
			    "		return new R(); \n" +
			    "	}\n" +
			    "	public void receiveR(IConfined i) {\n" +
			    "		R r = (R)i;\n" +
			    "		System.out.print(r.getValue());\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "not applicable");
    }

    // an object of a confined type is seen by the type org.obectteams.IConfined -- passed to wrong team
    // 1.7.4-otjld-viewing-confined-role-by-interface-3
    public void test174_viewingConfinedRoleByInterface3() {
       
       runConformTest(
            new String[] {
		"T174vcrbi3Main.java",
			    "\n" +
			    "import org.objectteams.IConfined;\n" +
			    "public class T174vcrbi3Main {\n" +
			    "	public static void main(String[] args) {\n" +
			    "		Team174vcrbi3 t1 = new Team174vcrbi3();\n" +
			    "		IConfined i = t1.getR();\n" +
			    "		Team174vcrbi3 t2 = new Team174vcrbi3();\n" +
			    "		t2.receiveR(i);\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n",
		"Team174vcrbi3.java",
			    "\n" +
			    "public team class Team174vcrbi3 {\n" +
			    "	protected class R extends Confined implements org.objectteams.IConfined {\n" +
			    "		protected String getValue() { return \"NOK\"; }\n" +
			    "	}\n" +
			    "	public org.objectteams.IConfined getR() { \n" +
			    "		return new R(); \n" +
			    "	}\n" +
			    "	public void receiveR(org.objectteams.IConfined i) {\n" +
			    "		try {\n" +
			    "			R r = (R)i;\n" +
			    "			System.out.print(r.getValue());\n" +
			    "		} catch (ClassCastException cce) {\n" +
			    "			if (cce instanceof org.objectteams.RoleCastException)\n" +
			    "				System.out.print(\"CAUGHT\");\n" +
			    "		}\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "CAUGHT");
    }

    // a team tries to override Team.Confined
    // 1.7.5-otjld-overriding-confined-1
    public void test175_overridingConfined1() {
        runNegativeTestMatching(
            new String[] {
		"Team175oc1.java",
			    "\n" +
			    "public team class Team175oc1 {\n" +
			    "	public class Confined {\n" +
			    "		void foo() {}\n" +
			    "	}\n" +
			    "}	\n" +
			    "	\n"
            },
            "7.2(a)");
    }

    // a team tries to override Team.IConfined
    // 1.7.5-otjld-overriding-confined-2
    public void test175_overridingConfined2() {
        runNegativeTestMatching(
            new String[] {
		"Team175oc2.java",
			    "\n" +
			    "public team class Team175oc2 {\n" +
			    "	public class IConfined {\n" +
			    "		void foo() {}\n" +
			    "	}\n" +
			    "}	\n" +
			    "	\n"
            },
            "1.3.1(c)");
    }

    // a team tries to override Team.Confined - conflict class-ifc
    // 1.7.5-otjld-overriding-confined-3
    public void test175_overridingConfined3() {
        runNegativeTestMatching(
            new String[] {
		"Team175oc3.java",
			    "\n" +
			    "public team class Team175oc3 {\n" +
			    "	public interface Confined {\n" +
			    "		void foo();\n" +
			    "	}\n" +
			    "}	\n" +
			    "	\n"
            },
            "1.3.1(c)");
    }

    // a team tries to override Team.IConfined - conflict class-ifc
    // 1.7.5-otjld-overriding-confined-4
    public void test175_overridingConfined4() {
        runNegativeTestMatching(
            new String[] {
		"Team175oc4.java",
			    "\n" +
			    "public team class Team175oc4 {\n" +
			    "	public class IConfined {\n" +
			    "		void foo() {}\n" +
			    "	}\n" +
			    "}	\n" +
			    "	\n"
            },
            "1.3.1(c)");
    }

    // a role class tries to override a role interface
    // 1.7.6-otjld-class-overrides-ifc
    public void test176_classOverridesIfc() {
        runNegativeTestMatching(
            new String[] {
		"Team176coi_2.java",
			    "\n" +
			    "public team class Team176coi_2 extends Team176coi_1 {\n" +
			    "	public class I {}\n" +
			    "}\n" +
			    "	\n",
		"Team176coi_1.java",
			    "\n" +
			    "public team class Team176coi_1 {\n" +
			    "	public interface I {\n" +
			    "		void foo();\n" +
			    "	}\n" +
			    "}\n" +
			    "	\n"
            },
            "OTJLD 1.3.1(c)");
    }

    // see also TPX-465
    // 1.7.7-otjld-otjld-example-1
    public void test177_example1() {
       
       runConformTest(
            new String[] {
		"T177oe1Main.java",
			    "\n" +
			    "public class T177oe1Main {\n" +
			    "   public static void main(String[] args)\n" +
			    "   {\n" +
			    "     final Team177oe1 comp = new Team177oe1();\n" +
			    "     IConfined<@comp> emp = comp.getEmployee(\"emp1\");\n" +
			    "     //System.out.println(emp); <-- forbidden!\n" +
			    "     comp.payBonus(emp, 100);\n" +
			    "   }\n" +
			    "}\n" +
			    "    \n",
		"Team177oe1.java",
			    "\n" +
			    "import java.util.HashMap;\n" +
			    "\n" +
			    "@SuppressWarnings({\"rawtypes\",\"unchecked\"})\n" +
			    "public team class Team177oe1 {\n" +
			    "        private HashMap employees;\n" +
			    "\n" +
			    "        protected class Employee implements IConfined\n" +
			    "        {\n" +
			    "                protected void pay(int amount)\n" +
			    "                {\n" +
			    "                        System.out.print(\"Pay: \"+ amount);\n" +
			    "                }\n" +
			    "        }\n" +
			    "\n" +
			    "        public IConfined getEmployee(String ID)\n" +
			    "        {\n" +
			    "                employees = new HashMap();\n" +
			    "                employees.put(ID, new Employee());\n" +
			    "                return (Employee) employees.get(ID); // cast needed because get returns Object\n" +
			    "        }\n" +
			    "\n" +
			    "        \n" +
			    "        public void payBonus(IConfined emp, int amount)\n" +
			    "        {\n" +
			    "                ((Employee) emp).pay(amount);\n" +
			    "        }\n" +
			    "}\n" +
			    "\n" +
			    "    \n"
            },
            "Pay: 100");
    }

    // see also TPX-465 - but using generics
    // 1.7.7-otjld-otjld-example-2
    public void test177_example2() {
       
       runConformTest(
            new String[] {
		"T177oe2Main.java",
			    "\n" +
			    "public class T177oe2Main {\n" +
			    "   public static void main(String[] args)\n" +
			    "   {\n" +
			    "     final Team177oe2 comp = new Team177oe2();\n" +
			    "     IConfined<@comp> emp = comp.getEmployee(\"emp1\");\n" +
			    "     //System.out.println(emp); <-- forbidden!\n" +
			    "     comp.payBonus(emp, 100);\n" +
			    "   }\n" +
			    "}\n" +
			    "    \n",
		"Team177oe2.java",
			    "\n" +
			    "import java.util.HashMap;\n" +
			    "\n" +
			    "public team class Team177oe2 {\n" +
			    "        private HashMap<String, Employee> employees;\n" +
			    "\n" +
			    "        protected class Employee implements IConfined\n" +
			    "        {\n" +
			    "                protected void pay(int amount)\n" +
			    "                {\n" +
			    "                        System.out.print(\"Pay: \"+ amount);\n" +
			    "                }\n" +
			    "        }\n" +
			    "\n" +
			    "        public IConfined getEmployee(String ID)\n" +
			    "        {\n" +
			    "                employees = new HashMap<String, Employee>();\n" +
			    "                employees.put(ID, new Employee());\n" +
			    "                return employees.get(ID); \n" +
			    "        }\n" +
			    "\n" +
			    "        \n" +
			    "        public void payBonus(IConfined emp, int amount)\n" +
			    "        {\n" +
			    "                ((Employee) emp).pay(amount);\n" +
			    "        }\n" +
			    "}\n" +
			    "\n" +
			    "    \n"
            },
            "Pay: 100");
    }

    // see also TPX-465 -- casting null
    // 1.7.7-otjld-otjld-example-3
    public void test177_example3() {
       
       runConformTest(
            new String[] {
		"T177oe3Main.java",
			    "\n" +
			    "public class T177oe3Main {\n" +
			    "   public static void main(String[] args)\n" +
			    "   {\n" +
			    "     final Team177oe3 comp = new Team177oe3();\n" +
			    "     IConfined<@comp> emp = comp.getEmployee(\"emp1\");\n" +
			    "     System.out.print(emp == null ? \"OK\" : \"NOK\");\n" +
			    "   }\n" +
			    "}\n" +
			    "    \n",
		"Team177oe3.java",
			    "\n" +
			    "import java.util.HashMap;\n" +
			    "\n" +
			    "@SuppressWarnings(\"rawtypes\")\n" +
			    "public team class Team177oe3 {\n" +
			    "        private HashMap employees;\n" +
			    "\n" +
			    "        protected class Employee implements IConfined\n" +
			    "        {\n" +
			    "                protected void pay(int amount)\n" +
			    "                {\n" +
			    "                        System.out.print(\"Pay: \"+ amount);\n" +
			    "                }\n" +
			    "        }\n" +
			    "\n" +
			    "        public IConfined getEmployee(String ID)\n" +
			    "        {\n" +
			    "                employees = new HashMap();\n" +
			    "                return (Employee) employees.get(ID); // actually casting null\n" +
			    "        }\n" +
			    "\n" +
			    "        \n" +
			    "        public void payBonus(IConfined emp, int amount)\n" +
			    "        {\n" +
			    "                ((Employee) emp).pay(amount);\n" +
			    "        }\n" +
			    "}\n" +
			    "\n" +
			    "    \n"
            },
            "OK");
    }

    // relevant cast to IConfined
    // 1.7.7-otjld-otjld-example-4
    public void test177_example4() {
       
       runConformTest(
            new String[] {
		"T177oe4Main.java",
			    "\n" +
			    "public class T177oe4Main {\n" +
			    "   public static void main(String[] args)\n" +
			    "   {\n" +
			    "     final Team177oe4 comp = new Team177oe4();\n" +
			    "     Object emp = comp.getEmployee(\"emp1\");\n" +
			    "     IConfined<@comp> confEmp = (IConfined<@comp>)emp; // relevant cast\n" +
			    "     comp.payBonus(confEmp, 100);\n" +
			    "   }\n" +
			    "}\n" +
			    "    \n",
		"Team177oe4.java",
			    "\n" +
			    "import java.util.HashMap;\n" +
			    "\n" +
			    "public team class Team177oe4 {\n" +
			    "        private HashMap<String,BO> employees;\n" +
			    "\n" +
			    "        public class BO {}\n" +
			    "        \n" +
			    "        protected class Employee extends BO implements IConfined // useless since BO is externalizable\n" +
			    "        {\n" +
			    "                protected void pay(int amount)\n" +
			    "                {\n" +
			    "                        System.out.print(\"Pay: \"+ amount);\n" +
			    "                }\n" +
			    "        }\n" +
			    "\n" +
			    "        public Object getEmployee(String ID)\n" +
			    "        {\n" +
			    "                employees = new HashMap<String,BO>();\n" +
			    "                employees.put(ID, new Employee());\n" +
			    "                return employees.get(ID); // BO is conform to Object\n" +
			    "        }\n" +
			    "\n" +
			    "        \n" +
			    "        public void payBonus(IConfined emp, int amount)\n" +
			    "        {\n" +
			    "                ((Employee) emp).pay(amount);\n" +
			    "        }\n" +
			    "}\n" +
			    "\n" +
			    "    \n"
            },
            "Pay: 100");
    }

    // showing the compiler error
    // 1.7.7-otjld-otjld-example-5
    public void test177_example5() {
        runNegativeTest(
            new String[] {
		"T177oe5Main.java",
			    "\n" +
			    "public class T177oe5Main {\n" +
			    "   public static void main(String[] args)\n" +
			    "   {\n" +
			    "     final Team177oe5 comp = new Team177oe5();\n" +
			    "     IConfined<@comp> emp = comp.getEmployee(\"emp1\");\n" +
			    "     System.out.println(emp); //<-- forbidden!\n" +
			    "     comp.payBonus(emp, 100);\n" +
			    "   }\n" +
			    "}\n" +
			    "    \n",
		"Team177oe5.java",
			    "\n" +
			    "import java.util.HashMap;\n" +
			    "\n" +
			    "public team class Team177oe5 {\n" +
			    "        private HashMap<String, Employee> employees;\n" +
			    "\n" +
			    "        protected class Employee implements IConfined\n" +
			    "        {\n" +
			    "                protected void pay(int amount)\n" +
			    "                {\n" +
			    "                        System.out.print(\"Pay: \"+ amount);\n" +
			    "                }\n" +
			    "        }\n" +
			    "\n" +
			    "        public IConfined getEmployee(String ID)\n" +
			    "        {\n" +
			    "                employees = new HashMap<String, Employee>();\n" +
			    "                employees.put(ID, new Employee());\n" +
			    "                return employees.get(ID); \n" +
			    "        }\n" +
			    "\n" +
			    "\n" +
			    "        public void payBonus(IConfined emp, int amount)\n" +
			    "        {\n" +
			    "                ((Employee) emp).pay(amount);\n" +
			    "        }\n" +
			    "}\n" +
			    "\n" +
			    "    \n"
            },
            "----------\n" + 
    		"1. ERROR in T177oe5Main.java (at line 7)\n" + 
    		"	System.out.println(emp); //<-- forbidden!\n" + 
    		"	           ^^^^^^^\n" + 
    		"The method println(boolean) in the type PrintStream is not applicable for the arguments (IConfined<@comp>)\n" + 
    		"----------\n");
    }

    // see TPX-466
    // 1.7.8-otjld-confined-implicit-inheritance-1
    public void test178_confinedImplicitInheritance1() {
       
       runConformTest(
            new String[] {
		"Team178cii1_2.java",
			    "\n" +
			    "public team class Team178cii1_2 extends Team178cii1_1 {\n" +
			    "    Team178cii1_2() {\n" +
			    "        new R();\n" +
			    "    }\n" +
			    "    public static void main(String[] args) {\n" +
			    "        new Team178cii1_2();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team178cii1_1.java",
			    "\n" +
			    "public team class Team178cii1_1 {\n" +
			    "    protected class R extends Confined {\n" +
			    "        protected R() {\n" +
			    "            super();\n" +
			    "            System.out.print(\"OK\");\n" +
			    "        }\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "OK");
    }

    // see TPX-467
    // 1.7.8-otjld-confined-implicit-inheritance-2
    public void test178_confinedImplicitInheritance2() {
       
       runConformTest(
            new String[] {
		"Team178cii2_2.java",
			    "\n" +
			    "public team class Team178cii2_2 extends Team178cii2_1 {\n" +
			    "    protected class R extends Confined {\n" +
			    "		  protected R() {}\n" +
			    "    }\n" +
			    "    Team178cii2_2() {\n" +
			    "        new R().test();\n" +
			    "    }\n" +
			    "    public static void main(String[] args) {\n" +
			    "        new Team178cii2_2();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team178cii2_1.java",
			    "\n" +
			    "public team class Team178cii2_1 {\n" +
			    "    protected class R extends Confined {\n" +
			    "        R() {\n" +
			    "            super();\n" +
			    "            System.out.print(\"NOK\"); // bypassed by ctor calling super().\n" +
			    "        }\n" +
			    "        protected void test() {\n" +
			    "            System.out.print(\"OK\");\n" +
			    "        }\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "OK");
    }

    // variation: explicit tsuper
    // 1.7.8-otjld-confined-implicit-inheritance-3
    public void test178_confinedImplicitInheritance3() {
       
       runConformTest(
            new String[] {
		"Team178cii3_2.java",
			    "\n" +
			    "public team class Team178cii3_2 extends Team178cii3_1 {\n" +
			    "    @Override\n" +
			    "    protected class R extends Confined {\n" +
			    "        R(int i) { tsuper(); }\n" +
			    "    }\n" +
			    "    Team178cii3_2() {\n" +
			    "        new R();\n" +
			    "    }\n" +
			    "    public static void main(String[] args) {\n" +
			    "        new Team178cii3_2();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team178cii3_1.java",
			    "\n" +
			    "public team class Team178cii3_1 {\n" +
			    "    protected class R extends Confined {\n" +
			    "        protected R() {\n" +
			    "            super();\n" +
			    "            System.out.print(\"OK\");\n" +
			    "        }\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "OK");
    }

    // trying to use baseclass decapsulation for a confined role
    // 1.7.9-otjld-decapsulating-confined-1
    public void test179_decapsulatingConfined1() {
        runNegativeTestMatching(
            new String[] {
		"Team179dc1_2.java",
			    "\n" +
			    "public team class Team179dc1_2 {\n" +
			    "    final Team179dc1_1 other = new Team179dc1_1();\n" +
			    "    public class R playedBy Secret<@other> {}\n" +
			    "}\n" +
			    "    \n",
		"Team179dc1_1.java",
			    "\n" +
			    "public team class Team179dc1_1 {\n" +
			    "    protected class Secret extends Confined {\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "2.1.2(c)");
    }

    // trying to use baseclass decapsulation for a confined role , anchored to base
    // 1.7.9-otjld-decapsulating-confined-2
    public void test179_decapsulatingConfined2() {
        runNegativeTestMatching(
            new String[] {
		"Team179dc2_2.java",
			    "\n" +
			    "public team class Team179dc2_2 {\n" +
			    "    public team class Inner playedBy Team179dc2_1 {\n" +
			    "        public class R playedBy Secret<@base> {}\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team179dc2_1.java",
			    "\n" +
			    "public team class Team179dc2_1 {\n" +
			    "    protected class Secret extends Confined {\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "2.1.2(c)");
    }

    // a bound role is confined
    // 1.7.10-otjld-confined-bound-role-1
    public void test1710_confinedBoundRole1() {
       
       runConformTest(
            new String[] {
		"T1710cbr1Main.java",
			    "\n" +
			    "public class T1710cbr1Main {\n" +
			    "    public static void main(String[] args) {\n" +
			    "        T1710cbr1 object = new T1710cbr1(\"Agent\");\n" +
			    "        Team1710cbr1 safe = new Team1710cbr1();\n" +
			    "        safe.createCredentials(object);\n" +
			    "        if (safe.checkCredentials(object))\n" +
			    "            System.out.print(\"OK\");\n" +
			    "        else\n" +
			    "            System.out.print(\"NOK\");\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"T1710cbr1.java",
			    "\n" +
			    "public class T1710cbr1 {\n" +
			    "    String name;\n" +
			    "    T1710cbr1(String name) {\n" +
			    "        this.name = name;\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team1710cbr1.java",
			    "\n" +
			    "public team class Team1710cbr1 {\n" +
			    "    protected class Credentials extends Confined playedBy T1710cbr1 {\n" +
			    "        String name() -> get String name;\n" +
			    "        String pw;\n" +
			    "        protected void setCredentials() {\n" +
			    "            this.pw = \"secret\"; // should use secure keyboard input\n" +
			    "        }\n" +
			    "        protected boolean checkCredentials() {\n" +
			    "            String given = \"secret\"; // should use secure keyboard input\n" +
			    "            System.out.print(\"Checking \"+this.name()+\": \");\n" +
			    "            return pw.equals(given);\n" +
			    "        }\n" +
			    "    }\n" +
			    "    public void createCredentials(T1710cbr1 as Credentials object) {\n" +
			    "        object.setCredentials();\n" +
			    "    }\n" +
			    "    public boolean checkCredentials(T1710cbr1 as Credentials object) {\n" +
			    "        return object.checkCredentials();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "Checking Agent: OK");
    }

    // a bound role is confined, base constructor used
    public void test1710_confinedBoundRole2() {
       
       runConformTest(
            new String[] {
		"T1710cbr2Main.java",
			    "\n" +
			    "public class T1710cbr2Main {\n" +
			    "    public static void main(String[] args) {\n" +
			    "        Team1710cbr2 safe = new Team1710cbr2();\n" +
			    "        T1710cbr2 object = safe.getT1710cbr2(\"Agent\");\n" +
			    "        if (safe.checkCredentials(object))\n" +
			    "            System.out.print(\"OK\");\n" +
			    "        else\n" +
			    "            System.out.print(\"NOK\");\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"T1710cbr2.java",
			    "\n" +
			    "public class T1710cbr2 {\n" +
			    "    String name;\n" +
			    "    T1710cbr2(String name) {\n" +
			    "        this.name = name;\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team1710cbr2.java",
			    "\n" +
			    "public team class Team1710cbr2 {\n" +
			    "    protected class Credentials extends Confined playedBy T1710cbr2 {\n" +
			    "		 protected Credentials(String name) {\n" +
			    "			 base(name);\n" +
			    "		 }\n" +
			    "        String name() -> get String name;\n" +
			    "        String pw;\n" +
			    "        protected void setCredentials() {\n" +
			    "            this.pw = \"secret\"; // should use secure keyboard input\n" +
			    "        }\n" +
			    "        protected boolean checkCredentials() {\n" +
			    "            String given = \"secret\"; // should use secure keyboard input\n" +
			    "            System.out.print(\"Checking \"+this.name()+\": \");\n" +
			    "            return pw.equals(given);\n" +
			    "        }\n" +
			    "    }\n" +
			    "    public void createCredentials(T1710cbr2 as Credentials object) {\n" +
			    "        object.setCredentials();\n" +
			    "    }\n" +
			    "    public boolean checkCredentials(T1710cbr2 as Credentials object) {\n" +
			    "        return object.checkCredentials();\n" +
			    "    }\n" +
			    "    public T1710cbr2 getT1710cbr2(String name) {\n" +
			    "		 Credentials object = new Credentials(name);" +
			    "		 object.setCredentials();\n" +
			    "		 return object;" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "Checking Agent: OK");
    }

    // a bound role is confined, callin defined
    // see https://bugs.eclipse.org/370271 [compiler] NPE in PredicateGenerator with no predicate present
    public void test1710_confinedBoundRole3() {
       
       runConformTest(
            new String[] {
		"T1710cbr3Main.java",
			    "\n" +
			    "public class T1710cbr3Main {\n" +
			    "    public static void main(String[] args) {\n" +
			    "        Team1710cbr3 safe = new Team1710cbr3();\n" +
			    "        safe.activate();\n" +
			    "        T1710cbr3 object = new T1710cbr3(\"secret\");\n" +
			    "        object.print();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"T1710cbr3.java",
			    "\n" +
			    "public class T1710cbr3 {\n" +
			    "    String name;\n" +
			    "    T1710cbr3(String name) {\n" +
			    "        this.name = name;\n" +
			    "    }\n" +
			    "    void print() {\n" +
			    "        System.out.print(this.name);\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n",
		"Team1710cbr3.java",
			    "\n" +
			    "public team class Team1710cbr3 {\n" +
			    "    protected class Guard extends Confined playedBy T1710cbr3 {\n" +
			    "        callin void forbid() {\n" +
			    "            System.out.print(\"forbidden\");\n" +
			    "        }\n" +
			    "        forbid <- replace print;\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "forbidden");
    }

    // an array of confined is not(?) compatible
    // 1.7.11-otjld-array-of-confined-1
    public void test1711_arrayOfConfined1() {
        runNegativeTestMatching(
            new String[] {
		"Team1711aoc1.java",
			    "\n" +
			    "public team class Team1711aoc1 {\n" +
			    "    protected class Secret extends Confined { }\n" +
			    "    void test() {\n" +
			    "        Secret[] treasure= new Secret[] { new Secret() };\n" +
			    "        Object giveaway= treasure;\n" +
			    "        Object[] openarray= (Object[])giveaway;\n" +
			    "        System.out.print(openarray[0]);\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "7.2(b)");
    }

    // an array of confined is not compatible
    // 1.7.11-otjld-array-of-confined-2
    public void test1711_arrayOfConfined2() {
        runNegativeTestMatching(
            new String[] {
		"Team1711aoc2.java",
			    "\n" +
			    "public team class Team1711aoc2 {\n" +
			    "    protected class Secret extends Confined { }\n" +
			    "    void test() {\n" +
			    "        Secret[] treasure= new Secret[] { new Secret() };\n" +
			    "        Object[] giveaways= treasure;\n" +
			    "        System.out.println(giveaways[0]);\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "Type mismatch");
    }

    // a role explicitly extends confined, using the super type
    // 1.7.12-otjld-explicit-inheritance-of-confined-1
    public void test1712_explicitInheritanceOfConfined1() {
       
       runConformTest(
            new String[] {
		"Team1712eioc1.java",
			    "\n" +
			    "public team class Team1712eioc1 {\n" +
			    "    protected class R extends Confined {\n" +
			    "	protected void sayOK () {\n" +
			    "	    System.out.print(\"OK\");\n" +
			    "	}\n" +
			    "    }\n" +
			    "    Confined getConfined() {\n" +
			    "	return new R();\n" +
			    "    }\n" +
			    "    void testConfined(Confined c) {\n" +
			    "	R r = (R)c;\n" +
			    "	r.sayOK();\n" +
			    "    }\n" +
			    "    Team1712eioc1() {\n" +
			    "	Confined c = getConfined();\n" +
			    "	testConfined(c);\n" +
			    "    }\n" +
			    "    public static void main(String[] args) {\n" +
			    "	new Team1712eioc1();\n" +
			    "    }\n" +
			    "}\n" +
			    "    \n"
            },
            "OK");
    }
}

Back to the top