Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #87 from northernSage/add-filter-tests
Browse files Browse the repository at this point in the history
Add tests for filters.go
  • Loading branch information
kegsay authored Sep 26, 2022
2 parents be2af5e + dcac0ce commit ceba4d9
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 110 deletions.
110 changes: 0 additions & 110 deletions events_test.go

This file was deleted.

89 changes: 89 additions & 0 deletions filter_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,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)
}
}

0 comments on commit ceba4d9

Please sign in to comment.