[GITEA] Enable mocked HTTP responses for GitLab migration test

This commit is contained in:
Antonin Delpeuch 2024-01-18 22:25:25 +01:00
parent bd71bdda26
commit f609d00e1b
17 changed files with 1 additions and 1 deletions

View file

@ -32,7 +32,7 @@ func NewMockWebServer(t *testing.T, liveServerBaseURL, testDataDir string, liveM
path := NormalizedFullPath(r.URL)
log.Info("Mock HTTP Server: got request for path %s", r.URL.Path)
// TODO check request method (support POST?)
fixturePath := fmt.Sprintf("%s/%s", testDataDir, strings.ReplaceAll(path, "/", "_"))
fixturePath := fmt.Sprintf("%s/%s", testDataDir, strings.NewReplacer("/", "_", "?", "!").Replace(path))
if liveMode {
liveURL := fmt.Sprintf("%s%s", liveServerBaseURL, path)