mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
I've been burned a few times by tests that simply fatal, requiring me to run another build to learn more about what the mismatch was. Avoid this. This is part of a long running goal of mine to make testing "better".
92 lines
1.8 KiB
Go
92 lines
1.8 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/require"
|
|
)
|
|
|
|
func TestAccessJson(t *testing.T) {
|
|
a1 := AccessData{}
|
|
a1.ClientId = NewId()
|
|
a1.UserId = NewId()
|
|
a1.Token = NewId()
|
|
a1.RefreshToken = NewId()
|
|
|
|
json := a1.ToJson()
|
|
ra1 := AccessDataFromJson(strings.NewReader(json))
|
|
|
|
if a1.Token != ra1.Token {
|
|
t.Fatal("tokens didn't match")
|
|
}
|
|
}
|
|
|
|
func TestAccessIsValid(t *testing.T) {
|
|
ad := AccessData{}
|
|
|
|
require.NotNil(t, ad.IsValid())
|
|
|
|
ad.ClientId = NewRandomString(28)
|
|
if err := ad.IsValid(); err == nil {
|
|
t.Fatal("Should have failed Client Id")
|
|
}
|
|
|
|
ad.ClientId = ""
|
|
if err := ad.IsValid(); err == nil {
|
|
t.Fatal("Should have failed Client Id")
|
|
}
|
|
|
|
ad.ClientId = NewId()
|
|
require.NotNil(t, ad.IsValid())
|
|
|
|
ad.UserId = NewRandomString(28)
|
|
if err := ad.IsValid(); err == nil {
|
|
t.Fatal("Should have failed User Id")
|
|
}
|
|
|
|
ad.UserId = ""
|
|
if err := ad.IsValid(); err == nil {
|
|
t.Fatal("Should have failed User Id")
|
|
}
|
|
|
|
ad.UserId = NewId()
|
|
if err := ad.IsValid(); err == nil {
|
|
t.Fatal("should have failed")
|
|
}
|
|
|
|
ad.Token = NewRandomString(22)
|
|
if err := ad.IsValid(); err == nil {
|
|
t.Fatal("Should have failed Token")
|
|
}
|
|
|
|
ad.Token = NewId()
|
|
require.NotNil(t, ad.IsValid())
|
|
|
|
ad.RefreshToken = NewRandomString(28)
|
|
if err := ad.IsValid(); err == nil {
|
|
t.Fatal("Should have failed Refresh Token")
|
|
}
|
|
|
|
ad.RefreshToken = NewId()
|
|
require.NotNil(t, ad.IsValid())
|
|
|
|
ad.RedirectUri = ""
|
|
if err := ad.IsValid(); err == nil {
|
|
t.Fatal("Should have failed Redirect URI not set")
|
|
}
|
|
|
|
ad.RedirectUri = NewRandomString(28)
|
|
if err := ad.IsValid(); err == nil {
|
|
t.Fatal("Should have failed invalid URL")
|
|
}
|
|
|
|
ad.RedirectUri = "http://example.com"
|
|
if err := ad.IsValid(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|