mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 21:11:12 +00:00
39 lines
1,012 B
Go
39 lines
1,012 B
Go
|
// Copyright 2024 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package integration
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"testing"
|
||
|
|
||
|
auth_model "code.gitea.io/gitea/models/auth"
|
||
|
"code.gitea.io/gitea/models/unittest"
|
||
|
user_model "code.gitea.io/gitea/models/user"
|
||
|
api "code.gitea.io/gitea/modules/structs"
|
||
|
"code.gitea.io/gitea/tests"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestAPICompareBranches(t *testing.T) {
|
||
|
defer tests.PrepareTestEnv(t)()
|
||
|
|
||
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
||
|
// Login as User2.
|
||
|
session := loginUser(t, user.Name)
|
||
|
token := getTokenForLoggedInUser(t, session, auth_model.AccessTokenScopeWriteRepository)
|
||
|
|
||
|
repoName := "repo20"
|
||
|
|
||
|
req := NewRequestf(t, "GET", "/api/v1/repos/user2/%s/compare/add-csv...remove-files-b", repoName).
|
||
|
AddTokenAuth(token)
|
||
|
resp := MakeRequest(t, req, http.StatusOK)
|
||
|
|
||
|
var apiResp *api.Compare
|
||
|
DecodeJSON(t, resp, &apiResp)
|
||
|
|
||
|
assert.Equal(t, 2, apiResp.TotalCommits)
|
||
|
assert.Len(t, apiResp.Commits, 2)
|
||
|
}
|