86 lines
3.2 KiB
Go
86 lines
3.2 KiB
Go
|
// gomuks - A terminal Matrix client written in Go.
|
||
|
// Copyright (C) 2018 Tulir Asokan
|
||
|
//
|
||
|
// This program is free software: you can redistribute it and/or modify
|
||
|
// it under the terms of the GNU General Public License as published by
|
||
|
// 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
|
||
|
// GNU General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU General Public License
|
||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
package pushrules_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestPushCondition_Match_KindEvent_MsgType(t *testing.T) {
|
||
|
condition := newMatchPushCondition("content.msgtype", "m.emote")
|
||
|
event := newFakeEvent("m.room.message", map[string]interface{}{
|
||
|
"msgtype": "m.emote",
|
||
|
"body": "tests gomuks pushconditions",
|
||
|
})
|
||
|
assert.True(t, condition.Match(blankTestRoom, event))
|
||
|
}
|
||
|
|
||
|
func TestPushCondition_Match_KindEvent_MsgType_Fail(t *testing.T) {
|
||
|
condition := newMatchPushCondition("content.msgtype", "m.emote")
|
||
|
|
||
|
event := newFakeEvent("m.room.message", map[string]interface{}{
|
||
|
"msgtype": "m.text",
|
||
|
"body": "I'm testing gomuks pushconditions",
|
||
|
})
|
||
|
assert.False(t, condition.Match(blankTestRoom, event))
|
||
|
}
|
||
|
|
||
|
func TestPushCondition_Match_KindEvent_EventType(t *testing.T) {
|
||
|
condition := newMatchPushCondition("type", "m.room.foo")
|
||
|
event := newFakeEvent("m.room.foo", map[string]interface{}{})
|
||
|
assert.True(t, condition.Match(blankTestRoom, event))
|
||
|
}
|
||
|
|
||
|
func TestPushCondition_Match_KindEvent_Sender_Fail(t *testing.T) {
|
||
|
condition := newMatchPushCondition("sender", "@foo:maunium.net")
|
||
|
event := newFakeEvent("m.room.foo", map[string]interface{}{})
|
||
|
assert.False(t, condition.Match(blankTestRoom, event))
|
||
|
}
|
||
|
|
||
|
func TestPushCondition_Match_KindEvent_RoomID(t *testing.T) {
|
||
|
condition := newMatchPushCondition("room_id", "!fakeroom:maunium.net")
|
||
|
event := newFakeEvent("", map[string]interface{}{})
|
||
|
assert.True(t, condition.Match(blankTestRoom, event))
|
||
|
}
|
||
|
|
||
|
func TestPushCondition_Match_KindEvent_BlankStateKey(t *testing.T) {
|
||
|
condition := newMatchPushCondition("state_key", "")
|
||
|
event := newFakeEvent("m.room.foo", map[string]interface{}{})
|
||
|
assert.True(t, condition.Match(blankTestRoom, event))
|
||
|
}
|
||
|
|
||
|
func TestPushCondition_Match_KindEvent_BlankStateKey_Fail(t *testing.T) {
|
||
|
condition := newMatchPushCondition("state_key", "not blank")
|
||
|
event := newFakeEvent("m.room.foo", map[string]interface{}{})
|
||
|
assert.False(t, condition.Match(blankTestRoom, event))
|
||
|
}
|
||
|
|
||
|
func TestPushCondition_Match_KindEvent_NonBlankStateKey(t *testing.T) {
|
||
|
condition := newMatchPushCondition("state_key", "*:maunium.net")
|
||
|
event := newFakeEvent("m.room.foo", map[string]interface{}{})
|
||
|
event.StateKey = &event.Sender
|
||
|
assert.True(t, condition.Match(blankTestRoom, event))
|
||
|
}
|
||
|
|
||
|
func TestPushCondition_Match_KindEvent_UnknownKey(t *testing.T) {
|
||
|
condition := newMatchPushCondition("non-existent key", "doesn't affect anything")
|
||
|
event := newFakeEvent("m.room.foo", map[string]interface{}{})
|
||
|
assert.False(t, condition.Match(blankTestRoom, event))
|
||
|
}
|