github.com/wgh-/mattermost-server@v4.8.0-rc2+incompatible/model/mfa_secret_test.go (about) 1 // Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. 2 // See License.txt for license information. 3 4 package model 5 6 import ( 7 "strings" 8 "testing" 9 ) 10 11 func TestMfaSecretJson(t *testing.T) { 12 secret := MfaSecret{Secret: NewId(), QRCode: NewId()} 13 json := secret.ToJson() 14 result := MfaSecretFromJson(strings.NewReader(json)) 15 16 if secret.Secret != result.Secret { 17 t.Fatal("Secrets do not match") 18 } 19 }