-
Notifications
You must be signed in to change notification settings - Fork 0
/
log_parser_test.go
88 lines (62 loc) · 1.69 KB
/
log_parser_test.go
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
package eyego
import (
"testing"
"bytes"
"fmt"
)
func TestSingleAP(t *testing.T){
log, err := ParseLog(bytes.NewBufferString("8,8,POWERON\n" +
"12,12,NEWAP,0023691de7c2,17,0042a5c6\n" +
"35,1358360774,NEWPHOTO,P1040355.JPG,4875264"))
if err != nil {
t.Error(err)
}
aps := log.AccessPoints("P1040355.JPG")
fmt.Println(log)
if len(aps) != 1 {
t.Fatalf("Failed to find access point")
}
if aps[0].MacAddress != "00:23:69:1d:e7:c2" {
t.Errorf("Bad mac address, expected 00:23:69:1d:e7:c2, was %s", aps[0].MacAddress)
}
}
func TestNoAP(t *testing.T){
log, err := ParseLog(bytes.NewBufferString("8,8,POWERON\n" +
"35,1358360774,NEWPHOTO,P1040355.JPG,4875264"))
if err != nil {
t.Error(err)
}
aps := log.AccessPoints("P1040355.JPG")
fmt.Println(log)
if len(aps) != 0 {
t.Fatalf("Found invalid access point")
}
}
func TestSurroundingAP(t *testing.T){
log, err := ParseLog(bytes.NewBufferString("8,8,POWERON\n" +
"12,12,NEWAP,0023691de7c2,17,0042a5c6\n" +
"35,1358360774,NEWPHOTO,P1040355.JPG,4875264\n" +
"47,47,NEWAP,0023691de7c3,17,0042a5c6\n" ))
if err != nil {
t.Error(err)
}
aps := log.AccessPoints("P1040355.JPG")
fmt.Println(log)
if len(aps) != 2 {
t.Fatalf("Expected to find %d access points, found %d", 2, len(aps))
}
var aps0, aps1 AccessPointSightingInfo
if aps[0].MacAddress == "00:23:69:1d:e7:c2" {
aps0 = aps[0]
aps1 = aps[1]
} else {
aps0 = aps[1]
aps1 = aps[0]
}
if aps0.MacAddress != "00:23:69:1d:e7:c2" {
t.Errorf("Bad mac address, expected 00:23:69:1d:e7:c2, was %s", aps0.MacAddress)
}
if aps1.MacAddress != "00:23:69:1d:e7:c3" {
t.Errorf("Bad mac address, expected 00:23:69:1d:e7:c3, was %s", aps1.MacAddress)
}
}