mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 14:29:40 +02:00
* feat(git): save git config when creating stack (#5048) * feat(git): save git config when creating stack * chore(fs): test fileExists * fix(git): fix tests to use CloneRepository * refactor(git): move options to new object * feat(stacks): redeploy git stack api (#5112) * feat(stacks): redeploy git stacks form [EE-666] * feat(stack): show loading after confirmation * fix(stacks): show same size description * fix(stacks): reload state when deployed * feat(stacks): set stopped stacks status to activate when updating * feat(stacks): backup stack folder before cloning * feat(stacks): don't accept prune and env on update git Co-authored-by: Chaim Lev-Ari <chiptus@users.noreply.github.com> Co-authored-by: Chaim Lev-Ari <chiptus@gmail.com>
27 lines
683 B
Go
27 lines
683 B
Go
package git
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/pkg/ioutils"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestService_ClonePrivateRepository_GitHub(t *testing.T) {
|
|
ensureIntegrationTest(t)
|
|
|
|
pat := getRequiredValue(t, "GITHUB_PAT")
|
|
username := getRequiredValue(t, "GITHUB_USERNAME")
|
|
service := NewService()
|
|
|
|
dst, err := ioutils.TempDir("", "clone")
|
|
assert.NoError(t, err)
|
|
defer os.RemoveAll(dst)
|
|
|
|
repositoryUrl := "https://github.com/portainer/private-test-repository.git"
|
|
err = service.CloneRepository(dst, repositoryUrl, "refs/heads/main", username, pat)
|
|
assert.NoError(t, err)
|
|
assert.FileExists(t, filepath.Join(dst, "README.md"))
|
|
}
|