mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	This PR is part of https://codeberg.org/forgejo/forgejo/pulls/4767 This should not have an outside impact but bring all model changes needed & bring migrations. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8078 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Co-authored-by: Michael Jerger <michael.jerger@meissa-gmbh.de> Co-committed-by: Michael Jerger <michael.jerger@meissa-gmbh.de>
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			695 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			695 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 The Forgejo Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package user
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"forgejo.org/modules/validation"
 | 
						|
)
 | 
						|
 | 
						|
func Test_FederatedUserValidation(t *testing.T) {
 | 
						|
	sut := FederatedUser{
 | 
						|
		UserID:           12,
 | 
						|
		ExternalID:       "12",
 | 
						|
		FederationHostID: 1,
 | 
						|
		InboxPath:        "/api/v1/activitypub/user-id/12/inbox",
 | 
						|
	}
 | 
						|
	if res, err := validation.IsValid(sut); !res {
 | 
						|
		t.Errorf("sut should be valid but was %q", err)
 | 
						|
	}
 | 
						|
 | 
						|
	sut = FederatedUser{
 | 
						|
		ExternalID:       "12",
 | 
						|
		FederationHostID: 1,
 | 
						|
		InboxPath:        "/api/v1/activitypub/user-id/12/inbox",
 | 
						|
	}
 | 
						|
	if res, _ := validation.IsValid(sut); res {
 | 
						|
		t.Error("sut should be invalid")
 | 
						|
	}
 | 
						|
}
 |