-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.test.log.txt
More file actions
3606 lines (3527 loc) · 289 KB
/
build.test.log.txt
File metadata and controls
3606 lines (3527 loc) · 289 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
ant -f C:\\x3d-github\\opendis7-java -Djdk.xml.entityExpansionLimit=120000 -Djdk.xml.maxGeneralEntitySizeLimit=50000000 -Djdk.xml.totalEntitySizeLimit=50000000 test
init:
Deleting: C:\x3d-github\opendis7-java\build\built-jar.properties
deps-jar:
Updating property file: C:\x3d-github\opendis7-java\build\built-jar.properties
compile:
compile-test:
clean.pduLog:
deleting prior default autogenerated pduLog/*.dislog files, if any
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog1.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog10.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog11.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog12.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog13.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog14.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog15.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog16.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog17.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog18.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog19.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog2.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog20.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog21.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog22.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog23.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog24.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog25.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog26.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog27.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog28.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog29.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog3.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog30.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog31.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog32.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog33.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog34.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog35.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog36.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog37.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog38.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog39.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog4.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog40.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog5.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog6.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog7.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog8.dislog
Deleting C:\x3d-github\opendis7-java\pduLog\PduCaptureLog9.dislog
test:
*** DisTime.main() self test started...
=== legacy java.util.Date, calendar methods ===
DisTime.getTimestampStyle() = IEEE_ABSOLUTE
patterns yyyy-mm-dd HH:mm:ss
DisTime.getCurrentDisTimestamp() initialTimestamp = 1969-26-12 12:26:16 = 2640543507 = -1654423789 (unsigned vs signed output)
DisTime.getCurrentDisTimestamp() = 1969-26-12 12:26:23 = 2640550665 = -1654416631 (unsigned vs signed output)
DisTime.getCurrentDisAbsoluteTimestamp() = 1969-26-12 12:26:23 = 2640550665
DisTime.getCurrentDisRelativeTimestamp() = 1969-26-12 12:26:24 = 2640551856
DisTime.getCurrentDisTimeUnitsSinceTopOfHour() = 1970-44-15 22:44:35 = 1320275928
=== modern java.time methods ===
note that LocalDateTime is current time zone while default Instant is UTC with time zone Z appended
java.time.LocalDateTime.now(), Instant.now() = 2026-02-04T14:36:53.369800200, 2026-02-04T22:36:53.372748100Z
java.time.LocalDateTime.now(), Instant.now() = 2026-02-04T14:36:53.372748100, 2026-02-04T22:36:53.372748100Z
java.time.LocalDateTime.now(), Instant.now() = 2026-02-04T14:36:53.372748100, 2026-02-04T22:36:53.372748100Z
sleep for 1000 msec...
java.time.LocalDateTime.now(), Instant.now() = 2026-02-04T14:36:54.373777500, 2026-02-04T22:36:54.373777500Z
java.time.LocalDateTime.now(), Instant.now() = 2026-02-04T14:36:54.373777500, 2026-02-04T22:36:54.373777500Z
java.time.LocalDateTime.now(), Instant.now() = 2026-02-04T14:36:54.373777500, 2026-02-04T22:36:54.373777500Z
DisTime.hasEpochLvc() default = false
DisTime.setEpochLvc(Instant.now())...
DisTime.hasEpochLvc(), = true
clearEpochLvc()...
DisTime.hasEpochLvc() = false
DisTime.setEpochLvcNow()...
DisTime.hasEpochLvc(), = true
DisTime.getEpochLvc(), Instant.now(), duration = 2026-02-04T22:36:54.374801600Z, 2026-02-04T22:36:54.374801600Z, 0 msec
sleep for 1000 msec...
DisTime.getEpochLvc(), Instant.now(), duration = 2026-02-04T22:36:54.374801600Z, 2026-02-04T22:36:55.378878100Z, 1004 msec
time checks:
timeSeconds (83 minutes * 60 seconds/minute) = 4980 seconds
DisTIme.convertToLocalTime(timeSeconds) = 01:23:00.0
DisTime.convertToLocalDateTime(timeSeconds) = 01:23:00.0
DisTime.convertToInstant(timeSeconds) = 1970-01-01T01:23:00Z
*** DisTime.main() self test complete.
*** abstract PduTest prepareClass()
*** EventReportPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** EventReportPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 21 EVENT_REPORT, size 64 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 21 EVENT_REPORT, size 64 bytes)
String mismatch:
================================================================
newEspdu=EventReportPdu eventType:EventReportEventType: 0 OTHER padding1:0 fixedDatums: FixedDatum fixedDatumID:VariableRecordType: 1 ENTITY_ID_LIST fixedDatumValue:88 variableDatums: VariableDatum:
variableDatumID: VariableRecordType: 1 ENTITY_ID_LIST
variableDatumLength: 64
variableDatumValue:
[1, 2, 3, 4, 5, 6, 7, 8]
padding: [B@e15b7e8
================================================================
receivedEspdu=EventReportPdu eventType:EventReportEventType: 0 OTHER padding1:0 fixedDatums: FixedDatum fixedDatumID:VariableRecordType: 1 ENTITY_ID_LIST fixedDatumValue:88 FixedDatum fixedDatumID:VariableRecordType: 1 ENTITY_ID_LIST fixedDatumValue:88 variableDatums: VariableDatum:
variableDatumID: VariableRecordType: 1 ENTITY_ID_LIST
variableDatumLength: 64
variableDatumValue:
[1, 2, 3, 4, 5, 6, 7, 8]
padding: [B@1b2abca6
VariableDatum:
variableDatumID: VariableRecordType: 1 ENTITY_ID_LIST
variableDatumLength: 64
variableDatumValue:
[1, 2, 3, 4, 5, 6, 7, 8]
padding: [B@6392827e
================================================================
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** InformationOperationsActionPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog1.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** InformationOperationsActionPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 70 INFORMATION_OPERATIONS_ACTION, size 56 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 70 INFORMATION_OPERATIONS_ACTION, size 56 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 70 INFORMATION_OPERATIONS_ACTION, size 56 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 70 INFORMATION_OPERATIONS_ACTION, size 56 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog1.dislog
*** abstract PduTest tearDownClass()
NullFieldsEntityMarshallTest
*** abstract PduTest prepareClass()
*** RemoveEntityPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog2.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** RemoveEntityPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 12 REMOVE_ENTITY, size 28 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 12 REMOVE_ENTITY, size 28 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 12 REMOVE_ENTITY, size 28 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 12 REMOVE_ENTITY, size 28 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog2.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** ArealObjectStatePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog3.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** ArealObjectStatePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 45 AREAL_OBJECT_STATE, size 49 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 45 AREAL_OBJECT_STATE, size 49 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 45 AREAL_OBJECT_STATE, size 49 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 45 AREAL_OBJECT_STATE, size 49 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog3.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** SetRecordReliablePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog4.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** SetRecordReliablePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 64 SET_RECORD_RELIABLE, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 64 SET_RECORD_RELIABLE, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 64 SET_RECORD_RELIABLE, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 64 SET_RECORD_RELIABLE, size 40 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog4.dislog
*** abstract PduTest tearDownClass()
*** PduRecorderTest setUpClass()
*** PduRecorderTest testReadableTimeStampSetting()
*** PduRecorderTest testDefaultPort()
*** PduRecorderTest testVerboseSettings()
*** PduRecorderTest testDefaultEncoding()
*** PduRecorderTest testEncodingOptionsList()
*** PduRecorderTest testEncodingConstants()
*** PduRecorderTest testProgressiveSetters()
[PduRecorder] *** warning, attempting to change network address while running...
[PduRecorder] *** warning, attempting to change network port while running...
*** PduRecorderTest testFullConstructor()
*** PduRecorderTest testVerboseTimestampSetting()
*** PduRecorderTest testDefaultAddress()
*** PduRecorderTest testSetEncodingBase64()
*** PduRecorderTest testSetEncodingBinary()
*** PduRecorderTest testVerboseReceiptSetting()
*** PduRecorderTest testCommentMarker()
*** PduRecorderTest testDefaultLogFileName()
*** PduRecorderTest testZeroBasedTimeStampSetting()
*** PduRecorderTest testVerboseSendingSetting()
*** PduRecorderTest testUnsupportedEncodingIgnored()
*** setEncodingPduLog(ENCODING_XML) is not yet a supported encoding, encodingPduLog=ENCODING_PLAINTEXT is unchanged
*** PduRecorderTest testIncludeHeadersSetting()
*** PduRecorderTest testSetAddress()
[PduRecorder] *** warning, attempting to change network address while running...
*** PduRecorderTest testSetOutputDirectory()
*** PduRecorderTest testSetPort()
[PduRecorder] *** warning, attempting to change network port while running...
*** PduRecorderTest testSetDescriptor()
*** PduRecorderTest testSetLogFileName()
*** PduRecorderTest tearDownClass()
*** abstract PduTest prepareClass()
*** IntercomControlPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog5.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** IntercomControlPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 32 INTERCOM_CONTROL, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 32 INTERCOM_CONTROL, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 32 INTERCOM_CONTROL, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 32 INTERCOM_CONTROL, size 40 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog5.dislog
*** abstract PduTest tearDownClass()
X3dInterpolatorsTest setUpClass()
testInterpolators
*** EntityTypeTest setUpClass()
*** EntityTypeTest testMarshalUnmarshalDataStream()
*** EntityTypeTest testSettersAndGetters()
*** EntityTypeTest testMarshalUnmarshalByteBuffer()
*** EntityTypeTest testEquality()
*** EntityTypeTest testDefaultConstructor()
*** EntityTypeTest tearDownClass()
*** abstract PduTest prepareClass()
*** CollisionPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** CollisionPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 04 COLLISION, size 60 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 04 COLLISION, size 60 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 04 COLLISION, size 60 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 04 COLLISION, size 60 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog.dislog
*** abstract PduTest tearDownClass()
*** FixedDatumTest setUpClass()
*** FixedDatumTest testMarshalUnmarshalDataStream()
*** FixedDatumTest testMarshalledSize()
*** FixedDatumTest testSettersAndGetters()
*** FixedDatumTest testMarshalUnmarshalByteBuffer()
*** FixedDatumTest testEquality()
*** FixedDatumTest testDefaultConstructor()
*** FixedDatumTest tearDownClass()
*** abstract PduTest prepareClass()
*** ActionRequestPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog1.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** ActionRequestPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 16 ACTION_REQUEST, size 64 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 16 ACTION_REQUEST, size 64 bytes)
String mismatch:
================================================================
newEspdu=ActionRequestPdu requestID:6001 actionID:ActionRequestActionID: 0 OTHER fixedDatums: FixedDatum fixedDatumID:VariableRecordType: 1 ENTITY_ID_LIST fixedDatumValue:42 variableDatums: VariableDatum:
variableDatumID: VariableRecordType: 1 ENTITY_ID_LIST
variableDatumLength: 64
variableDatumValue:
[1, 2, 3, 4, 5, 6, 7, 8]
padding: [B@46cdf8bd
================================================================
receivedEspdu=ActionRequestPdu requestID:6001 actionID:ActionRequestActionID: 0 OTHER fixedDatums: FixedDatum fixedDatumID:VariableRecordType: 1 ENTITY_ID_LIST fixedDatumValue:42 FixedDatum fixedDatumID:VariableRecordType: 1 ENTITY_ID_LIST fixedDatumValue:42 variableDatums: VariableDatum:
variableDatumID: VariableRecordType: 1 ENTITY_ID_LIST
variableDatumLength: 64
variableDatumValue:
[1, 2, 3, 4, 5, 6, 7, 8]
padding: [B@f0c8a99
VariableDatum:
variableDatumID: VariableRecordType: 1 ENTITY_ID_LIST
variableDatumLength: 64
variableDatumValue:
[1, 2, 3, 4, 5, 6, 7, 8]
padding: [B@740cae06
================================================================
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog1.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** LiveEntityDetonationPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog2.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** LiveEntityDetonationPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 50 LIVE_ENTITY_DETONATION, size 79 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 50 LIVE_ENTITY_DETONATION, size 79 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog2.dislog
*** abstract PduTest tearDownClass()
*** EntityMarkingTest setUpClass()
*** EntityMarkingTest testMarshalUnmarshalDataStream()
*** EntityMarkingTest testSetCharacters()
*** EntityMarkingTest testSetCharacterSet()
*** EntityMarkingTest testMarshalUnmarshalByteBuffer()
*** EntityMarkingTest testEquality()
*** EntityMarkingTest testDefaultConstructor()
*** EntityMarkingTest tearDownClass()
*** abstract PduTest prepareClass()
*** EntityDamageStatusPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog3.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** EntityDamageStatusPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 69 ENTITY_DAMAGE_STATUS, size 24 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 69 ENTITY_DAMAGE_STATUS, size 24 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 69 ENTITY_DAMAGE_STATUS, size 24 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 69 ENTITY_DAMAGE_STATUS, size 24 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog3.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** CreateEntityPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog4.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** CreateEntityPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 11 CREATE_ENTITY, size 28 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 11 CREATE_ENTITY, size 28 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 11 CREATE_ENTITY, size 28 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 11 CREATE_ENTITY, size 28 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog4.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** RepairResponsePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog5.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** RepairResponsePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 10 REPAIR_RESPONSE, size 28 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 10 REPAIR_RESPONSE, size 28 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 10 REPAIR_RESPONSE, size 28 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 10 REPAIR_RESPONSE, size 28 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog5.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** CollisionElasticPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog6.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** CollisionElasticPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 66 COLLISION_ELASTIC, size 100 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 66 COLLISION_ELASTIC, size 100 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 66 COLLISION_ELASTIC, size 100 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 66 COLLISION_ELASTIC, size 100 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog6.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** DirectedEnergyFirePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog7.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** DirectedEnergyFirePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 68 DIRECTED_ENERGY_FIRE, size 88 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 68 DIRECTED_ENERGY_FIRE, size 88 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 68 DIRECTED_ENERGY_FIRE, size 88 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 68 DIRECTED_ENERGY_FIRE, size 88 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog7.dislog
*** abstract PduTest tearDownClass()
*** DisChannelTest setUpClass()
*** DisChannelTest testSetNetworkAddress()
[DisChannel] thisHostName=AlienwareLaptop
*** DisChannelTest testDefaultNetworkAddress()
[DisChannel] thisHostName=AlienwareLaptop
*** DisChannelTest testSetNetworkPort()
[DisChannel] thisHostName=AlienwareLaptop
*** DisChannelTest testDescriptorConstructor()
[DisChannel] thisHostName=AlienwareLaptop
*** DisChannelTest testGetPduFactory()
[DisChannel] thisHostName=AlienwareLaptop
*** DisChannelTest testSetDescriptor()
[DisChannel] thisHostName=AlienwareLaptop
*** DisChannelTest testDefaultNetworkPort()
[DisChannel] thisHostName=AlienwareLaptop
*** DisChannelTest testTimestampStyle()
[DisChannel] thisHostName=AlienwareLaptop
*** DisChannelTest testDefaultConstructor()
[DisChannel] thisHostName=AlienwareLaptop
*** DisChannelTest tearDownClass()
*** EulerAnglesTest setUpClass()
*** EulerAnglesTest testMarshalUnmarshalDataStream()
*** EulerAnglesTest testMarshalledSize()
*** EulerAnglesTest testSettersAndGetters()
*** EulerAnglesTest testMarshalUnmarshalByteBuffer()
*** EulerAnglesTest testEquality()
*** EulerAnglesTest testDefaultConstructor()
*** EulerAnglesTest tearDownClass()
*** abstract PduTest prepareClass()
*** AggregateStatePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog8.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** AggregateStatePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 33 AGGREGATE_STATE, size 136 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 33 AGGREGATE_STATE, size 136 bytes)
String mismatch:
================================================================
newEspdu=AggregateStatePdu aggregateID:AggregateIdentifier simulationAddress:SimulationAddress site:1 application:2 aggregateID:100 forceID:ForceID 1 FRIENDLY aggregateState:AggregateStateAggregateState 1 AGGREGATED aggregateType:AggregateType aggregateKind:AggregateStateAggregateKind 1 MILITARY_HIERARCHY domain:PlatformDomain 1 LAND country:Country 225 UNITED_STATES_OF_AMERICA_USA category:0 subcategory:AggregateStateSubcategory 0 OTHER specificInfo:AggregateStateSpecific 0 NO_HEADQUARTERS extra:0 formation:AggregateStateFormation: 2 VEE aggregateMarking:AggregateMarking characterSet:EntityMarkingCharacterSet 0 UNUSED characters:[84, 101, 115, 116, 65, 103, 103, 49] dimensions:Vector3Float x:100.0 y:200.0 z:50.0 orientation:Vector3Float x:0.0 y:0.0 z:0.0 centerOfMass:Vector3Double x:1000.0 y:2000.0 z:3000.0 velocity:Vector3Float x:10.0 y:5.0 z:0.0 padTo32:[B@7bba5817 aggregateIDList: entityIDList: silentAggregateSystemList: silentEntitySystemList: variableDatumList:
================================================================
receivedEspdu=AggregateStatePdu aggregateID:AggregateIdentifier simulationAddress:SimulationAddress site:1 application:2 aggregateID:100 forceID:ForceID 1 FRIENDLY aggregateState:AggregateStateAggregateState 1 AGGREGATED aggregateType:AggregateType aggregateKind:AggregateStateAggregateKind 1 MILITARY_HIERARCHY domain:PlatformDomain 1 LAND country:Country 225 UNITED_STATES_OF_AMERICA_USA category:0 subcategory:AggregateStateSubcategory 0 OTHER specificInfo:AggregateStateSpecific 0 NO_HEADQUARTERS extra:0 formation:AggregateStateFormation: 2 VEE aggregateMarking:AggregateMarking characterSet:EntityMarkingCharacterSet 0 UNUSED characters:[84, 101, 115, 116, 65, 103, 103, 49, 66, -56, 0, 0, 67, 72, 0, 0, 66, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] dimensions:Vector3Float x:5.92886E-39 y:0.0 z:5.9346E-39 orientation:Vector3Float x:0.0 y:5.937537E-39 z:0.0 centerOfMass:Vector3Double x:1.90521949302079E-307 y:0.0 z:0.0 velocity:Vector3Float x:0.0 y:0.0 z:0.0 padTo32:[B@742ff096 aggregateIDList: entityIDList: silentAggregateSystemList: silentEntitySystemList: variableDatumList:
================================================================
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog8.dislog
*** abstract PduTest tearDownClass()
*** DeadReckoningParametersTest setUpClass()
*** DeadReckoningParametersTest testMarshalUnmarshalDataStream()
*** DeadReckoningParametersTest testSetAlgorithm()
*** DeadReckoningParametersTest testSetAccelerationAndVelocity()
*** DeadReckoningParametersTest testMarshalUnmarshalByteBuffer()
*** DeadReckoningParametersTest testDefaultConstructor()
*** DeadReckoningParametersTest tearDownClass()
ObjectTypeMarshallTest
Name: edu.nps.moves.dis7.objectTypes.LinearObject.Obstacle.ConcertinaWire._2Roll Domain: PlatformDomain 1 LAND Kind: ObjectKind 1 OBSTACLE Category: 2 Subcategory: 1
01 01 02 01
Name: edu.nps.moves.dis7.objectTypes.LinearObject.Culturalfeature.TracksTire.TracksTire Domain: PlatformDomain 1 LAND Kind: ObjectKind 3 CULTURAL_FEATURE Category: 2 Subcategory: 0
01 03 02 00
*** abstract PduTest prepareClass()
*** MinefieldDataPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog9.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** MinefieldDataPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 39 MINEFIELD_DATA, size 44 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 39 MINEFIELD_DATA, size 44 bytes)
String mismatch:
================================================================
newEspdu=MinefieldDataPdu minefieldID:MinefieldIdentifier simulationAddress:SimulationAddress site:1 application:2 minefieldNumber:100 requestingEntityID:SimulationIdentifier simulationAddress:SimulationAddress site:3 application:4 referenceNumber:0 minefieldSequenceNumbeer:1 requestID:1 pduSequenceNumber:1 numberOfPdus:1 padding:0 dataFilter:DataFilterRecord bitFlags:0 GROUND_BURIAL_DEPTH_OFFSET_BIT:0 WATER_BURIAL_DEPTH_OFFSET_BIT:1 SNOW_BURIAL_DEPTH_OFFSET_BIT:2 MINE_ORIENTATION_BIT:3 THERMAL_CONSTRAST_BIT:4 REFLECTANCE_BIT:5 MINE_EMPLACEMENT_TIME_BIT:6 TRIP_DETONATION_WIRE_BIT:7 FUSING_BIT:8 SCALAR_DETECTION_COEFFICIENT_BIT:9 PAINT_SCHEME_BIT:10 mineType:EntityType entityKind:EntityKind 1 PLATFORM domain:Land country:Country 225 UNITED_STATES_OF_AMERICA_USA category:0 subCategory:0 specific:0 extra:0 padTo32:[B@72035809 groundBurialDepthOffset:[] waterBurialDepthOffset:[] snowBurialDepthOffset:[] thermalContrast:[] reflectance:[] mineEntityNumber:[] scalarDetectionCoefficient:[] padTo32_2:[B@909217e numberOfTripDetonationWires:[] padTo32_3:[B@18271936 numberOfVertices:[] sensorTypes: mineLocation: mineOrientation: mineEmplacementTime: fusing: paintScheme:
================================================================
receivedEspdu=MinefieldDataPdu minefieldID:MinefieldIdentifier simulationAddress:SimulationAddress site:1 application:2 minefieldNumber:100 requestingEntityID:SimulationIdentifier simulationAddress:SimulationAddress site:3 application:4 referenceNumber:0 minefieldSequenceNumbeer:1 requestID:1 pduSequenceNumber:1 numberOfPdus:1 padding:0 dataFilter:DataFilterRecord bitFlags:0 GROUND_BURIAL_DEPTH_OFFSET_BIT:0 WATER_BURIAL_DEPTH_OFFSET_BIT:1 SNOW_BURIAL_DEPTH_OFFSET_BIT:2 MINE_ORIENTATION_BIT:3 THERMAL_CONSTRAST_BIT:4 REFLECTANCE_BIT:5 MINE_EMPLACEMENT_TIME_BIT:6 TRIP_DETONATION_WIRE_BIT:7 FUSING_BIT:8 SCALAR_DETECTION_COEFFICIENT_BIT:9 PAINT_SCHEME_BIT:10 mineType:EntityType entityKind:EntityKind 1 PLATFORM domain:Land country:Country 225 UNITED_STATES_OF_AMERICA_USA category:0 subCategory:0 specific:0 extra:0 padTo32:[B@606e4010 groundBurialDepthOffset:[] waterBurialDepthOffset:[] snowBurialDepthOffset:[] thermalContrast:[] reflectance:[] mineEntityNumber:[] scalarDetectionCoefficient:[] padTo32_2:[B@8458f04 numberOfTripDetonationWires:[] padTo32_3:[B@48075da3 numberOfVertices:[] sensorTypes: mineLocation: mineOrientation: mineEmplacementTime: fusing: paintScheme:
================================================================
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog9.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** LiveEntityFirePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog10.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** LiveEntityFirePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 49 LIVE_ENTITY_FIRE, size 67 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 49 LIVE_ENTITY_FIRE, size 67 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog10.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** ReceiverPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog11.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** ReceiverPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 27 RECEIVER, size 36 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 27 RECEIVER, size 36 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 27 RECEIVER, size 36 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 27 RECEIVER, size 36 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog11.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** DataReliablePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog12.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** DataReliablePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 60 DATA_RELIABLE, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 60 DATA_RELIABLE, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 60 DATA_RELIABLE, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 60 DATA_RELIABLE, size 40 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog12.dislog
*** abstract PduTest tearDownClass()
edu.nps.moves.dis7.test.FixedAndVariableDatumRoundTripTest setUpClass()
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[DisThreadedNetworkInterface] [sending 1] DisPduType 17 ACTION_RESPONSE, size 128 bytes)
[DisThreadedNetworkInterface] [receipt 1] DisPduType 17 ACTION_RESPONSE, size 128 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[DisThreadedNetworkInterface] [sending 1] DisPduType 17 ACTION_RESPONSE, size 128 bytes)
[DisThreadedNetworkInterface] [receipt 1] DisPduType 17 ACTION_RESPONSE, size 128 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
edu.nps.moves.dis7.test.FixedAndVariableDatumRoundTripTest tearDownClass()
*** VariableDatumTest setUpClass()
*** VariableDatumTest testMarshalUnmarshalDataStream()
*** VariableDatumTest testEmptyDatum()
*** VariableDatumTest testSetVariableDatumValue()
*** VariableDatumTest testMarshalUnmarshalByteBuffer()
*** VariableDatumTest testDefaultConstructor()
*** VariableDatumTest tearDownClass()
*** abstract PduTest prepareClass()
*** ResupplyReceivedPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog13.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** ResupplyReceivedPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 07 RESUPPLY_RECEIVED, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 07 RESUPPLY_RECEIVED, size 40 bytes)
String mismatch:
================================================================
newEspdu=ResupplyReceivedPdu receivingEntityID:EntityID siteID:1 applicationID:2 entityID:3 supplyingEntityID:EntityID siteID:4 applicationID:5 entityID:6 padding1:0 padding2:0 supplies: SupplyQuantity supplyType:EntityType entityKind:EntityKind 0 OTHER domain:Other country:Country 0 OTHER category:0 subCategory:0 specific:0 extra:0 quantity:200.0
================================================================
receivedEspdu=ResupplyReceivedPdu receivingEntityID:EntityID siteID:1 applicationID:2 entityID:3 supplyingEntityID:EntityID siteID:4 applicationID:5 entityID:6 padding1:0 padding2:0 supplies: SupplyQuantity supplyType:EntityType entityKind:EntityKind 0 OTHER domain:Other country:Country 0 OTHER category:0 subCategory:0 specific:0 extra:0 quantity:200.0 SupplyQuantity supplyType:EntityType entityKind:EntityKind 0 OTHER domain:Other country:Country 0 OTHER category:0 subCategory:0 specific:0 extra:0 quantity:200.0
================================================================
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog13.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** IFFPduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog14.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** IFFPduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 28 IDENTIFICATION_FRIEND_OR_FOE, size 124 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 28 IDENTIFICATION_FRIEND_OR_FOE, size 124 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog14.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** DataQueryReliablePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog15.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** DataQueryReliablePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 58 DATA_QUERY_RELIABLE, size 44 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 58 DATA_QUERY_RELIABLE, size 44 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 58 DATA_QUERY_RELIABLE, size 44 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 58 DATA_QUERY_RELIABLE, size 44 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog15.dislog
*** abstract PduTest tearDownClass()
*** Matrix4fTest setUpClass()
*** Matrix4fTest testCopyConstructor()
*** Matrix4fTest testIdentityXformVec4f()
*** Matrix4fTest testArrayConstructor()
*** Matrix4fTest testSetEulersBottomRow()
*** Matrix4fTest testIdentity()
*** Matrix4fTest testSetEulersZero()
*** Matrix4fTest testSetMatValue()
*** Matrix4fTest testDefaultConstructor()
*** Matrix4fTest tearDownClass()
*** PduFactoryExtendedTest setUpClass()
*** PduFactoryExtendedTest testMakeCommentPduWithStrings()
*** PduFactoryExtendedTest testMakeEntityStatePdu()
*** PduFactoryExtendedTest testHeaderConsistencyAcrossPduTypes()
*** PduFactoryExtendedTest testMakeCreateEntityPdu()
*** PduFactoryExtendedTest testMakeCollisionPdu()
*** PduFactoryExtendedTest testCustomTimestampStyle()
*** PduFactoryExtendedTest testCreatePduByType()
*** PduFactoryExtendedTest testFullConstructor()
*** PduFactoryExtendedTest testDefaultFactory()
*** PduFactoryExtendedTest testMakeFirePdu()
*** PduFactoryExtendedTest testMarshalUnmarshalRoundTrip()
*** PduFactoryExtendedTest testMakeDetonationPdu()
*** PduFactoryExtendedTest tearDownClass()
*** AntennaLocationTest setUpClass()
*** AntennaLocationTest testMarshalUnmarshalDataStream()
*** AntennaLocationTest testMarshalledSize()
*** AntennaLocationTest testSettersAndGetters()
*** AntennaLocationTest testMarshalUnmarshalByteBuffer()
*** AntennaLocationTest testDefaultConstructor()
*** AntennaLocationTest tearDownClass()
MarshalEnumsTest
*** abstract PduTest prepareClass()
*** CreateEntityReliablePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog16.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** CreateEntityReliablePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 51 CREATE_ENTITY_RELIABLE, size 32 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 51 CREATE_ENTITY_RELIABLE, size 32 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 51 CREATE_ENTITY_RELIABLE, size 32 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 51 CREATE_ENTITY_RELIABLE, size 32 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog16.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** SetDataReliablePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog17.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** SetDataReliablePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 59 SET_DATA_RELIABLE, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 59 SET_DATA_RELIABLE, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 59 SET_DATA_RELIABLE, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 59 SET_DATA_RELIABLE, size 40 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog17.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** AcknowledgePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog18.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** AcknowledgePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 15 ACKNOWLEDGE, size 32 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 15 ACKNOWLEDGE, size 32 bytes)
No corresponding enumeration found for value 0 of enum AcknowledgeAcknowledgeFlag
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 15 ACKNOWLEDGE, size 32 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 15 ACKNOWLEDGE, size 32 bytes)
No corresponding enumeration found for value 0 of enum AcknowledgeAcknowledgeFlag
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog18.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** EventReportReliablePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog19.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** EventReportReliablePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 61 EVENT_REPORT_RELIABLE, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 61 EVENT_REPORT_RELIABLE, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 61 EVENT_REPORT_RELIABLE, size 40 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 61 EVENT_REPORT_RELIABLE, size 40 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog19.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** ActionResponsePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog20.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** ActionResponsePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 17 ACTION_RESPONSE, size 64 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 17 ACTION_RESPONSE, size 64 bytes)
String mismatch:
================================================================
newEspdu=ActionResponsePdu requestID:7001 requestStatus:ActionResponseRequestStatus: 0 OTHER fixedDatums: FixedDatum fixedDatumID:VariableRecordType: 1 ENTITY_ID_LIST fixedDatumValue:99 variableDatums: VariableDatum:
variableDatumID: VariableRecordType: 1 ENTITY_ID_LIST
variableDatumLength: 64
variableDatumValue:
[10, 20, 30, 40, 50, 60, 70, 80]
padding: [B@37911f88
================================================================
receivedEspdu=ActionResponsePdu requestID:7001 requestStatus:ActionResponseRequestStatus: 0 OTHER fixedDatums: FixedDatum fixedDatumID:VariableRecordType: 1 ENTITY_ID_LIST fixedDatumValue:99 FixedDatum fixedDatumID:VariableRecordType: 1 ENTITY_ID_LIST fixedDatumValue:99 variableDatums: VariableDatum:
variableDatumID: VariableRecordType: 1 ENTITY_ID_LIST
variableDatumLength: 64
variableDatumValue:
[10, 20, 30, 40, 50, 60, 70, 80]
padding: [B@6f1c29b7
VariableDatum:
variableDatumID: VariableRecordType: 1 ENTITY_ID_LIST
variableDatumLength: 64
variableDatumValue:
[10, 20, 30, 40, 50, 60, 70, 80]
padding: [B@4d6025c5
================================================================
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog20.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** ActionRequestReliablePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog21.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** ActionRequestReliablePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 56 ACTION_REQUEST_RELIABLE, size 44 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 56 ACTION_REQUEST_RELIABLE, size 44 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 56 ACTION_REQUEST_RELIABLE, size 44 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 56 ACTION_REQUEST_RELIABLE, size 44 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=false receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog21.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** RepairCompletePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog22.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** RepairCompletePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 09 REPAIR_COMPLETE, size 28 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 09 REPAIR_COMPLETE, size 28 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 09 REPAIR_COMPLETE, size 28 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 09 REPAIR_COMPLETE, size 28 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false
PduRecorder.stop() closing recorder log file:
C:\x3d-github\opendis7-java\pduLog\PduCaptureLog22.dislog
*** abstract PduTest tearDownClass()
*** abstract PduTest prepareClass()
*** CommentReliablePduTest setUpClass()
*** abstract PduTest setupNetwork()
[PduRecorder] Recorder log file open: C:\x3d-github\opendis7-java\pduLog\PduCaptureLog23.dislog
[DisThreadedNetworkInterface] using network interface Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[DisThreadedNetworkInterface] datagramSocket.joinGroup address=239.1.2.3 port=3000 isConnected()=false createDatagramSocket() complete.
[DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
[DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
[PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
*** CommentReliablePduTest testMultiplePdus()
[DisThreadedNetworkInterface PduRecorder] [sending 1] DisPduType 62 COMMENT_RELIABLE, size 32 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 1] DisPduType 62 COMMENT_RELIABLE, size 32 bytes)
[DisThreadedNetworkInterface PduRecorder] [sending 2] DisPduType 62 COMMENT_RELIABLE, size 32 bytes)
[DisThreadedNetworkInterface PduRecorder] [receipt 2] DisPduType 62 COMMENT_RELIABLE, size 32 bytes)
*** setKillSentinelAndInterrupts() sentinel killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
[DisThreadedNetworkInterface PduRecorder] datagramSocket.leaveGroup address=239.1.2.3 port=3000 isClosed()=true close() complete.
*** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
*** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
*** Thread close status: sendingThread.isAlive()=false receiveThread.isAlive()=false