| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    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-09-01 18:29:25 +02:00
										 |  |  | package validate_test | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/stretchr/testify/suite" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | 
					
						
							| 
									
										
										
										
											2021-09-01 18:29:25 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/validate" | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func happyDomainBlock() *gtsmodel.DomainBlock { | 
					
						
							|  |  |  | 	return >smodel.DomainBlock{ | 
					
						
							|  |  |  | 		ID:                 "01FE91RJR88PSEEE30EV35QR8N", | 
					
						
							|  |  |  | 		CreatedAt:          time.Now(), | 
					
						
							|  |  |  | 		UpdatedAt:          time.Now(), | 
					
						
							|  |  |  | 		Domain:             "baddudes.suck", | 
					
						
							|  |  |  | 		CreatedByAccountID: "01FEED79PRMVWPRMFHFQM8MJQN", | 
					
						
							|  |  |  | 		PrivateComment:     "we don't like em", | 
					
						
							|  |  |  | 		PublicComment:      "poo poo dudes", | 
					
						
							|  |  |  | 		Obfuscate:          false, | 
					
						
							|  |  |  | 		SubscriptionID:     "", | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type DomainBlockValidateTestSuite struct { | 
					
						
							|  |  |  | 	suite.Suite | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *DomainBlockValidateTestSuite) TestValidateDomainBlockHappyPath() { | 
					
						
							|  |  |  | 	// no problem here | 
					
						
							|  |  |  | 	d := happyDomainBlock() | 
					
						
							| 
									
										
										
										
											2021-09-03 10:30:40 +02:00
										 |  |  | 	err := validate.Struct(d) | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *DomainBlockValidateTestSuite) TestValidateDomainBlockBadID() { | 
					
						
							|  |  |  | 	d := happyDomainBlock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d.ID = "" | 
					
						
							| 
									
										
										
										
											2021-09-03 10:30:40 +02:00
										 |  |  | 	err := validate.Struct(d) | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 	suite.EqualError(err, "Key: 'DomainBlock.ID' Error:Field validation for 'ID' failed on the 'required' tag") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d.ID = "01FE96W293ZPRG9FQQP48HK8N001FE96W32AT24VYBGM12WN3GKB" | 
					
						
							| 
									
										
										
										
											2021-09-03 10:30:40 +02:00
										 |  |  | 	err = validate.Struct(d) | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 	suite.EqualError(err, "Key: 'DomainBlock.ID' Error:Field validation for 'ID' failed on the 'ulid' tag") | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *DomainBlockValidateTestSuite) TestValidateDomainBlockNoCreatedAt() { | 
					
						
							|  |  |  | 	d := happyDomainBlock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d.CreatedAt = time.Time{} | 
					
						
							| 
									
										
										
										
											2021-09-03 10:30:40 +02:00
										 |  |  | 	err := validate.Struct(d) | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *DomainBlockValidateTestSuite) TestValidateDomainBlockBadDomain() { | 
					
						
							|  |  |  | 	d := happyDomainBlock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d.Domain = "" | 
					
						
							| 
									
										
										
										
											2021-09-03 10:30:40 +02:00
										 |  |  | 	err := validate.Struct(d) | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 	suite.EqualError(err, "Key: 'DomainBlock.Domain' Error:Field validation for 'Domain' failed on the 'required' tag") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d.Domain = "this-is-not-a-valid-domain" | 
					
						
							| 
									
										
										
										
											2021-09-03 10:30:40 +02:00
										 |  |  | 	err = validate.Struct(d) | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 	suite.EqualError(err, "Key: 'DomainBlock.Domain' Error:Field validation for 'Domain' failed on the 'fqdn' tag") | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *DomainBlockValidateTestSuite) TestValidateDomainBlockCreatedByAccountID() { | 
					
						
							|  |  |  | 	d := happyDomainBlock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d.CreatedByAccountID = "" | 
					
						
							| 
									
										
										
										
											2021-09-03 10:30:40 +02:00
										 |  |  | 	err := validate.Struct(d) | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 	suite.EqualError(err, "Key: 'DomainBlock.CreatedByAccountID' Error:Field validation for 'CreatedByAccountID' failed on the 'required' tag") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d.CreatedByAccountID = "this-is-not-a-valid-ulid" | 
					
						
							| 
									
										
										
										
											2021-09-03 10:30:40 +02:00
										 |  |  | 	err = validate.Struct(d) | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 	suite.EqualError(err, "Key: 'DomainBlock.CreatedByAccountID' Error:Field validation for 'CreatedByAccountID' failed on the 'ulid' tag") | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *DomainBlockValidateTestSuite) TestValidateDomainBlockComments() { | 
					
						
							|  |  |  | 	d := happyDomainBlock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d.PrivateComment = "" | 
					
						
							|  |  |  | 	d.PublicComment = "" | 
					
						
							| 
									
										
										
										
											2021-09-03 10:30:40 +02:00
										 |  |  | 	err := validate.Struct(d) | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *DomainBlockValidateTestSuite) TestValidateDomainSubscriptionID() { | 
					
						
							|  |  |  | 	d := happyDomainBlock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d.SubscriptionID = "invalid-ulid" | 
					
						
							| 
									
										
										
										
											2021-09-03 10:30:40 +02:00
										 |  |  | 	err := validate.Struct(d) | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 	suite.EqualError(err, "Key: 'DomainBlock.SubscriptionID' Error:Field validation for 'SubscriptionID' failed on the 'ulid' tag") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	d.SubscriptionID = "01FEEDHX4G7EGHF5GD9E82Y51Q" | 
					
						
							| 
									
										
										
										
											2021-09-03 10:30:40 +02:00
										 |  |  | 	err = validate.Struct(d) | 
					
						
							| 
									
										
										
										
											2021-08-31 19:27:02 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestDomainBlockValidateTestSuite(t *testing.T) { | 
					
						
							|  |  |  | 	suite.Run(t, new(DomainBlockValidateTestSuite)) | 
					
						
							|  |  |  | } |