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
|
// Copyright (c) 2020 Tulir Asokan
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package pushrules_test
import (
"encoding/json"
"fmt"
"testing"
"github.com/stretchr/testify/assert"
"maunium.net/go/mautrix/event"
"maunium.net/go/mautrix/pushrules"
)
var (
blankTestRoom pushrules.Room
displaynameTestRoom pushrules.Room
countConditionTestEvent *event.Event
displaynamePushCondition *pushrules.PushCondition
)
func init() {
blankTestRoom = newFakeRoom(1)
countConditionTestEvent = &event.Event{
Sender: "@tulir:maunium.net",
Type: event.EventMessage,
Timestamp: 1523791120,
ID: "$123:maunium.net",
RoomID: "!fakeroom:maunium.net",
Content: event.Content{
Raw: map[string]interface{}{
"msgtype": "m.text",
"body": "test",
},
Parsed: &event.MessageEventContent{
MsgType: event.MsgText,
Body: "test",
},
},
}
displaynameTestRoom = newFakeRoom(4)
displaynamePushCondition = &pushrules.PushCondition{
Kind: pushrules.KindContainsDisplayName,
}
}
func newFakeEvent(evtType event.Type, parsed interface{}) *event.Event {
data, err := json.Marshal(parsed)
if err != nil {
panic(err)
}
var raw map[string]interface{}
err = json.Unmarshal(data, &raw)
if err != nil {
panic(err)
}
content := event.Content{
VeryRaw: data,
Raw: raw,
Parsed: parsed,
}
return &event.Event{
Sender: "@tulir:maunium.net",
Type: evtType,
Timestamp: 1523791120,
ID: "$123:maunium.net",
RoomID: "!fakeroom:maunium.net",
Content: content,
}
}
func newCountPushCondition(condition string) *pushrules.PushCondition {
return &pushrules.PushCondition{
Kind: pushrules.KindRoomMemberCount,
MemberCountCondition: condition,
}
}
func newMatchPushCondition(key, pattern string) *pushrules.PushCondition {
return &pushrules.PushCondition{
Kind: pushrules.KindEventMatch,
Key: key,
Pattern: pattern,
}
}
func TestPushCondition_Match_InvalidKind(t *testing.T) {
condition := &pushrules.PushCondition{
Kind: pushrules.PushCondKind("invalid"),
}
evt := newFakeEvent(event.Type{Type: "m.room.foobar"}, &struct{}{})
assert.False(t, condition.Match(blankTestRoom, evt))
}
type FakeRoom struct {
members map[string]*event.MemberEventContent
owner string
}
func newFakeRoom(memberCount int) *FakeRoom {
room := &FakeRoom{
owner: "@tulir:maunium.net",
members: make(map[string]*event.MemberEventContent),
}
if memberCount >= 1 {
room.members["@tulir:maunium.net"] = &event.MemberEventContent{
Membership: event.MembershipJoin,
Displayname: "tulir",
}
}
for i := 0; i < memberCount-1; i++ {
mxid := fmt.Sprintf("@extrauser_%d:matrix.org", i)
room.members[mxid] = &event.MemberEventContent{
Membership: event.MembershipJoin,
Displayname: fmt.Sprintf("Extra User %d", i),
}
}
return room
}
func (fr *FakeRoom) GetMemberCount() int {
return len(fr.members)
}
func (fr *FakeRoom) GetOwnDisplayname() string {
member, ok := fr.members[fr.owner]
if ok {
return member.Displayname
}
return ""
}
|