2017-04-12 08:27:57 -04:00
|
|
|
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
2017-03-13 08:26:23 -04:00
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"strings"
|
|
|
|
|
"testing"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestSamlCertificateStatusJson(t *testing.T) {
|
|
|
|
|
status := &SamlCertificateStatus{IdpCertificateFile: true, PrivateKeyFile: true, PublicCertificateFile: true}
|
|
|
|
|
json := status.ToJson()
|
|
|
|
|
rstatus := SamlCertificateStatusFromJson(strings.NewReader(json))
|
|
|
|
|
|
|
|
|
|
if status.IdpCertificateFile != rstatus.IdpCertificateFile {
|
|
|
|
|
t.Fatal("IdpCertificateFile do not match")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rstatus = SamlCertificateStatusFromJson(strings.NewReader("junk"))
|
|
|
|
|
if rstatus != nil {
|
|
|
|
|
t.Fatal("should be nil")
|
|
|
|
|
}
|
|
|
|
|
}
|