forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'giteaofficial/main'
* giteaofficial/main: [skip ci] Updated translations via Crowdin Let `curl` write the content to file (go-gitea#28427) Improve doctor cli behavior (go-gitea#28422) Second part of refactor `db.Find` (go-gitea#28194)
- Loading branch information
Showing
45 changed files
with
303 additions
and
576 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright 2023 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package cmd | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
|
||
"code.gitea.io/gitea/modules/doctor" | ||
"code.gitea.io/gitea/modules/log" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/urfave/cli/v2" | ||
) | ||
|
||
func TestDoctorRun(t *testing.T) { | ||
doctor.Register(&doctor.Check{ | ||
Title: "Test Check", | ||
Name: "test-check", | ||
Run: func(ctx context.Context, logger log.Logger, autofix bool) error { return nil }, | ||
|
||
SkipDatabaseInitialization: true, | ||
}) | ||
app := cli.NewApp() | ||
app.Commands = []*cli.Command{cmdDoctorCheck} | ||
err := app.Run([]string{"./gitea", "check", "--run", "test-check"}) | ||
assert.NoError(t, err) | ||
err = app.Run([]string{"./gitea", "check", "--run", "no-such"}) | ||
assert.ErrorContains(t, err, `unknown checks: "no-such"`) | ||
err = app.Run([]string{"./gitea", "check", "--run", "test-check,no-such"}) | ||
assert.ErrorContains(t, err, `unknown checks: "no-such"`) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.