summaryrefslogtreecommitdiff
path: root/common/tests/unit/src/com/android/net/module/util/PacketBuilderTest.java
blob: e40cd6b6bfc549c5547857770d65750a6d244ae9 (plain)
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
/*
 * Copyright (C) 2021 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.net.module.util;

import static android.system.OsConstants.IPPROTO_IP;
import static android.system.OsConstants.IPPROTO_IPV6;
import static android.system.OsConstants.IPPROTO_TCP;
import static android.system.OsConstants.IPPROTO_UDP;

import static com.android.net.module.util.NetworkStackConstants.ETHER_TYPE_IPV4;
import static com.android.net.module.util.NetworkStackConstants.ETHER_TYPE_IPV6;
import static com.android.net.module.util.NetworkStackConstants.IPV4_HEADER_MIN_LEN;
import static com.android.net.module.util.NetworkStackConstants.TCPHDR_ACK;
import static com.android.net.module.util.NetworkStackConstants.TCP_HEADER_MIN_LEN;
import static com.android.net.module.util.NetworkStackConstants.UDP_HEADER_LEN;
import static com.android.testutils.MiscAsserts.assertThrows;

import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

import android.net.InetAddresses;
import android.net.MacAddress;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.test.filters.SmallTest;
import androidx.test.runner.AndroidJUnit4;

import com.android.net.module.util.structs.EthernetHeader;
import com.android.net.module.util.structs.Ipv4Header;
import com.android.net.module.util.structs.Ipv6Header;
import com.android.net.module.util.structs.TcpHeader;
import com.android.net.module.util.structs.UdpHeader;

import org.junit.Test;
import org.junit.runner.RunWith;

import java.io.IOException;
import java.net.Inet4Address;
import java.net.Inet6Address;
import java.nio.ByteBuffer;

@RunWith(AndroidJUnit4.class)
@SmallTest
public class PacketBuilderTest {
    private static final MacAddress SRC_MAC = MacAddress.fromString("11:22:33:44:55:66");
    private static final MacAddress DST_MAC = MacAddress.fromString("aa:bb:cc:dd:ee:ff");
    private static final Inet4Address IPV4_SRC_ADDR = addr4("192.0.2.1");
    private static final Inet4Address IPV4_DST_ADDR = addr4("198.51.100.1");
    private static final Inet6Address IPV6_SRC_ADDR = addr6("2001:db8::1");
    private static final Inet6Address IPV6_DST_ADDR = addr6("2001:db8::2");
    private static final short SRC_PORT = 9876;
    private static final short DST_PORT = 433;
    private static final short SEQ_NO = 13579;
    private static final short ACK_NO = 24680;
    private static final byte TYPE_OF_SERVICE = 0;
    private static final short ID = 27149;
    private static final short FLAGS_AND_FRAGMENT_OFFSET = (short) 0x4000; // flags=DF, offset=0
    private static final byte TIME_TO_LIVE = (byte) 0x40;
    private static final short WINDOW = (short) 0x2000;
    private static final short URGENT_POINTER = 0;
    // version=6, traffic class=0x80, flowlabel=0x515ca;
    private static final int VERSION_TRAFFICCLASS_FLOWLABEL = 0x680515ca;
    private static final short HOP_LIMIT = 0x40;
    private static final ByteBuffer DATA = ByteBuffer.wrap(new byte[] {
            (byte) 0xde, (byte) 0xad, (byte) 0xbe, (byte) 0xef
    });

    private static final byte[] TEST_PACKET_ETHERHDR_IPV4HDR_TCPHDR =
            new byte[] {
                // packet = (scapy.Ether(src="11:22:33:44:55:66", dst="aa:bb:cc:dd:ee:ff",
                //                       type='IPv4') /
                //           scapy.IP(src="192.0.2.1", dst="198.51.100.1",
                //                    tos=0, id=27149, flags='DF') /
                //           scapy.TCP(sport=9876, dport=433, seq=13579, ack=24680,
                //                     flags='A', window=8192, urgptr=0))
                // Ether header
                (byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd,
                (byte) 0xee, (byte) 0xff, (byte) 0x11, (byte) 0x22,
                (byte) 0x33, (byte) 0x44, (byte) 0x55, (byte) 0x66,
                (byte) 0x08, (byte) 0x00,
                // IPv4 header
                (byte) 0x45, (byte) 0x00, (byte) 0x00, (byte) 0x28,
                (byte) 0x6a, (byte) 0x0d, (byte) 0x40, (byte) 0x00,
                (byte) 0x40, (byte) 0x06, (byte) 0xe4, (byte) 0x8c,
                (byte) 0xc0, (byte) 0x00, (byte) 0x02, (byte) 0x01,
                (byte) 0xc6, (byte) 0x33, (byte) 0x64, (byte) 0x01,
                // TCP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x00, (byte) 0x35, (byte) 0x0b,
                (byte) 0x00, (byte) 0x00, (byte) 0x60, (byte) 0x68,
                (byte) 0x50, (byte) 0x10, (byte) 0x20, (byte) 0x00,
                (byte) 0xe5, (byte) 0xe5, (byte) 0x00, (byte) 0x00
            };

    private static final byte[] TEST_PACKET_ETHERHDR_IPV4HDR_TCPHDR_DATA =
            new byte[] {
                // packet = (scapy.Ether(src="11:22:33:44:55:66", dst="aa:bb:cc:dd:ee:ff",
                //                       type='IPv4') /
                //           scapy.IP(src="192.0.2.1", dst="198.51.100.1",
                //                    tos=0, id=27149, flags='DF') /
                //           scapy.TCP(sport=9876, dport=433, seq=13579, ack=24680,
                //                     flags='A', window=8192, urgptr=0) /
                //           b'\xde\xad\xbe\xef')
                // Ether header
                (byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd,
                (byte) 0xee, (byte) 0xff, (byte) 0x11, (byte) 0x22,
                (byte) 0x33, (byte) 0x44, (byte) 0x55, (byte) 0x66,
                (byte) 0x08, (byte) 0x00,
                // IPv4 header
                (byte) 0x45, (byte) 0x00, (byte) 0x00, (byte) 0x2c,
                (byte) 0x6a, (byte) 0x0d, (byte) 0x40, (byte) 0x00,
                (byte) 0x40, (byte) 0x06, (byte) 0xe4, (byte) 0x88,
                (byte) 0xc0, (byte) 0x00, (byte) 0x02, (byte) 0x01,
                (byte) 0xc6, (byte) 0x33, (byte) 0x64, (byte) 0x01,
                // TCP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x00, (byte) 0x35, (byte) 0x0b,
                (byte) 0x00, (byte) 0x00, (byte) 0x60, (byte) 0x68,
                (byte) 0x50, (byte) 0x10, (byte) 0x20, (byte) 0x00,
                (byte) 0x48, (byte) 0x44, (byte) 0x00, (byte) 0x00,
                // Data
                (byte) 0xde, (byte) 0xad, (byte) 0xbe, (byte) 0xef
            };

    private static final byte[] TEST_PACKET_IPV4HDR_TCPHDR =
            new byte[] {
                // packet = (scapy.IP(src="192.0.2.1", dst="198.51.100.1",
                //                    tos=0, id=27149, flags='DF') /
                //           scapy.TCP(sport=9876, dport=433, seq=13579, ack=24680,
                //                     flags='A', window=8192, urgptr=0))
                // IPv4 header
                (byte) 0x45, (byte) 0x00, (byte) 0x00, (byte) 0x28,
                (byte) 0x6a, (byte) 0x0d, (byte) 0x40, (byte) 0x00,
                (byte) 0x40, (byte) 0x06, (byte) 0xe4, (byte) 0x8c,
                (byte) 0xc0, (byte) 0x00, (byte) 0x02, (byte) 0x01,
                (byte) 0xc6, (byte) 0x33, (byte) 0x64, (byte) 0x01,
                // TCP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x00, (byte) 0x35, (byte) 0x0b,
                (byte) 0x00, (byte) 0x00, (byte) 0x60, (byte) 0x68,
                (byte) 0x50, (byte) 0x10, (byte) 0x20, (byte) 0x00,
                (byte) 0xe5, (byte) 0xe5, (byte) 0x00, (byte) 0x00
            };

    private static final byte[] TEST_PACKET_IPV4HDR_TCPHDR_DATA =
            new byte[] {
                // packet = (scapy.IP(src="192.0.2.1", dst="198.51.100.1",
                //                    tos=0, id=27149, flags='DF') /
                //           scapy.TCP(sport=9876, dport=433, seq=13579, ack=24680,
                //                     flags='A', window=8192, urgptr=0) /
                //           b'\xde\xad\xbe\xef')
                // IPv4 header
                (byte) 0x45, (byte) 0x00, (byte) 0x00, (byte) 0x2c,
                (byte) 0x6a, (byte) 0x0d, (byte) 0x40, (byte) 0x00,
                (byte) 0x40, (byte) 0x06, (byte) 0xe4, (byte) 0x88,
                (byte) 0xc0, (byte) 0x00, (byte) 0x02, (byte) 0x01,
                (byte) 0xc6, (byte) 0x33, (byte) 0x64, (byte) 0x01,
                // TCP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x00, (byte) 0x35, (byte) 0x0b,
                (byte) 0x00, (byte) 0x00, (byte) 0x60, (byte) 0x68,
                (byte) 0x50, (byte) 0x10, (byte) 0x20, (byte) 0x00,
                (byte) 0x48, (byte) 0x44, (byte) 0x00, (byte) 0x00,
                // Data
                (byte) 0xde, (byte) 0xad, (byte) 0xbe, (byte) 0xef
            };

    private static final byte[] TEST_PACKET_ETHERHDR_IPV4HDR_UDPHDR =
            new byte[] {
                // packet = (scapy.Ether(src="11:22:33:44:55:66", dst="aa:bb:cc:dd:ee:ff",
                //                 type='IPv4') /
                //           scapy.IP(src="192.0.2.1", dst="198.51.100.1",
                //                 tos=0, id=27149, flags='DF') /
                //           scapy.UDP(sport=9876, dport=433))
                // Ether header
                (byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd,
                (byte) 0xee, (byte) 0xff, (byte) 0x11, (byte) 0x22,
                (byte) 0x33, (byte) 0x44, (byte) 0x55, (byte) 0x66,
                (byte) 0x08, (byte) 0x00,
                // IP header
                (byte) 0x45, (byte) 0x00, (byte) 0x00, (byte) 0x1c,
                (byte) 0x6a, (byte) 0x0d, (byte) 0x40, (byte) 0x00,
                (byte) 0x40, (byte) 0x11, (byte) 0xe4, (byte) 0x8d,
                (byte) 0xc0, (byte) 0x00, (byte) 0x02, (byte) 0x01,
                (byte) 0xc6, (byte) 0x33, (byte) 0x64, (byte) 0x01,
                // UDP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x08, (byte) 0xeb, (byte) 0x62
            };

    private static final byte[] TEST_PACKET_ETHERHDR_IPV4HDR_UDPHDR_DATA =
            new byte[] {
                // packet = (scapy.Ether(src="11:22:33:44:55:66", dst="aa:bb:cc:dd:ee:ff",
                //                 type='IPv4') /
                //           scapy.IP(src="192.0.2.1", dst="198.51.100.1",
                //                 tos=0, id=27149, flags='DF') /
                //           scapy.UDP(sport=9876, dport=433) /
                //           b'\xde\xad\xbe\xef')
                // Ether header
                (byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd,
                (byte) 0xee, (byte) 0xff, (byte) 0x11, (byte) 0x22,
                (byte) 0x33, (byte) 0x44, (byte) 0x55, (byte) 0x66,
                (byte) 0x08, (byte) 0x00,
                // IP header
                (byte) 0x45, (byte) 0x00, (byte) 0x00, (byte) 0x20,
                (byte) 0x6a, (byte) 0x0d, (byte) 0x40, (byte) 0x00,
                (byte) 0x40, (byte) 0x11, (byte) 0xe4, (byte) 0x89,
                (byte) 0xc0, (byte) 0x00, (byte) 0x02, (byte) 0x01,
                (byte) 0xc6, (byte) 0x33, (byte) 0x64, (byte) 0x01,
                // UDP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x0c, (byte) 0x4d, (byte) 0xbd,
                // Data
                (byte) 0xde, (byte) 0xad, (byte) 0xbe, (byte) 0xef
            };

    private static final byte[] TEST_PACKET_IPV4HDR_UDPHDR =
            new byte[] {
                // packet = (scapy.IP(src="192.0.2.1", dst="198.51.100.1",
                //                 tos=0, id=27149, flags='DF') /
                //           scapy.UDP(sport=9876, dport=433))
                // IP header
                (byte) 0x45, (byte) 0x00, (byte) 0x00, (byte) 0x1c,
                (byte) 0x6a, (byte) 0x0d, (byte) 0x40, (byte) 0x00,
                (byte) 0x40, (byte) 0x11, (byte) 0xe4, (byte) 0x8d,
                (byte) 0xc0, (byte) 0x00, (byte) 0x02, (byte) 0x01,
                (byte) 0xc6, (byte) 0x33, (byte) 0x64, (byte) 0x01,
                // UDP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x08, (byte) 0xeb, (byte) 0x62
            };

    private static final byte[] TEST_PACKET_IPV4HDR_UDPHDR_DATA =
            new byte[] {
                // packet = (scapy.IP(src="192.0.2.1", dst="198.51.100.1",
                //                 tos=0, id=27149, flags='DF') /
                //           scapy.UDP(sport=9876, dport=433) /
                //           b'\xde\xad\xbe\xef')
                // IP header
                (byte) 0x45, (byte) 0x00, (byte) 0x00, (byte) 0x20,
                (byte) 0x6a, (byte) 0x0d, (byte) 0x40, (byte) 0x00,
                (byte) 0x40, (byte) 0x11, (byte) 0xe4, (byte) 0x89,
                (byte) 0xc0, (byte) 0x00, (byte) 0x02, (byte) 0x01,
                (byte) 0xc6, (byte) 0x33, (byte) 0x64, (byte) 0x01,
                // UDP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x0c, (byte) 0x4d, (byte) 0xbd,
                // Data
                (byte) 0xde, (byte) 0xad, (byte) 0xbe, (byte) 0xef
            };

    private static final byte[] TEST_PACKET_ETHERHDR_IPV6HDR_UDPHDR =
            new byte[] {
                // packet = (scapy.Ether(src="11:22:33:44:55:66", dst="aa:bb:cc:dd:ee:ff",
                //                     type='IPv6') /
                //           scapy.IPv6(src="2001:db8::1", dst="2001:db8::2", tc=0x80,
                //                      fl=0x515ca, hlim=0x40) /
                //           scapy.UDP(sport=9876, dport=433))
                // Ether header
                (byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd,
                (byte) 0xee, (byte) 0xff, (byte) 0x11, (byte) 0x22,
                (byte) 0x33, (byte) 0x44, (byte) 0x55, (byte) 0x66,
                (byte) 0x86, (byte) 0xdd,
                // IP header
                (byte) 0x68, (byte) 0x05, (byte) 0x15, (byte) 0xca,
                (byte) 0x00, (byte) 0x08, (byte) 0x11, (byte) 0x40,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x01,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x02,
                // UDP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x08, (byte) 0x7c, (byte) 0x24
            };

    private static final byte[] TEST_PACKET_ETHERHDR_IPV6HDR_UDPHDR_DATA =
            new byte[] {
                // packet = (scapy.Ether(src="11:22:33:44:55:66", dst="aa:bb:cc:dd:ee:ff",
                //                       type='IPv6') /
                //           scapy.IPv6(src="2001:db8::1", dst="2001:db8::2", tc=0x80,
                //                      fl=0x515ca, hlim=0x40) /
                //           scapy.UDP(sport=9876, dport=433) /
                //           b'\xde\xad\xbe\xef')
                // Ether header
                (byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd,
                (byte) 0xee, (byte) 0xff, (byte) 0x11, (byte) 0x22,
                (byte) 0x33, (byte) 0x44, (byte) 0x55, (byte) 0x66,
                (byte) 0x86, (byte) 0xdd,
                // IP header
                (byte) 0x68, (byte) 0x05, (byte) 0x15, (byte) 0xca,
                (byte) 0x00, (byte) 0x0c, (byte) 0x11, (byte) 0x40,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x01,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x02,
                // UDP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x0c, (byte) 0xde, (byte) 0x7e,
                // Data
                (byte) 0xde, (byte) 0xad, (byte) 0xbe, (byte) 0xef
            };

    private static final byte[] TEST_PACKET_ETHERHDR_IPV6HDR_TCPHDR_DATA =
            new byte[] {
                // packet = (scapy.Ether(src="11:22:33:44:55:66", dst="aa:bb:cc:dd:ee:ff",
                //                       type='IPv6') /
                //           scapy.IPv6(src="2001:db8::1", dst="2001:db8::2", tc=0x80,
                //                      fl=0x515ca, hlim=0x40) /
                //           scapy.TCP(sport=9876, dport=433, seq=13579, ack=24680,
                //                     flags='A', window=8192, urgptr=0) /
                //           b'\xde\xad\xbe\xef')
                // Ether header
                (byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd,
                (byte) 0xee, (byte) 0xff, (byte) 0x11, (byte) 0x22,
                (byte) 0x33, (byte) 0x44, (byte) 0x55, (byte) 0x66,
                (byte) 0x86, (byte) 0xdd,
                // IPv6 header
                (byte) 0x68, (byte) 0x05, (byte) 0x15, (byte) 0xca,
                (byte) 0x00, (byte) 0x18, (byte) 0x06, (byte) 0x40,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x01,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x02,
                // TCP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x00, (byte) 0x35, (byte) 0x0b,
                (byte) 0x00, (byte) 0x00, (byte) 0x60, (byte) 0x68,
                (byte) 0x50, (byte) 0x10, (byte) 0x20, (byte) 0x00,
                (byte) 0xd9, (byte) 0x05, (byte) 0x00, (byte) 0x00,
                // Data
                (byte) 0xde, (byte) 0xad, (byte) 0xbe, (byte) 0xef
            };

    private static final byte[] TEST_PACKET_ETHERHDR_IPV6HDR_TCPHDR =
            new byte[] {
                // packet = (scapy.Ether(src="11:22:33:44:55:66", dst="aa:bb:cc:dd:ee:ff",
                //                       type='IPv6') /
                //           scapy.IPv6(src="2001:db8::1", dst="2001:db8::2", tc=0x80,
                //                      fl=0x515ca, hlim=0x40) /
                //           scapy.TCP(sport=9876, dport=433, seq=13579, ack=24680,
                //                     flags='A', window=8192, urgptr=0))
                // Ether header
                (byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd,
                (byte) 0xee, (byte) 0xff, (byte) 0x11, (byte) 0x22,
                (byte) 0x33, (byte) 0x44, (byte) 0x55, (byte) 0x66,
                (byte) 0x86, (byte) 0xdd,
                // IPv6 header
                (byte) 0x68, (byte) 0x05, (byte) 0x15, (byte) 0xca,
                (byte) 0x00, (byte) 0x14, (byte) 0x06, (byte) 0x40,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x01,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x02,
                // TCP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x00, (byte) 0x35, (byte) 0x0b,
                (byte) 0x00, (byte) 0x00, (byte) 0x60, (byte) 0x68,
                (byte) 0x50, (byte) 0x10, (byte) 0x20, (byte) 0x00,
                (byte) 0x76, (byte) 0xa7, (byte) 0x00, (byte) 0x00
            };

    private static final byte[] TEST_PACKET_IPV6HDR_TCPHDR_DATA =
            new byte[] {
                // packet = (scapy.IPv6(src="2001:db8::1", dst="2001:db8::2", tc=0x80,
                //                      fl=0x515ca, hlim=0x40) /
                //           scapy.TCP(sport=9876, dport=433, seq=13579, ack=24680,
                //                     flags='A', window=8192, urgptr=0) /
                //           b'\xde\xad\xbe\xef')
                // IPv6 header
                (byte) 0x68, (byte) 0x05, (byte) 0x15, (byte) 0xca,
                (byte) 0x00, (byte) 0x18, (byte) 0x06, (byte) 0x40,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x01,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x02,
                // TCP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x00, (byte) 0x35, (byte) 0x0b,
                (byte) 0x00, (byte) 0x00, (byte) 0x60, (byte) 0x68,
                (byte) 0x50, (byte) 0x10, (byte) 0x20, (byte) 0x00,
                (byte) 0xd9, (byte) 0x05, (byte) 0x00, (byte) 0x00,
                // Data
                (byte) 0xde, (byte) 0xad, (byte) 0xbe, (byte) 0xef
            };

    private static final byte[] TEST_PACKET_IPV6HDR_TCPHDR =
            new byte[] {
                // packet = (scapy.IPv6(src="2001:db8::1", dst="2001:db8::2", tc=0x80,
                //                      fl=0x515ca, hlim=0x40) /
                //           scapy.TCP(sport=9876, dport=433, seq=13579, ack=24680,
                //                     flags='A', window=8192, urgptr=0))
                // IPv6 header
                (byte) 0x68, (byte) 0x05, (byte) 0x15, (byte) 0xca,
                (byte) 0x00, (byte) 0x14, (byte) 0x06, (byte) 0x40,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x01,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x02,
                // TCP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x00, (byte) 0x35, (byte) 0x0b,
                (byte) 0x00, (byte) 0x00, (byte) 0x60, (byte) 0x68,
                (byte) 0x50, (byte) 0x10, (byte) 0x20, (byte) 0x00,
                (byte) 0x76, (byte) 0xa7, (byte) 0x00, (byte) 0x00
            };

    private static final byte[] TEST_PACKET_IPV6HDR_UDPHDR =
            new byte[] {
                // packet = (scapy.IPv6(src="2001:db8::1", dst="2001:db8::2", tc=0x80,
                //                      fl=0x515ca, hlim=0x40) /
                //           scapy.UDP(sport=9876, dport=433))
                // IP header
                (byte) 0x68, (byte) 0x05, (byte) 0x15, (byte) 0xca,
                (byte) 0x00, (byte) 0x08, (byte) 0x11, (byte) 0x40,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x01,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x02,
                // UDP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x08, (byte) 0x7c, (byte) 0x24
            };

    private static final byte[] TEST_PACKET_IPV6HDR_UDPHDR_DATA =
            new byte[] {
                // packet = (scapy.IPv6(src="2001:db8::1", dst="2001:db8::2", tc=0x80,
                //                      fl=0x515ca, hlim=0x40) /
                //           scapy.UDP(sport=9876, dport=433) /
                //           b'\xde\xad\xbe\xef')
                // IP header
                (byte) 0x68, (byte) 0x05, (byte) 0x15, (byte) 0xca,
                (byte) 0x00, (byte) 0x0c, (byte) 0x11, (byte) 0x40,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x01,
                (byte) 0x20, (byte) 0x01, (byte) 0x0d, (byte) 0xb8,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00,
                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x02,
                // UDP header
                (byte) 0x26, (byte) 0x94, (byte) 0x01, (byte) 0xb1,
                (byte) 0x00, (byte) 0x0c, (byte) 0xde, (byte) 0x7e,
                // Data
                (byte) 0xde, (byte) 0xad, (byte) 0xbe, (byte) 0xef
            };

    /**
     * Build a packet which has ether header, IP header, TCP/UDP header and data.
     * The ethernet header and data are optional. Note that both source mac address and
     * destination mac address are required for ethernet header.
     *
     * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     * |                Layer 2 header (EthernetHeader)                | (optional)
     * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     * |           Layer 3 header (Ipv4Header, Ipv6Header)             |
     * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     * |           Layer 4 header (TcpHeader, UdpHeader)               |
     * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     * |                          Payload                              | (optional)
     * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *
     * @param srcMac source MAC address. used by L2 ether header.
     * @param dstMac destination MAC address. used by L2 ether header.
     * @param l3proto the layer 3 protocol. Only {@code IPPROTO_IP} and {@code IPPROTO_IPV6}
     *        currently supported.
     * @param l4proto the layer 4 protocol. Only {@code IPPROTO_TCP} and {@code IPPROTO_UDP}
     *        currently supported.
     * @param payload the payload.
     */
    @NonNull
    private ByteBuffer buildPacket(@Nullable final MacAddress srcMac,
            @Nullable final MacAddress dstMac, final int l3proto, final int l4proto,
            @Nullable final ByteBuffer payload)
            throws Exception {
        if (l3proto != IPPROTO_IP && l3proto != IPPROTO_IPV6) {
            fail("Unsupported layer 3 protocol " + l3proto);
        }

        if (l4proto != IPPROTO_TCP && l4proto != IPPROTO_UDP) {
            fail("Unsupported layer 4 protocol " + l4proto);
        }

        final boolean hasEther = (srcMac != null && dstMac != null);
        final int payloadLen = (payload == null) ? 0 : payload.limit();
        final ByteBuffer buffer = PacketBuilder.allocate(hasEther, l3proto, l4proto,
                payloadLen);
        final PacketBuilder packetBuilder = new PacketBuilder(buffer);

        // [1] Build ether header.
        if (hasEther) {
            final int etherType = (l3proto == IPPROTO_IP) ? ETHER_TYPE_IPV4 : ETHER_TYPE_IPV6;
            packetBuilder.writeL2Header(srcMac, dstMac, (short) etherType);
        }

        // [2] Build IP header.
        if (l3proto == IPPROTO_IP) {
            packetBuilder.writeIpv4Header(TYPE_OF_SERVICE, ID, FLAGS_AND_FRAGMENT_OFFSET,
                    TIME_TO_LIVE, (byte) l4proto, IPV4_SRC_ADDR, IPV4_DST_ADDR);
        } else if (l3proto == IPPROTO_IPV6) {
            packetBuilder.writeIpv6Header(VERSION_TRAFFICCLASS_FLOWLABEL,
                    (byte) l4proto, HOP_LIMIT, IPV6_SRC_ADDR, IPV6_DST_ADDR);
        }

        // [3] Build TCP or UDP header.
        if (l4proto == IPPROTO_TCP) {
            packetBuilder.writeTcpHeader(SRC_PORT, DST_PORT, SEQ_NO, ACK_NO,
                    TCPHDR_ACK, WINDOW, URGENT_POINTER);
        } else if (l4proto == IPPROTO_UDP) {
            packetBuilder.writeUdpHeader(SRC_PORT, DST_PORT);
        }

        // [4] Build payload.
        if (payload != null) {
            buffer.put(payload);
            // in case data might be reused by caller, restore the position and
            // limit of bytebuffer.
            payload.clear();
        }

        return packetBuilder.finalizePacket();
    }

    /**
     * Check ethernet header.
     *
     * @param l3proto the layer 3 protocol. Only {@code IPPROTO_IP} and {@code IPPROTO_IPV6}
     *        currently supported.
     * @param actual the packet to check.
     */
    private void checkEtherHeader(final int l3proto, final ByteBuffer actual) {
        if (l3proto != IPPROTO_IP && l3proto != IPPROTO_IPV6) {
            fail("Unsupported layer 3 protocol " + l3proto);
        }

        final EthernetHeader eth = Struct.parse(EthernetHeader.class, actual);
        assertEquals(SRC_MAC, eth.srcMac);
        assertEquals(DST_MAC, eth.dstMac);
        final int expectedEtherType = (l3proto == IPPROTO_IP) ? ETHER_TYPE_IPV4 : ETHER_TYPE_IPV6;
        assertEquals(expectedEtherType, eth.etherType);
    }

    /**
     * Check IPv4 header.
     *
     * @param l4proto the layer 4 protocol. Only {@code IPPROTO_TCP} and {@code IPPROTO_UDP}
     *        currently supported.
     * @param hasData true if the packet has data payload; false otherwise.
     * @param actual the packet to check.
     */
    private void checkIpv4Header(final int l4proto, final boolean hasData,
            final ByteBuffer actual) {
        if (l4proto != IPPROTO_TCP && l4proto != IPPROTO_UDP) {
            fail("Unsupported layer 4 protocol " + l4proto);
        }

        final Ipv4Header ipv4Header = Struct.parse(Ipv4Header.class, actual);
        assertEquals(Ipv4Header.IPHDR_VERSION_IHL, ipv4Header.vi);
        assertEquals(TYPE_OF_SERVICE, ipv4Header.tos);
        assertEquals(ID, ipv4Header.id);
        assertEquals(FLAGS_AND_FRAGMENT_OFFSET, ipv4Header.flagsAndFragmentOffset);
        assertEquals(TIME_TO_LIVE, ipv4Header.ttl);
        assertEquals(IPV4_SRC_ADDR, ipv4Header.srcIp);
        assertEquals(IPV4_DST_ADDR, ipv4Header.dstIp);

        final int dataLength = hasData ? DATA.limit() : 0;
        if (l4proto == IPPROTO_TCP) {
            assertEquals(IPV4_HEADER_MIN_LEN + TCP_HEADER_MIN_LEN + dataLength,
                    ipv4Header.totalLength);
            assertEquals((byte) IPPROTO_TCP, ipv4Header.protocol);
            assertEquals(hasData ? (short) 0xe488 : (short) 0xe48c, ipv4Header.checksum);
        } else if (l4proto == IPPROTO_UDP) {
            assertEquals(IPV4_HEADER_MIN_LEN + UDP_HEADER_LEN + dataLength,
                    ipv4Header.totalLength);
            assertEquals((byte) IPPROTO_UDP, ipv4Header.protocol);
            assertEquals(hasData ? (short) 0xe489 : (short) 0xe48d, ipv4Header.checksum);
        }
    }

    /**
     * Check IPv6 header.
     *
     * @param l4proto the layer 4 protocol. Only {@code IPPROTO_TCP} and {@code IPPROTO_UDP}
     *        currently supported.
     * @param hasData true if the packet has data payload; false otherwise.
     * @param actual the packet to check.
     */
    private void checkIpv6Header(final int l4proto, final boolean hasData,
            final ByteBuffer actual) {
        if (l4proto != IPPROTO_TCP && l4proto != IPPROTO_UDP) {
            fail("Unsupported layer 4 protocol " + l4proto);
        }

        final Ipv6Header ipv6Header = Struct.parse(Ipv6Header.class, actual);

        assertEquals(VERSION_TRAFFICCLASS_FLOWLABEL, ipv6Header.vtf);
        assertEquals(HOP_LIMIT, ipv6Header.hopLimit);
        assertEquals(IPV6_SRC_ADDR, ipv6Header.srcIp);
        assertEquals(IPV6_DST_ADDR, ipv6Header.dstIp);

        final int dataLength = hasData ? DATA.limit() : 0;
        if (l4proto == IPPROTO_TCP) {
            assertEquals(TCP_HEADER_MIN_LEN + dataLength, ipv6Header.payloadLength);
            assertEquals((byte) IPPROTO_TCP, ipv6Header.nextHeader);
        } else if (l4proto == IPPROTO_UDP) {
            assertEquals(UDP_HEADER_LEN + dataLength, ipv6Header.payloadLength);
            assertEquals((byte) IPPROTO_UDP, ipv6Header.nextHeader);
        }
    }

    /**
     * Check TCP packet.
     *
     * @param hasEther true if the packet has ether header; false otherwise.
     * @param l3proto the layer 3 protocol. Only {@code IPPROTO_IP} and {@code IPPROTO_IPV6}
     *        currently supported.
     * @param hasData true if the packet has data payload; false otherwise.
     * @param actual the packet to check.
     */
    private void checkTcpPacket(final boolean hasEther, final int l3proto, final boolean hasData,
            final ByteBuffer actual) {
        if (l3proto != IPPROTO_IP && l3proto != IPPROTO_IPV6) {
            fail("Unsupported layer 3 protocol " + l3proto);
        }

        // [1] Check ether header.
        if (hasEther) {
            checkEtherHeader(l3proto, actual);
        }

        // [2] Check IP header.
        if (l3proto == IPPROTO_IP) {
            checkIpv4Header(IPPROTO_TCP, hasData, actual);
        } else if (l3proto == IPPROTO_IPV6) {
            checkIpv6Header(IPPROTO_TCP, hasData, actual);
        }

        // [3] Check TCP header.
        final TcpHeader tcpHeader = Struct.parse(TcpHeader.class, actual);
        assertEquals(SRC_PORT, tcpHeader.srcPort);
        assertEquals(DST_PORT, tcpHeader.dstPort);
        assertEquals(SEQ_NO, tcpHeader.seq);
        assertEquals(ACK_NO, tcpHeader.ack);
        assertEquals((short) 0x5010 /* offset=5(*4bytes), control bits=ACK */,
                tcpHeader.dataOffsetAndControlBits);
        assertEquals(WINDOW, tcpHeader.window);
        assertEquals(URGENT_POINTER, tcpHeader.urgentPointer);
        if (l3proto == IPPROTO_IP) {
            assertEquals(hasData ? (short) 0x4844 : (short) 0xe5e5, tcpHeader.checksum);
        } else if (l3proto == IPPROTO_IPV6) {
            assertEquals(hasData ? (short) 0xd905 : (short) 0x76a7, tcpHeader.checksum);
        }

        // [4] Check payload.
        if (hasData) {
            assertEquals(0xdeadbeef, actual.getInt());
        }
    }

    /**
     * Check UDP packet.
     *
     * @param hasEther true if the packet has ether header; false otherwise.
     * @param l3proto the layer 3 protocol. Only {@code IPPROTO_IP} and {@code IPPROTO_IPV6}
     *        currently supported.
     * @param hasData true if the packet has data payload; false otherwise.
     * @param actual the packet to check.
     */
    private void checkUdpPacket(final boolean hasEther, final int l3proto, final boolean hasData,
            final ByteBuffer actual) {
        if (l3proto != IPPROTO_IP && l3proto != IPPROTO_IPV6) {
            fail("Unsupported layer 3 protocol " + l3proto);
        }

        // [1] Check ether header.
        if (hasEther) {
            checkEtherHeader(l3proto, actual);
        }

        // [2] Check IP header.
        if (l3proto == IPPROTO_IP) {
            checkIpv4Header(IPPROTO_UDP, hasData, actual);
        } else if (l3proto == IPPROTO_IPV6) {
            checkIpv6Header(IPPROTO_UDP, hasData, actual);
        }

        // [3] Check UDP header.
        final UdpHeader udpHeader = Struct.parse(UdpHeader.class, actual);
        assertEquals(SRC_PORT, udpHeader.srcPort);
        assertEquals(DST_PORT, udpHeader.dstPort);
        final int dataLength = hasData ? DATA.limit() : 0;
        assertEquals(UDP_HEADER_LEN + dataLength, udpHeader.length);
        if (l3proto == IPPROTO_IP) {
            assertEquals(hasData ? (short) 0x4dbd : (short) 0xeb62, udpHeader.checksum);
        } else if (l3proto == IPPROTO_IPV6) {
            assertEquals(hasData ? (short) 0xde7e : (short) 0x7c24, udpHeader.checksum);
        }

        // [4] Check payload.
        if (hasData) {
            assertEquals(0xdeadbeef, actual.getInt());
        }
    }

    @Test
    public void testBuildPacketEtherIPv4Tcp() throws Exception {
        final ByteBuffer packet = buildPacket(SRC_MAC, DST_MAC, IPPROTO_IP, IPPROTO_TCP,
                null /* data */);
        checkTcpPacket(true /* hasEther */, IPPROTO_IP, false /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_ETHERHDR_IPV4HDR_TCPHDR, packet.array());
    }

    @Test
    public void testBuildPacketEtherIPv4TcpData() throws Exception {
        final ByteBuffer packet = buildPacket(SRC_MAC, DST_MAC, IPPROTO_IP, IPPROTO_TCP, DATA);
        checkTcpPacket(true /* hasEther */, IPPROTO_IP, true /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_ETHERHDR_IPV4HDR_TCPHDR_DATA,
                packet.array());
    }

    @Test
    public void testBuildPacketIPv4Tcp() throws Exception {
        final ByteBuffer packet = buildPacket(null /* srcMac */, null /* dstMac */,
                IPPROTO_IP, IPPROTO_TCP, null /* data */);
        checkTcpPacket(false /* hasEther */, IPPROTO_IP, false /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_IPV4HDR_TCPHDR, packet.array());
    }

    @Test
    public void testBuildPacketIPv4TcpData() throws Exception {
        final ByteBuffer packet = buildPacket(null /* srcMac */, null /* dstMac */,
                IPPROTO_IP, IPPROTO_TCP, DATA);
        checkTcpPacket(false /* hasEther */, IPPROTO_IP, true /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_IPV4HDR_TCPHDR_DATA, packet.array());
    }

    @Test
    public void testBuildPacketEtherIPv4Udp() throws Exception {
        final ByteBuffer packet = buildPacket(SRC_MAC, DST_MAC, IPPROTO_IP, IPPROTO_UDP,
                null /* data */);
        checkUdpPacket(true /* hasEther */, IPPROTO_IP, false /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_ETHERHDR_IPV4HDR_UDPHDR, packet.array());
    }

    @Test
    public void testBuildPacketEtherIPv4UdpData() throws Exception {
        final ByteBuffer packet = buildPacket(SRC_MAC, DST_MAC, IPPROTO_IP, IPPROTO_UDP, DATA);
        checkUdpPacket(true /* hasEther */, IPPROTO_IP, true /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_ETHERHDR_IPV4HDR_UDPHDR_DATA, packet.array());
    }

    @Test
    public void testBuildPacketIPv4Udp() throws Exception {
        final ByteBuffer packet = buildPacket(null /* srcMac */, null /* dstMac */,
                IPPROTO_IP, IPPROTO_UDP, null /*data*/);
        checkUdpPacket(false /* hasEther */, IPPROTO_IP, false /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_IPV4HDR_UDPHDR, packet.array());
    }

    @Test
    public void testBuildPacketIPv4UdpData() throws Exception {
        final ByteBuffer packet = buildPacket(null /* srcMac */, null /* dstMac */,
                IPPROTO_IP, IPPROTO_UDP, DATA);
        checkUdpPacket(false /* hasEther */, IPPROTO_IP, true /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_IPV4HDR_UDPHDR_DATA, packet.array());
    }

    @Test
    public void testBuildPacketEtherIPv6TcpData() throws Exception {
        final ByteBuffer packet = buildPacket(SRC_MAC, DST_MAC, IPPROTO_IPV6, IPPROTO_TCP, DATA);
        checkTcpPacket(true /* hasEther */, IPPROTO_IPV6, true /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_ETHERHDR_IPV6HDR_TCPHDR_DATA,
                packet.array());
    }

    @Test
    public void testBuildPacketEtherIPv6Tcp() throws Exception {
        final ByteBuffer packet = buildPacket(SRC_MAC, DST_MAC, IPPROTO_IPV6, IPPROTO_TCP,
                null /*data*/);
        checkTcpPacket(true /* hasEther */, IPPROTO_IPV6, false /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_ETHERHDR_IPV6HDR_TCPHDR,
                packet.array());
    }

    @Test
    public void testBuildPacketIPv6TcpData() throws Exception {
        final ByteBuffer packet = buildPacket(null /* srcMac */, null /* dstMac */, IPPROTO_IPV6,
                IPPROTO_TCP, DATA);
        checkTcpPacket(false /* hasEther */, IPPROTO_IPV6, true /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_IPV6HDR_TCPHDR_DATA, packet.array());
    }

    @Test
    public void testBuildPacketIPv6Tcp() throws Exception {
        final ByteBuffer packet = buildPacket(null /* srcMac */, null /* dstMac */, IPPROTO_IPV6,
                IPPROTO_TCP, null /*data*/);
        checkTcpPacket(false /* hasEther */, IPPROTO_IPV6, false /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_IPV6HDR_TCPHDR, packet.array());
    }

    @Test
    public void testBuildPacketEtherIPv6Udp() throws Exception {
        final ByteBuffer packet = buildPacket(SRC_MAC, DST_MAC, IPPROTO_IPV6, IPPROTO_UDP,
                null /* data */);
        checkUdpPacket(true /* hasEther */, IPPROTO_IPV6, false /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_ETHERHDR_IPV6HDR_UDPHDR, packet.array());
    }

    @Test
    public void testBuildPacketEtherIPv6UdpData() throws Exception {
        final ByteBuffer packet = buildPacket(SRC_MAC, DST_MAC, IPPROTO_IPV6, IPPROTO_UDP,
                DATA);
        checkUdpPacket(true /* hasEther */, IPPROTO_IPV6, true /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_ETHERHDR_IPV6HDR_UDPHDR_DATA, packet.array());
    }

    @Test
    public void testBuildPacketIPv6Udp() throws Exception {
        final ByteBuffer packet = buildPacket(null /* srcMac */, null /* dstMac */,
                IPPROTO_IPV6, IPPROTO_UDP, null /*data*/);
        checkUdpPacket(false /* hasEther */, IPPROTO_IPV6, false /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_IPV6HDR_UDPHDR, packet.array());
    }

    @Test
    public void testBuildPacketIPv6UdpData() throws Exception {
        final ByteBuffer packet = buildPacket(null /* srcMac */, null /* dstMac */,
                IPPROTO_IPV6, IPPROTO_UDP, DATA);
        checkUdpPacket(false /* hasEther */, IPPROTO_IPV6, true /* hasData */, packet);
        assertArrayEquals(TEST_PACKET_IPV6HDR_UDPHDR_DATA, packet.array());
    }

    @Test
    public void testFinalizePacketWithoutIpv4Header() throws Exception {
        final ByteBuffer buffer = PacketBuilder.allocate(false /* hasEther */, IPPROTO_IP,
                IPPROTO_TCP, 0 /* payloadLen */);
        final PacketBuilder packetBuilder = new PacketBuilder(buffer);
        packetBuilder.writeTcpHeader(SRC_PORT, DST_PORT, SEQ_NO, ACK_NO,
                TCPHDR_ACK, WINDOW, URGENT_POINTER);
        assertThrows("java.io.IOException: Packet is missing IPv4 header", IOException.class,
                () -> packetBuilder.finalizePacket());
    }

    @Test
    public void testFinalizePacketWithoutL4Header() throws Exception {
        final ByteBuffer buffer = PacketBuilder.allocate(false /* hasEther */, IPPROTO_IP,
                IPPROTO_TCP, 0 /* payloadLen */);
        final PacketBuilder packetBuilder = new PacketBuilder(buffer);
        packetBuilder.writeIpv4Header(TYPE_OF_SERVICE, ID, FLAGS_AND_FRAGMENT_OFFSET,
                TIME_TO_LIVE, (byte) IPPROTO_TCP, IPV4_SRC_ADDR, IPV4_DST_ADDR);
        assertThrows("java.io.IOException: Packet is missing neither TCP nor UDP header",
                IOException.class, () -> packetBuilder.finalizePacket());
    }

    @Test
    public void testWriteL2HeaderToInsufficientBuffer() throws Exception {
        final PacketBuilder packetBuilder = new PacketBuilder(ByteBuffer.allocate(1));
        assertThrows(IOException.class,
                () -> packetBuilder.writeL2Header(SRC_MAC, DST_MAC, (short) ETHER_TYPE_IPV4));
    }

    @Test
    public void testWriteIpv4HeaderToInsufficientBuffer() throws Exception {
        final PacketBuilder packetBuilder = new PacketBuilder(ByteBuffer.allocate(1));
        assertThrows(IOException.class,
                () -> packetBuilder.writeIpv4Header(TYPE_OF_SERVICE, ID, FLAGS_AND_FRAGMENT_OFFSET,
                        TIME_TO_LIVE, (byte) IPPROTO_TCP, IPV4_SRC_ADDR, IPV4_DST_ADDR));
    }

    @Test
    public void testWriteTcpHeaderToInsufficientBuffer() throws Exception {
        final PacketBuilder packetBuilder = new PacketBuilder(ByteBuffer.allocate(1));
        assertThrows(IOException.class,
                () -> packetBuilder.writeTcpHeader(SRC_PORT, DST_PORT, SEQ_NO, ACK_NO,
                        TCPHDR_ACK, WINDOW, URGENT_POINTER));
    }

    @Test
    public void testWriteUdpHeaderToInsufficientBuffer() throws Exception {
        final PacketBuilder packetBuilder = new PacketBuilder(ByteBuffer.allocate(1));
        assertThrows(IOException.class, () -> packetBuilder.writeUdpHeader(SRC_PORT, DST_PORT));
    }

    private static Inet4Address addr4(String addr) {
        return (Inet4Address) InetAddresses.parseNumericAddress(addr);
    }

    private static Inet6Address addr6(String addr) {
        return (Inet6Address) InetAddresses.parseNumericAddress(addr);
    }
}