mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-08 18:16:59 +00:00
1b124fe9cb
Should fix https://github.com/matrix-org/dendrite/issues/3183, since Element Android already implements [MSC3987](https://github.com/vector-im/element-android/pull/8530) This is also part of https://github.com/matrix-org/dendrite/issues/3225
38 lines
855 B
Go
38 lines
855 B
Go
package pushrules
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
)
|
|
|
|
func TestActionJSON(t *testing.T) {
|
|
tsts := []struct {
|
|
Want Action
|
|
}{
|
|
{Action{Kind: NotifyAction}},
|
|
{Action{Kind: SetTweakAction}},
|
|
|
|
{Action{Kind: SetTweakAction, Tweak: SoundTweak, Value: "default"}},
|
|
{Action{Kind: SetTweakAction, Tweak: HighlightTweak}},
|
|
{Action{Kind: SetTweakAction, Tweak: HighlightTweak, Value: "false"}},
|
|
}
|
|
for _, tst := range tsts {
|
|
t.Run(fmt.Sprintf("%+v", tst.Want), func(t *testing.T) {
|
|
bs, err := json.Marshal(&tst.Want)
|
|
if err != nil {
|
|
t.Fatalf("Marshal failed: %v", err)
|
|
}
|
|
var got Action
|
|
if err := json.Unmarshal(bs, &got); err != nil {
|
|
t.Fatalf("Unmarshal failed: %v", err)
|
|
}
|
|
if diff := cmp.Diff(tst.Want, got); diff != "" {
|
|
t.Errorf("+got -want:\n%s", diff)
|
|
}
|
|
})
|
|
}
|
|
}
|