ODPM 266: Go-libmemif + 2 examples.
[govpp.git] / vendor / github.com / google / gopacket / layers / radiotap_test.go
1 // Copyright 2012 Google, Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style license
4 // that can be found in the LICENSE file in the root of the source
5 // tree.
6 package layers
7
8 import (
9         "github.com/google/gopacket"
10         "testing"
11 )
12
13 // testPacketRadiotap0 is the packet:
14 //   09:34:34.799438 1.0 Mb/s 2412 MHz 11b -58dB signal antenna 7 Acknowledgment RA:88:1f:a1:ae:9d:cb
15 //      0x0000:  0000 1200 2e48 0000 1002 6c09 a000 c607  .....H....l.....
16 //      0x0010:  0000 d400 0000 881f a1ae 9dcb c630 4b4b  .............0KK
17 var testPacketRadiotap0 = []byte{
18         0x00, 0x00, 0x12, 0x00, 0x2e, 0x48, 0x00, 0x00, 0x10, 0x02, 0x6c, 0x09, 0xa0, 0x00, 0xc6, 0x07,
19         0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x88, 0x1f, 0xa1, 0xae, 0x9d, 0xcb, 0xc6, 0x30, 0x4b, 0x4b,
20 }
21
22 func TestPacketRadiotap0(t *testing.T) {
23         p := gopacket.NewPacket(testPacketRadiotap0, LayerTypeRadioTap, gopacket.Default)
24         if p.ErrorLayer() != nil {
25                 t.Error("Failed to decode packet:", p.ErrorLayer().Error())
26         }
27         checkLayers(p, []gopacket.LayerType{LayerTypeRadioTap, LayerTypeDot11}, t)
28         rt := p.Layer(LayerTypeRadioTap).(*RadioTap)
29         if rt.ChannelFrequency != 2412 || rt.DBMAntennaSignal != -58 || rt.Antenna != 7 {
30                 t.Error("Radiotap decode error")
31         }
32         if rt.Rate != 2 { // 500Kbps unit
33                 t.Error("Radiotap Rate decode error")
34         }
35 }
36 func BenchmarkDecodePacketRadiotap0(b *testing.B) {
37         for i := 0; i < b.N; i++ {
38                 gopacket.NewPacket(testPacketRadiotap0, LayerTypeRadioTap, gopacket.NoCopy)
39         }
40 }
41
42 // testPacketRadiotap1 is the packet:
43 //   05:24:21.380948 2412 MHz 11g -36dB signal antenna 5 65.0 Mb/s MCS 7 20 MHz lon GI
44 //      0x0000:  0000 1500 2a48 0800 1000 6c09 8004 dc05  ....*H....l.....
45 //      0x0010:  0000 0700 0748 112c 0000 3a9d aaf0 191c  .....H.,..:.....
46 //      0x0020:  aba7 f213 9d00 3a9d aaf0 1970 b2ee a9f1  ......:....p....
47 //      0x0030:  16                                       .
48 var testPacketRadiotap1 = []byte{
49         0x00, 0x00, 0x15, 0x00, 0x2a, 0x48, 0x08, 0x00, 0x10, 0x00, 0x6c, 0x09, 0x80, 0x04, 0xdc, 0x05,
50         0x00, 0x00, 0x07, 0x00, 0x07, 0x48, 0x11, 0x2c, 0x00, 0x00, 0x3a, 0x9d, 0xaa, 0xf0, 0x19, 0x1c,
51         0xab, 0xa7, 0xf2, 0x13, 0x9d, 0x00, 0x3a, 0x9d, 0xaa, 0xf0, 0x19, 0x70, 0xb2, 0xee, 0xa9, 0xf1,
52         0x16,
53 }
54
55 func TestPacketRadiotap1(t *testing.T) {
56         p := gopacket.NewPacket(testPacketRadiotap1, LayerTypeRadioTap, gopacket.Default)
57         if p.ErrorLayer() != nil {
58                 t.Error("Failed to decode packet:", p.ErrorLayer().Error())
59         }
60         checkLayers(p, []gopacket.LayerType{LayerTypeRadioTap, LayerTypeDot11}, t)
61         rt := p.Layer(LayerTypeRadioTap).(*RadioTap)
62         if rt.ChannelFrequency != 2412 || rt.DBMAntennaSignal != -36 || rt.Antenna != 5 {
63                 t.Error("Radiotap decode error")
64         }
65         if !rt.MCS.Known.MCSIndex() || rt.MCS.MCS != 7 {
66                 t.Error("Radiotap MCS error")
67         }
68         if !rt.MCS.Known.Bandwidth() || rt.MCS.Flags.Bandwidth() != 0 {
69                 t.Error("Radiotap bandwidth error")
70         }
71         if !rt.MCS.Known.GuardInterval() || rt.MCS.Flags.ShortGI() {
72                 t.Error("Radiotap GI error")
73         }
74 }
75 func BenchmarkDecodePacketRadiotap1(b *testing.B) {
76         for i := 0; i < b.N; i++ {
77                 gopacket.NewPacket(testPacketRadiotap1, LayerTypeRadioTap, gopacket.NoCopy)
78         }
79 }