mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-06 04:01:05 +09:00
Fix #36859 Replace live third-party API calls in migration tests with a fixture-based HTTP mock server. Fixtures are committed so tests run offline by default; live recording is gated per service on an API-token env var. Co-authored-by: Claude (Opus 4.7) <noreply@anthropic.com>
145 lines
4.1 KiB
Go
145 lines
4.1 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package migrations
|
|
|
|
import (
|
|
"net/url"
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"testing"
|
|
"time"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
base "code.gitea.io/gitea/modules/migration"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCodebaseDownloadRepo(t *testing.T) {
|
|
apiUser := os.Getenv("CODEBASE_API_USER")
|
|
apiPassword := os.Getenv("CODEBASE_API_TOKEN")
|
|
liveMode := apiUser != "" && apiPassword != ""
|
|
|
|
_, callerFile, _, _ := runtime.Caller(0)
|
|
fixtureDir := filepath.Join(filepath.Dir(callerFile), "_mock_data/TestCodebaseDownloadRepo")
|
|
mockServer := unittest.NewMockWebServer(t, "https://api3.codebasehq.com", fixtureDir, liveMode)
|
|
|
|
cloneAddr := "https://gitea-test.codebasehq.com/gitea-test/test.git"
|
|
projectURL, _ := url.Parse(cloneAddr)
|
|
projectURL.User = nil
|
|
|
|
ctx := t.Context()
|
|
downloader := NewCodebaseDownloader(ctx, projectURL, "gitea-test", "test", apiUser, apiPassword)
|
|
downloader.baseURL, _ = url.Parse(mockServer.URL)
|
|
|
|
repo, err := downloader.GetRepoInfo(ctx)
|
|
assert.NoError(t, err)
|
|
assertRepositoryEqual(t, &base.Repository{
|
|
Name: "test",
|
|
Owner: "",
|
|
Description: "Repository Description",
|
|
CloneURL: "git@codebasehq.com:gitea-test/gitea-test/test.git",
|
|
OriginalURL: cloneAddr,
|
|
}, repo)
|
|
|
|
milestones, err := downloader.GetMilestones(ctx)
|
|
assert.NoError(t, err)
|
|
assertMilestonesEqual(t, []*base.Milestone{
|
|
{
|
|
Title: "Milestone1",
|
|
Deadline: new(time.Date(2021, time.September, 16, 0, 0, 0, 0, time.UTC)),
|
|
},
|
|
{
|
|
Title: "Milestone2",
|
|
Deadline: new(time.Date(2021, time.September, 17, 0, 0, 0, 0, time.UTC)),
|
|
Closed: new(time.Date(2021, time.September, 17, 0, 0, 0, 0, time.UTC)),
|
|
State: "closed",
|
|
},
|
|
}, milestones)
|
|
|
|
labels, err := downloader.GetLabels(ctx)
|
|
assert.NoError(t, err)
|
|
assert.Len(t, labels, 4)
|
|
|
|
issues, isEnd, err := downloader.GetIssues(ctx, 1, 2)
|
|
assert.NoError(t, err)
|
|
assert.True(t, isEnd)
|
|
assertIssuesEqual(t, []*base.Issue{
|
|
{
|
|
Number: 2,
|
|
Title: "Open Ticket",
|
|
Content: "Open Ticket Message",
|
|
PosterName: "gitea-test-43",
|
|
PosterEmail: "gitea-codebase@smack.email",
|
|
State: "open",
|
|
Created: time.Date(2021, time.September, 26, 19, 19, 14, 0, time.UTC),
|
|
Updated: time.Date(2021, time.September, 26, 19, 19, 34, 0, time.UTC),
|
|
Labels: []*base.Label{
|
|
{
|
|
Name: "Feature",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Number: 1,
|
|
Title: "Closed Ticket",
|
|
Content: "Closed Ticket Message",
|
|
PosterName: "gitea-test-43",
|
|
PosterEmail: "gitea-codebase@smack.email",
|
|
State: "closed",
|
|
Milestone: "Milestone1",
|
|
Created: time.Date(2021, time.September, 26, 19, 18, 33, 0, time.UTC),
|
|
Updated: time.Date(2021, time.September, 26, 19, 18, 55, 0, time.UTC),
|
|
Labels: []*base.Label{
|
|
{
|
|
Name: "Bug",
|
|
},
|
|
},
|
|
},
|
|
}, issues)
|
|
|
|
comments, _, err := downloader.GetComments(ctx, issues[0])
|
|
assert.NoError(t, err)
|
|
assertCommentsEqual(t, []*base.Comment{
|
|
{
|
|
IssueIndex: 2,
|
|
PosterName: "gitea-test-43",
|
|
PosterEmail: "gitea-codebase@smack.email",
|
|
Created: time.Date(2021, time.September, 26, 19, 19, 34, 0, time.UTC),
|
|
Updated: time.Date(2021, time.September, 26, 19, 19, 34, 0, time.UTC),
|
|
Content: "open comment",
|
|
},
|
|
}, comments)
|
|
|
|
prs, _, err := downloader.GetPullRequests(ctx, 1, 1)
|
|
assert.NoError(t, err)
|
|
assertPullRequestsEqual(t, []*base.PullRequest{
|
|
{
|
|
Number: 3,
|
|
Title: "Readme Change",
|
|
Content: "Merge Request comment",
|
|
PosterName: "gitea-test-43",
|
|
PosterEmail: "gitea-codebase@smack.email",
|
|
State: "open",
|
|
Created: time.Date(2021, time.September, 26, 20, 25, 47, 0, time.UTC),
|
|
Updated: time.Date(2021, time.September, 26, 20, 25, 47, 0, time.UTC),
|
|
Head: base.PullRequestBranch{
|
|
Ref: "readme-mr",
|
|
SHA: "1287f206b888d4d13540e0a8e1c07458f5420059",
|
|
RepoName: "test",
|
|
},
|
|
Base: base.PullRequestBranch{
|
|
Ref: "master",
|
|
SHA: "f32b0a9dfd09a60f616f29158f772cedd89942d2",
|
|
RepoName: "test",
|
|
},
|
|
},
|
|
}, prs)
|
|
|
|
rvs, err := downloader.GetReviews(ctx, prs[0])
|
|
assert.Error(t, err)
|
|
assert.Empty(t, rvs)
|
|
}
|