summaryrefslogtreecommitdiffstats
path: root/model/utils_test.go
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-08-28 08:37:55 -0400
committerJoramWilander <jwawilander@gmail.com>2015-08-28 08:37:55 -0400
commitf5fec3a157e6c9146a0c4e28dd5f70e6c066affd (patch)
tree176afd630a3afbe0ac3389695be6b4ce1c45d069 /model/utils_test.go
parentdb7e8c12889485234fb2d1ba6556106e5fc7548b (diff)
downloadchat-f5fec3a157e6c9146a0c4e28dd5f70e6c066affd.tar.gz
chat-f5fec3a157e6c9146a0c4e28dd5f70e6c066affd.tar.bz2
chat-f5fec3a157e6c9146a0c4e28dd5f70e6c066affd.zip
Added the ability to create a team with SSO services and added the ability to turn off email sign up.
Diffstat (limited to 'model/utils_test.go')
-rw-r--r--model/utils_test.go44
1 files changed, 0 insertions, 44 deletions
diff --git a/model/utils_test.go b/model/utils_test.go
index dbb448882..0f26526b2 100644
--- a/model/utils_test.go
+++ b/model/utils_test.go
@@ -66,50 +66,6 @@ func TestValidLower(t *testing.T) {
}
}
-var domains = []struct {
- value string
- expected bool
-}{
- {"spin-punch", true},
- {"-spin-punch", false},
- {"spin-punch-", false},
- {"spin_punch", false},
- {"a", false},
- {"aa", false},
- {"aaa", false},
- {"aaa-999b", true},
- {"b00b", true},
- {"b))b", false},
- {"test", true},
-}
-
-func TestValidTeamName(t *testing.T) {
- for _, v := range domains {
- if IsValidTeamName(v.value) != v.expected {
- t.Errorf("expect %v as %v", v.value, v.expected)
- }
- }
-}
-
-var tReservedDomains = []struct {
- value string
- expected bool
-}{
- {"test-hello", true},
- {"test", true},
- {"admin", true},
- {"Admin-punch", true},
- {"spin-punch-admin", false},
-}
-
-func TestReservedTeamName(t *testing.T) {
- for _, v := range tReservedDomains {
- if IsReservedTeamName(v.value) != v.expected {
- t.Errorf("expect %v as %v", v.value, v.expected)
- }
- }
-}
-
func TestEtag(t *testing.T) {
etag := Etag("hello", 24)
if len(etag) <= 0 {