aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/filter_test.go
blob: ac0ebaba7291e0d0d69922a1d3b9dc1e17000560 (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
139
140
141
142
143
144
145
146
147
148
149
package whisper

import (
    "bytes"

    "testing"
)

var filterTopicsCreationTests = []struct {
    topics [][]string
    filter [][][4]byte
}{
    { // Simple topic filter
        topics: [][]string{
            {"abc", "def", "ghi"},
            {"def"},
            {"ghi", "abc"},
        },
        filter: [][][4]byte{
            {{0x4e, 0x03, 0x65, 0x7a}, {0x34, 0x60, 0x7c, 0x9b}, {0x21, 0x41, 0x7d, 0xf9}},
            {{0x34, 0x60, 0x7c, 0x9b}},
            {{0x21, 0x41, 0x7d, 0xf9}, {0x4e, 0x03, 0x65, 0x7a}},
        },
    },
    { // Wild-carded topic filter
        topics: [][]string{
            {"abc", "def", "ghi"},
            {},
            {""},
            {"def"},
        },
        filter: [][][4]byte{
            {{0x4e, 0x03, 0x65, 0x7a}, {0x34, 0x60, 0x7c, 0x9b}, {0x21, 0x41, 0x7d, 0xf9}},
            {},
            {},
            {{0x34, 0x60, 0x7c, 0x9b}},
        },
    },
}

var filterTopicsCreationFlatTests = []struct {
    topics []string
    filter [][][4]byte
}{
    { // Simple topic list
        topics: []string{"abc", "def", "ghi"},
        filter: [][][4]byte{
            {{0x4e, 0x03, 0x65, 0x7a}},
            {{0x34, 0x60, 0x7c, 0x9b}},
            {{0x21, 0x41, 0x7d, 0xf9}},
        },
    },
    { // Wild-carded topic list
        topics: []string{"abc", "", "ghi"},
        filter: [][][4]byte{
            {{0x4e, 0x03, 0x65, 0x7a}},
            {},
            {{0x21, 0x41, 0x7d, 0xf9}},
        },
    },
}

func TestFilterTopicsCreation(t *testing.T) {
    // Check full filter creation
    for i, tt := range filterTopicsCreationTests {
        // Check the textual creation
        filter := NewFilterTopicsFromStrings(tt.topics...)
        if len(filter) != len(tt.topics) {
            t.Errorf("test %d: condition count mismatch: have %v, want %v", i, len(filter), len(tt.topics))
            continue
        }
        for j, condition := range filter {
            if len(condition) != len(tt.filter[j]) {
                t.Errorf("test %d, condition %d: size mismatch: have %v, want %v", i, j, len(condition), len(tt.filter[j]))
                continue
            }
            for k := 0; k < len(condition); k++ {
                if bytes.Compare(condition[k][:], tt.filter[j][k][:]) != 0 {
                    t.Errorf("test %d, condition %d, segment %d: filter mismatch: have 0x%x, want 0x%x", i, j, k, condition[k], tt.filter[j][k])
                }
            }
        }
        // Check the binary creation
        binary := make([][][]byte, len(tt.topics))
        for j, condition := range tt.topics {
            binary[j] = make([][]byte, len(condition))
            for k, segment := range condition {
                binary[j][k] = []byte(segment)
            }
        }
        filter = NewFilterTopics(binary...)
        if len(filter) != len(tt.topics) {
            t.Errorf("test %d: condition count mismatch: have %v, want %v", i, len(filter), len(tt.topics))
            continue
        }
        for j, condition := range filter {
            if len(condition) != len(tt.filter[j]) {
                t.Errorf("test %d, condition %d: size mismatch: have %v, want %v", i, j, len(condition), len(tt.filter[j]))
                continue
            }
            for k := 0; k < len(condition); k++ {
                if bytes.Compare(condition[k][:], tt.filter[j][k][:]) != 0 {
                    t.Errorf("test %d, condition %d, segment %d: filter mismatch: have 0x%x, want 0x%x", i, j, k, condition[k], tt.filter[j][k])
                }
            }
        }
    }
    // Check flat filter creation
    for i, tt := range filterTopicsCreationFlatTests {
        // Check the textual creation
        filter := NewFilterTopicsFromStringsFlat(tt.topics...)
        if len(filter) != len(tt.topics) {
            t.Errorf("test %d: condition count mismatch: have %v, want %v", i, len(filter), len(tt.topics))
            continue
        }
        for j, condition := range filter {
            if len(condition) != len(tt.filter[j]) {
                t.Errorf("test %d, condition %d: size mismatch: have %v, want %v", i, j, len(condition), len(tt.filter[j]))
                continue
            }
            for k := 0; k < len(condition); k++ {
                if bytes.Compare(condition[k][:], tt.filter[j][k][:]) != 0 {
                    t.Errorf("test %d, condition %d, segment %d: filter mismatch: have 0x%x, want 0x%x", i, j, k, condition[k], tt.filter[j][k])
                }
            }
        }
        // Check the binary creation
        binary := make([][]byte, len(tt.topics))
        for j, topic := range tt.topics {
            binary[j] = []byte(topic)
        }
        filter = NewFilterTopicsFlat(binary...)
        if len(filter) != len(tt.topics) {
            t.Errorf("test %d: condition count mismatch: have %v, want %v", i, len(filter), len(tt.topics))
            continue
        }
        for j, condition := range filter {
            if len(condition) != len(tt.filter[j]) {
                t.Errorf("test %d, condition %d: size mismatch: have %v, want %v", i, j, len(condition), len(tt.filter[j]))
                continue
            }
            for k := 0; k < len(condition); k++ {
                if bytes.Compare(condition[k][:], tt.filter[j][k][:]) != 0 {
                    t.Errorf("test %d, condition %d, segment %d: filter mismatch: have 0x%x, want 0x%x", i, j, k, condition[k], tt.filter[j][k])
                }
            }
        }
    }
}