mattermost/server/public/model/team_test.go
Jesse Hallam bb02b35048
Expose public/ API as submodule (#23345)
* model -> public/model

* plugin -> public/plugin

* public/model/utils -> public/utils

* platform/shared/mlog -> public/shared/mlog

* platform/shared/i18n -> public/shared/i18n

* platform/shared/markdown -> public/shared/markdown

* platform/services/timezones -> public/shared/timezones

* channels/einterfaces -> einterfaces

* expose public/ submodule

* go mod tidy

* .github: cache-dependency-path, setup-go-work

* modules-tidy for public/ too

* remove old gomodtidy
2023-05-10 13:07:02 -03:00

143 lines
3.3 KiB
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package model
import (
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestTeamIsValid(t *testing.T) {
o := Team{}
appErr := o.IsValid()
require.NotNil(t, appErr, "should be invalid")
o.Id = NewId()
appErr = o.IsValid()
require.NotNil(t, appErr, "should be invalid")
o.CreateAt = GetMillis()
appErr = o.IsValid()
require.NotNil(t, appErr, "should be invalid")
o.UpdateAt = GetMillis()
appErr = o.IsValid()
require.NotNil(t, appErr, "should be invalid")
o.Email = strings.Repeat("01234567890", 20)
appErr = o.IsValid()
require.NotNil(t, appErr, "should be invalid")
o.Email = "corey+test@hulen.com"
o.DisplayName = strings.Repeat("01234567890", 20)
appErr = o.IsValid()
require.NotNil(t, appErr, "should be invalid")
o.DisplayName = "1234"
o.Name = "ZZZZZZZ"
appErr = o.IsValid()
require.NotNil(t, appErr, "should be invalid")
o.Name = "zzzzz"
o.Type = TeamOpen
o.InviteId = NewId()
appErr = o.IsValid()
require.Nil(t, appErr, appErr)
}
func TestTeamPreSave(t *testing.T) {
o := Team{DisplayName: "test"}
o.PreSave()
o.Etag()
}
func TestTeamPreUpdate(t *testing.T) {
o := Team{DisplayName: "test"}
o.PreUpdate()
}
var domains = []struct {
value string
expected bool
}{
{"spin-punch", true},
{"-spin-punch", false},
{"spin-punch-", false},
{"spin_punch", false},
{"a", false},
{"aa", true},
{"aaa", true},
{"aaa-999b", true},
{"b00b", true},
{"b)", false},
{"test", true},
}
func TestValidTeamName(t *testing.T) {
for _, v := range domains {
actual := IsValidTeamName(v.value)
assert.Equal(t, v.expected, actual)
}
}
var tReservedDomains = []struct {
value string
expected bool
}{
{"admin", true},
{"Admin-punch", true},
{"spin-punch-admin", false},
{"playbooks", true},
{"boards", true},
}
func TestReservedTeamName(t *testing.T) {
for _, v := range tReservedDomains {
actual := IsReservedTeamName(v.value)
assert.Equal(t, v.expected, actual)
}
}
func TestCleanTeamName(t *testing.T) {
actual := CleanTeamName("Jimbo's Admin")
require.Equal(t, "jimbos-admin", actual, "didn't clean name properly")
actual = CleanTeamName("Admin Really cool")
require.Equal(t, "really-cool", actual, "didn't clean name properly")
actual = CleanTeamName("super-duper-guys")
require.Equal(t, "super-duper-guys", actual, "didn't clean name properly")
}
func TestTeamPatch(t *testing.T) {
p := &TeamPatch{
DisplayName: new(string),
Description: new(string),
CompanyName: new(string),
AllowedDomains: new(string),
AllowOpenInvite: new(bool),
GroupConstrained: new(bool),
}
*p.DisplayName = NewId()
*p.Description = NewId()
*p.CompanyName = NewId()
*p.AllowedDomains = NewId()
*p.AllowOpenInvite = true
*p.GroupConstrained = true
o := Team{Id: NewId()}
o.Patch(p)
require.Equal(t, *p.DisplayName, o.DisplayName, "DisplayName did not update")
require.Equal(t, *p.Description, o.Description, "Description did not update")
require.Equal(t, *p.CompanyName, o.CompanyName, "CompanyName did not update")
require.Equal(t, *p.AllowedDomains, o.AllowedDomains, "AllowedDomains did not update")
require.Equal(t, *p.AllowOpenInvite, o.AllowOpenInvite, "AllowOpenInvite did not update")
require.Equal(t, *p.GroupConstrained, *o.GroupConstrained)
}