mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-14 04:09:29 +02:00
Transient model for federated unstar (#6740)
This is the first step to https://codeberg.org/forgejo-contrib/federation/src/branch/main/FederationRoadmap.md#federated-unstar-wip Co-authored-by: Michael Jerger <michael.jerger@meissa-gmbh.de> Co-authored-by: ansgarz <ansgar.zwick@meissa.de> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6740 Reviewed-by: Otto <otto@codeberg.org> Co-authored-by: Mirco <mirco.zachmann@meissa.de> Co-committed-by: Mirco <mirco.zachmann@meissa.de>
This commit is contained in:
parent
0dcc72dcd9
commit
179f85cf49
7 changed files with 385 additions and 28 deletions
23
modules/forgefed/activity_validateandcheckerror_test.go
Normal file
23
modules/forgefed/activity_validateandcheckerror_test.go
Normal file
|
@ -0,0 +1,23 @@
|
|||
// Copyright 2023, 2024 The Forgejo Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
package forgefed
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"code.gitea.io/gitea/modules/validation"
|
||||
)
|
||||
|
||||
func validateAndCheckError(subject validation.Validateable, expectedError string) *string {
|
||||
errors := subject.Validate()
|
||||
err := errors[0]
|
||||
if len(errors) < 1 {
|
||||
val := "Validation error should have been returned, but was not."
|
||||
return &val
|
||||
} else if err != expectedError {
|
||||
val := fmt.Sprintf("Validation error should be [%v] but was: %v\n", expectedError, err)
|
||||
return &val
|
||||
}
|
||||
return nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue