2023-12-11 16:55:10 +01:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2024-01-20 03:07:31 +01:00
|
|
|
"code.gitea.io/gitea/services/doctor"
|
2023-12-11 16:55:10 +01:00
|
|
|
|
2024-07-30 21:41:10 +02:00
|
|
|
"github.com/stretchr/testify/require"
|
2023-12-11 16:55:10 +01:00
|
|
|
"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"})
|
2024-07-30 21:41:10 +02:00
|
|
|
require.NoError(t, err)
|
2023-12-11 16:55:10 +01:00
|
|
|
err = app.Run([]string{"./gitea", "check", "--run", "no-such"})
|
2024-07-30 21:41:10 +02:00
|
|
|
require.ErrorContains(t, err, `unknown checks: "no-such"`)
|
2023-12-11 16:55:10 +01:00
|
|
|
err = app.Run([]string{"./gitea", "check", "--run", "test-check,no-such"})
|
2024-07-30 21:41:10 +02:00
|
|
|
require.ErrorContains(t, err, `unknown checks: "no-such"`)
|
2023-12-11 16:55:10 +01:00
|
|
|
}
|