summaryrefslogtreecommitdiffstats
path: root/model/oauth_test.go
blob: e1f88a99389733bc5c17e9d9897da5706c46ccfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// Copyright (c) 2015 Mattermost, 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.IconURL = "https://nowhere.com/icon_image.png"
	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.IconURL = "https://nowhere.com/icon_image.png"
	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.IconURL = "https://nowhere.com/icon_image.png"
	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()
	}

	app.IconURL = "https://nowhere.com/icon_image.png"
	if err := app.IsValid(); err != nil {
		t.Fatal()
	}
}