2018-04-15 14:36:01 +02:00
|
|
|
// gomuks - A terminal Matrix client written in Go.
|
2019-01-17 13:13:25 +01:00
|
|
|
// Copyright (C) 2019 Tulir Asokan
|
2018-04-15 14:36:01 +02:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
2019-01-17 13:13:25 +01:00
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
2018-04-15 14:36:01 +02:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program 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
|
2019-01-17 13:13:25 +01:00
|
|
|
// GNU Affero General Public License for more details.
|
2018-04-15 14:36:01 +02:00
|
|
|
//
|
2019-01-17 13:13:25 +01:00
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-04-15 14:36:01 +02:00
|
|
|
|
|
|
|
package pushrules_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2018-11-13 23:00:35 +01:00
|
|
|
"maunium.net/go/mautrix"
|
2018-04-15 14:36:01 +02:00
|
|
|
"maunium.net/go/gomuks/matrix/pushrules"
|
|
|
|
"maunium.net/go/gomuks/matrix/rooms"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
blankTestRoom *rooms.Room
|
|
|
|
displaynameTestRoom pushrules.Room
|
|
|
|
|
2018-11-13 23:00:35 +01:00
|
|
|
countConditionTestEvent *mautrix.Event
|
2018-04-15 14:36:01 +02:00
|
|
|
|
|
|
|
displaynamePushCondition *pushrules.PushCondition
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
blankTestRoom = rooms.NewRoom("!fakeroom:maunium.net", "@tulir:maunium.net")
|
|
|
|
|
2018-11-13 23:00:35 +01:00
|
|
|
countConditionTestEvent = &mautrix.Event{
|
2018-04-15 14:36:01 +02:00
|
|
|
Sender: "@tulir:maunium.net",
|
2018-11-14 00:11:40 +01:00
|
|
|
Type: mautrix.EventMessage,
|
2018-04-15 14:36:01 +02:00
|
|
|
Timestamp: 1523791120,
|
|
|
|
ID: "$123:maunium.net",
|
|
|
|
RoomID: "!fakeroom:maunium.net",
|
2018-11-14 00:11:40 +01:00
|
|
|
Content: mautrix.Content{
|
|
|
|
MsgType: mautrix.MsgText,
|
|
|
|
Body: "test",
|
2018-04-15 14:36:01 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
displaynameTestRoom = newFakeRoom(4)
|
|
|
|
displaynamePushCondition = &pushrules.PushCondition{
|
|
|
|
Kind: pushrules.KindContainsDisplayName,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-14 00:11:40 +01:00
|
|
|
func newFakeEvent(evtType mautrix.EventType, content mautrix.Content) *mautrix.Event {
|
2018-11-13 23:00:35 +01:00
|
|
|
return &mautrix.Event{
|
2018-04-15 14:36:01 +02:00
|
|
|
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"),
|
|
|
|
}
|
2018-11-14 00:11:40 +01:00
|
|
|
event := newFakeEvent(mautrix.EventType{Type: "m.room.foobar"}, mautrix.Content{})
|
2018-04-15 14:36:01 +02:00
|
|
|
assert.False(t, condition.Match(blankTestRoom, event))
|
|
|
|
}
|
|
|
|
|
|
|
|
type FakeRoom struct {
|
2018-11-14 00:11:40 +01:00
|
|
|
members map[string]*mautrix.Member
|
2018-04-15 14:36:01 +02:00
|
|
|
owner string
|
|
|
|
}
|
|
|
|
|
|
|
|
func newFakeRoom(memberCount int) *FakeRoom {
|
|
|
|
room := &FakeRoom{
|
|
|
|
owner: "@tulir:maunium.net",
|
2018-11-14 00:11:40 +01:00
|
|
|
members: make(map[string]*mautrix.Member),
|
2018-04-15 14:36:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if memberCount >= 1 {
|
2018-11-14 00:11:40 +01:00
|
|
|
room.members["@tulir:maunium.net"] = &mautrix.Member{
|
|
|
|
Membership: mautrix.MembershipJoin,
|
|
|
|
Displayname: "tulir",
|
2018-04-15 14:36:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < memberCount-1; i++ {
|
|
|
|
mxid := fmt.Sprintf("@extrauser_%d:matrix.org", i)
|
2018-11-14 00:11:40 +01:00
|
|
|
room.members[mxid] = &mautrix.Member{
|
|
|
|
Membership: mautrix.MembershipJoin,
|
|
|
|
Displayname: fmt.Sprintf("Extra User %d", i),
|
2018-04-15 14:36:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return room
|
|
|
|
}
|
|
|
|
|
2018-11-14 00:11:40 +01:00
|
|
|
func (fr *FakeRoom) GetMember(mxid string) *mautrix.Member {
|
2018-04-15 14:36:01 +02:00
|
|
|
return fr.members[mxid]
|
|
|
|
}
|
|
|
|
|
2018-11-14 00:11:40 +01:00
|
|
|
func (fr *FakeRoom) GetSessionOwner() string {
|
|
|
|
return fr.owner
|
2018-04-15 14:36:01 +02:00
|
|
|
}
|
|
|
|
|
2018-11-14 00:11:40 +01:00
|
|
|
func (fr *FakeRoom) GetMembers() map[string]*mautrix.Member {
|
2018-04-15 14:36:01 +02:00
|
|
|
return fr.members
|
|
|
|
}
|