This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
filter_test.go
89 lines (85 loc) · 1.79 KB
/
filter_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
89
package gomatrix
import (
"encoding/json"
"reflect"
"strings"
"testing"
)
// sample from docs
var testFilter = `
{
"room": {
"state": {
"types": [
"m.room.*"
],
"not_rooms": [
"!726s6s6q:example.com"
]
},
"timeline": {
"limit": 10,
"types": [
"m.room.message"
],
"not_rooms": [
"!726s6s6q:example.com"
],
"not_senders": [
"@spam:example.com"
]
},
"ephemeral": {
"types": [
"m.receipt",
"m.typing"
],
"not_rooms": [
"!726s6s6q:example.com"
],
"not_senders": [
"@spam:example.com"
]
}
},
"presence": {
"types": [
"m.presence"
],
"not_senders": [
"@alice:example.com"
]
},
"event_format": "client",
"event_fields": [
"type",
"content",
"sender"
]
}`
func TestFilterValidate(t *testing.T) {
var f Filter
err := json.NewDecoder(strings.NewReader(testFilter)).Decode(&f)
if err != nil {
t.Fatalf("TestFilterValidate: Failed to parse %s", testFilter)
}
// test validadtion success
if err = f.Validate(); err != nil {
t.Fatalf("TestFilterValidate: Filter validation has failed, event_format: '%s'", f.EventFormat)
}
// test validation fail
f.EventFormat = "unkown"
err = f.Validate()
if err == nil {
t.Fatalf("TestFilterValidate: Filter validation false positive, event_format: '%s'", f.EventFormat)
}
}
func TestDefaultFilter(t *testing.T) {
defaultFilter := DefaultFilter()
if reflect.TypeOf(defaultFilter) != reflect.TypeOf(Filter{}) {
t.Fatal("TestDefaultFilter: Invalid type for default filter")
}
if defaultFilter.EventFormat != "client" {
t.Fatalf("TestDefaultFilter: expected EventFormat %s, got %s", "client", defaultFilter.EventFormat)
}
}