- Remove internal/cmd/php/ (now core/php repo) - Remove internal/cmd/ci/ and internal/cmd/sdk/ (now core/ci repo) - Remove internal/variants/ build tag system entirely - Move all 30 remaining command packages from internal/cmd/ to cmd/ - Rewrite main.go with direct imports (no more variant selection) - Update all cross-references from internal/cmd/ to cmd/ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
36 lines
1.4 KiB
Go
36 lines
1.4 KiB
Go
package updater
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// MockGithubClient is a mock implementation of the GithubClient interface for testing.
|
|
type MockGithubClient struct {
|
|
GetLatestReleaseFunc func(ctx context.Context, owner, repo, channel string) (*Release, error)
|
|
GetReleaseByPullRequestFunc func(ctx context.Context, owner, repo string, prNumber int) (*Release, error)
|
|
GetPublicReposFunc func(ctx context.Context, userOrOrg string) ([]string, error)
|
|
}
|
|
|
|
// GetLatestRelease mocks the GetLatestRelease method of the GithubClient interface.
|
|
func (m *MockGithubClient) GetLatestRelease(ctx context.Context, owner, repo, channel string) (*Release, error) {
|
|
if m.GetLatestReleaseFunc != nil {
|
|
return m.GetLatestReleaseFunc(ctx, owner, repo, channel)
|
|
}
|
|
return nil, nil
|
|
}
|
|
|
|
// GetReleaseByPullRequest mocks the GetReleaseByPullRequest method of the GithubClient interface.
|
|
func (m *MockGithubClient) GetReleaseByPullRequest(ctx context.Context, owner, repo string, prNumber int) (*Release, error) {
|
|
if m.GetReleaseByPullRequestFunc != nil {
|
|
return m.GetReleaseByPullRequestFunc(ctx, owner, repo, prNumber)
|
|
}
|
|
return nil, nil
|
|
}
|
|
|
|
// GetPublicRepos mocks the GetPublicRepos method of the GithubClient interface.
|
|
func (m *MockGithubClient) GetPublicRepos(ctx context.Context, userOrOrg string) ([]string, error) {
|
|
if m.GetPublicReposFunc != nil {
|
|
return m.GetPublicReposFunc(ctx, userOrOrg)
|
|
}
|
|
return []string{"repo1", "repo2"}, nil
|
|
}
|