From 56e74239d6b34df8f30ef046f0b0ff4ff0866a71 Mon Sep 17 00:00:00 2001 From: =Corey Hulen Date: Sun, 14 Jun 2015 23:53:32 -0800 Subject: first commit --- model/user_test.go | 92 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 model/user_test.go (limited to 'model/user_test.go') diff --git a/model/user_test.go b/model/user_test.go new file mode 100644 index 000000000..df9ac19c2 --- /dev/null +++ b/model/user_test.go @@ -0,0 +1,92 @@ +// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved. +// See License.txt for license information. + +package model + +import ( + "strings" + "testing" +) + +func TestPasswordHash(t *testing.T) { + hash := HashPassword("Test") + + if !ComparePassword(hash, "Test") { + t.Fatal("Passwords don't match") + } + + if ComparePassword(hash, "Test2") { + t.Fatal("Passwords should not have matched") + } +} + +func TestUserJson(t *testing.T) { + user := User{Id: NewId(), Username: NewId()} + json := user.ToJson() + ruser := UserFromJson(strings.NewReader(json)) + + if user.Id != ruser.Id { + t.Fatal("Ids do not match") + } +} + +func TestUserPreSave(t *testing.T) { + user := User{Password: "test"} + user.PreSave() + user.Etag() +} + +func TestUserPreUpdate(t *testing.T) { + user := User{Password: "test"} + user.PreUpdate() +} + +func TestUserIsValid(t *testing.T) { + user := User{} + + if err := user.IsValid(); err == nil { + t.Fatal() + } + + user.Id = NewId() + if err := user.IsValid(); err == nil { + t.Fatal() + } + + user.CreateAt = GetMillis() + if err := user.IsValid(); err == nil { + t.Fatal() + } + + user.UpdateAt = GetMillis() + if err := user.IsValid(); err == nil { + t.Fatal() + } + + user.TeamId = NewId() + if err := user.IsValid(); err == nil { + t.Fatal() + } + + user.Username = NewId() + "^hello#" + if err := user.IsValid(); err == nil { + t.Fatal() + } + + user.Username = NewId() + user.Email = strings.Repeat("01234567890", 20) + if err := user.IsValid(); err == nil { + t.Fatal() + } + + user.Email = "test@nowhere.com" + user.FullName = strings.Repeat("01234567890", 20) + if err := user.IsValid(); err == nil { + t.Fatal() + } + + user.FullName = "" + if err := user.IsValid(); err != nil { + t.Fatal(err) + } +} -- cgit v1.2.3-1-g7c22