2023-03-12 15:00:57 +00:00
// GoToSocial
// Copyright (C) GoToSocial Authors admin@gotosocial.org
// SPDX-License-Identifier: AGPL-3.0-or-later
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
2021-08-29 15:52:23 +01:00
2021-09-01 17:29:25 +01:00
package validate_test
2021-08-29 15:52:23 +01:00
import (
"testing"
"github.com/stretchr/testify/suite"
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
2021-09-01 17:29:25 +01:00
"github.com/superseriousbusiness/gotosocial/internal/validate"
2021-08-29 15:52:23 +01:00
)
type ValidateTestSuite struct {
suite . Suite
}
2021-09-03 09:30:40 +01:00
func ( suite * ValidateTestSuite ) TestValidateNilPointer ( ) {
2021-08-29 15:52:23 +01:00
var nilUser * gtsmodel . User
2021-09-03 09:30:40 +01:00
suite . Panics ( func ( ) {
2021-09-01 17:29:25 +01:00
validate . Struct ( nilUser )
2021-08-29 15:52:23 +01:00
} )
}
2021-09-03 09:30:40 +01:00
func ( suite * ValidateTestSuite ) TestValidatePointer ( ) {
user := & gtsmodel . User { }
err := validate . Struct ( user )
suite . EqualError ( err , "Key: 'User.ID' Error:Field validation for 'ID' failed on the 'required' tag\nKey: 'User.AccountID' Error:Field validation for 'AccountID' failed on the 'required' tag\nKey: 'User.EncryptedPassword' Error:Field validation for 'EncryptedPassword' failed on the 'required' tag\nKey: 'User.UnconfirmedEmail' Error:Field validation for 'UnconfirmedEmail' failed on the 'required_without' tag" )
}
2021-08-29 15:52:23 +01:00
func ( suite * ValidateTestSuite ) TestValidateNil ( ) {
2021-09-03 09:30:40 +01:00
suite . Panics ( func ( ) {
2021-09-01 17:29:25 +01:00
validate . Struct ( nil )
2021-08-29 15:52:23 +01:00
} )
}
func ( suite * ValidateTestSuite ) TestValidateWeirdULID ( ) {
type a struct {
ID bool ` validate:"required,ulid" `
}
2021-09-01 17:29:25 +01:00
err := validate . Struct ( a { ID : true } )
2021-08-29 15:52:23 +01:00
suite . Error ( err )
}
func ( suite * ValidateTestSuite ) TestValidateNotStruct ( ) {
type aaaaaaa string
aaaaaa := aaaaaaa ( "aaaa" )
suite . Panics ( func ( ) {
2021-09-01 17:29:25 +01:00
validate . Struct ( aaaaaa )
2021-08-29 15:52:23 +01:00
} )
}
func TestValidateTestSuite ( t * testing . T ) {
suite . Run ( t , new ( ValidateTestSuite ) )
}