summaryrefslogtreecommitdiffstats
path: root/model/oauth_test.go
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-09-16 15:49:12 -0400
committerJoramWilander <jwawilander@gmail.com>2015-09-16 15:49:12 -0400
commit47e6a33a4505e13ba4edf37ff1f8fbdadb279ee3 (patch)
tree9d798d908b3a76d6e228f39872e74cccfc27ad35 /model/oauth_test.go
parent7e418714bce067172e527359f391943459b3bd48 (diff)
downloadchat-47e6a33a4505e13ba4edf37ff1f8fbdadb279ee3.tar.gz
chat-47e6a33a4505e13ba4edf37ff1f8fbdadb279ee3.tar.bz2
chat-47e6a33a4505e13ba4edf37ff1f8fbdadb279ee3.zip
Implement OAuth2 service provider functionality.
Diffstat (limited to 'model/oauth_test.go')
-rw-r--r--model/oauth_test.go95
1 files changed, 95 insertions, 0 deletions
diff --git a/model/oauth_test.go b/model/oauth_test.go
new file mode 100644
index 000000000..2530ead98
--- /dev/null
+++ b/model/oauth_test.go
@@ -0,0 +1,95 @@
+// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package model
+
+import (
+ "strings"
+ "testing"
+)
+
+func TestOAuthAppJson(t *testing.T) {
+ a1 := OAuthApp{}
+ a1.Id = NewId()
+ a1.Name = "TestOAuthApp" + NewId()
+ a1.CallbackUrls = []string{"https://nowhere.com"}
+ a1.Homepage = "https://nowhere.com"
+ a1.ClientSecret = NewId()
+
+ json := a1.ToJson()
+ ra1 := OAuthAppFromJson(strings.NewReader(json))
+
+ if a1.Id != ra1.Id {
+ t.Fatal("ids did not match")
+ }
+}
+
+func TestOAuthAppPreSave(t *testing.T) {
+ a1 := OAuthApp{}
+ a1.Id = NewId()
+ a1.Name = "TestOAuthApp" + NewId()
+ a1.CallbackUrls = []string{"https://nowhere.com"}
+ a1.Homepage = "https://nowhere.com"
+ a1.ClientSecret = NewId()
+ a1.PreSave()
+ a1.Etag()
+ a1.Sanitize()
+}
+
+func TestOAuthAppPreUpdate(t *testing.T) {
+ a1 := OAuthApp{}
+ a1.Id = NewId()
+ a1.Name = "TestOAuthApp" + NewId()
+ a1.CallbackUrls = []string{"https://nowhere.com"}
+ a1.Homepage = "https://nowhere.com"
+ a1.ClientSecret = NewId()
+ a1.PreUpdate()
+}
+
+func TestOAuthAppIsValid(t *testing.T) {
+ app := OAuthApp{}
+
+ if err := app.IsValid(); err == nil {
+ t.Fatal()
+ }
+
+ app.Id = NewId()
+ if err := app.IsValid(); err == nil {
+ t.Fatal()
+ }
+
+ app.CreateAt = 1
+ if err := app.IsValid(); err == nil {
+ t.Fatal()
+ }
+
+ app.UpdateAt = 1
+ if err := app.IsValid(); err == nil {
+ t.Fatal()
+ }
+
+ app.CreatorId = NewId()
+ if err := app.IsValid(); err == nil {
+ t.Fatal()
+ }
+
+ app.ClientSecret = NewId()
+ if err := app.IsValid(); err == nil {
+ t.Fatal()
+ }
+
+ app.Name = "TestOAuthApp"
+ if err := app.IsValid(); err == nil {
+ t.Fatal()
+ }
+
+ app.CallbackUrls = []string{"https://nowhere.com"}
+ if err := app.IsValid(); err == nil {
+ t.Fatal()
+ }
+
+ app.Homepage = "https://nowhere.com"
+ if err := app.IsValid(); err != nil {
+ t.Fatal()
+ }
+}