aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/netutil/iptrack_test.go
blob: 04b3b096110874e8df715908d926c0c491fb6f03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// Copyright 2018 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package netutil

import (
    "fmt"
    mrand "math/rand"
    "testing"
    "time"

    "github.com/dexon-foundation/dexon/common/mclock"
)

const (
    opStatement = iota
    opContact
    opPredict
    opCheckFullCone
)

type iptrackTestEvent struct {
    op       int
    time     int // absolute, in milliseconds
    ip, from string
}

func TestIPTracker(t *testing.T) {
    tests := map[string][]iptrackTestEvent{
        "minStatements": {
            {opPredict, 0, "", ""},
            {opStatement, 0, "127.0.0.1", "127.0.0.2"},
            {opPredict, 1000, "", ""},
            {opStatement, 1000, "127.0.0.1", "127.0.0.3"},
            {opPredict, 1000, "", ""},
            {opStatement, 1000, "127.0.0.1", "127.0.0.4"},
            {opPredict, 1000, "127.0.0.1", ""},
        },
        "window": {
            {opStatement, 0, "127.0.0.1", "127.0.0.2"},
            {opStatement, 2000, "127.0.0.1", "127.0.0.3"},
            {opStatement, 3000, "127.0.0.1", "127.0.0.4"},
            {opPredict, 10000, "127.0.0.1", ""},
            {opPredict, 10001, "", ""}, // first statement expired
            {opStatement, 10100, "127.0.0.1", "127.0.0.2"},
            {opPredict, 10200, "127.0.0.1", ""},
        },
        "fullcone": {
            {opContact, 0, "", "127.0.0.2"},
            {opStatement, 10, "127.0.0.1", "127.0.0.2"},
            {opContact, 2000, "", "127.0.0.3"},
            {opStatement, 2010, "127.0.0.1", "127.0.0.3"},
            {opContact, 3000, "", "127.0.0.4"},
            {opStatement, 3010, "127.0.0.1", "127.0.0.4"},
            {opCheckFullCone, 3500, "false", ""},
        },
        "fullcone_2": {
            {opContact, 0, "", "127.0.0.2"},
            {opStatement, 10, "127.0.0.1", "127.0.0.2"},
            {opContact, 2000, "", "127.0.0.3"},
            {opStatement, 2010, "127.0.0.1", "127.0.0.3"},
            {opStatement, 3000, "127.0.0.1", "127.0.0.4"},
            {opContact, 3010, "", "127.0.0.4"},
            {opCheckFullCone, 3500, "true", ""},
        },
    }
    for name, test := range tests {
        t.Run(name, func(t *testing.T) { runIPTrackerTest(t, test) })
    }
}

func runIPTrackerTest(t *testing.T, evs []iptrackTestEvent) {
    var (
        clock mclock.Simulated
        it    = NewIPTracker(10*time.Second, 10*time.Second, 3)
    )
    it.clock = &clock
    for i, ev := range evs {
        evtime := time.Duration(ev.time) * time.Millisecond
        clock.Run(evtime - time.Duration(clock.Now()))
        switch ev.op {
        case opStatement:
            it.AddStatement(ev.from, ev.ip)
        case opContact:
            it.AddContact(ev.from)
        case opPredict:
            if pred := it.PredictEndpoint(); pred != ev.ip {
                t.Errorf("op %d: wrong prediction %q, want %q", i, pred, ev.ip)
            }
        case opCheckFullCone:
            pred := fmt.Sprintf("%t", it.PredictFullConeNAT())
            if pred != ev.ip {
                t.Errorf("op %d: wrong prediction %s, want %s", i, pred, ev.ip)
            }
        }
    }
}

// This checks that old statements and contacts are GCed even if Predict* isn't called.
func TestIPTrackerForceGC(t *testing.T) {
    var (
        clock  mclock.Simulated
        window = 10 * time.Second
        rate   = 50 * time.Millisecond
        max    = int(window/rate) + 1
        it     = NewIPTracker(window, window, 3)
    )
    it.clock = &clock

    for i := 0; i < 5*max; i++ {
        e1 := make([]byte, 4)
        e2 := make([]byte, 4)
        mrand.Read(e1)
        mrand.Read(e2)
        it.AddStatement(string(e1), string(e2))
        it.AddContact(string(e1))
        clock.Run(rate)
    }
    if len(it.contact) > 2*max {
        t.Errorf("contacts not GCed, have %d", len(it.contact))
    }
    if len(it.statements) > 2*max {
        t.Errorf("statements not GCed, have %d", len(it.statements))
    }
}