mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5860 Updated copyright date in about modal * PLT-5860 Updated copyright notice in JSX files * PLT-5860 Updated copyright notice in go files * Fixed misc copyright dates * Fixed component snapshots
86 lines
1.8 KiB
Go
86 lines
1.8 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestChannelMemberJson(t *testing.T) {
|
|
o := ChannelMember{ChannelId: NewId(), UserId: NewId()}
|
|
json := o.ToJson()
|
|
ro := ChannelMemberFromJson(strings.NewReader(json))
|
|
|
|
if o.ChannelId != ro.ChannelId {
|
|
t.Fatal("Ids do not match")
|
|
}
|
|
}
|
|
|
|
func TestChannelMemberIsValid(t *testing.T) {
|
|
o := ChannelMember{}
|
|
|
|
if err := o.IsValid(); err == nil {
|
|
t.Fatal("should be invalid")
|
|
}
|
|
|
|
o.ChannelId = NewId()
|
|
if err := o.IsValid(); err == nil {
|
|
t.Fatal("should be invalid")
|
|
}
|
|
|
|
o.NotifyProps = GetDefaultChannelNotifyProps()
|
|
o.UserId = NewId()
|
|
/*o.Roles = "missing"
|
|
o.NotifyProps = GetDefaultChannelNotifyProps()
|
|
o.UserId = NewId()
|
|
if err := o.IsValid(); err == nil {
|
|
t.Fatal("should be invalid")
|
|
}*/
|
|
|
|
o.NotifyProps["desktop"] = "junk"
|
|
if err := o.IsValid(); err == nil {
|
|
t.Fatal("should be invalid")
|
|
}
|
|
|
|
o.NotifyProps["desktop"] = "123456789012345678901"
|
|
if err := o.IsValid(); err == nil {
|
|
t.Fatal("should be invalid")
|
|
}
|
|
|
|
o.NotifyProps["desktop"] = CHANNEL_NOTIFY_ALL
|
|
if err := o.IsValid(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
o.NotifyProps["mark_unread"] = "123456789012345678901"
|
|
if err := o.IsValid(); err == nil {
|
|
t.Fatal("should be invalid")
|
|
}
|
|
|
|
o.NotifyProps["mark_unread"] = CHANNEL_MARK_UNREAD_ALL
|
|
if err := o.IsValid(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
o.Roles = ""
|
|
if err := o.IsValid(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestChannelUnreadJson(t *testing.T) {
|
|
o := ChannelUnread{ChannelId: NewId(), TeamId: NewId(), MsgCount: 5, MentionCount: 3}
|
|
json := o.ToJson()
|
|
ro := ChannelUnreadFromJson(strings.NewReader(json))
|
|
|
|
if o.TeamId != ro.TeamId {
|
|
t.Fatal("Team Ids do not match")
|
|
}
|
|
|
|
if o.MentionCount != ro.MentionCount {
|
|
t.Fatal("MentionCount do not match")
|
|
}
|
|
}
|