tests: ensure proper garbage collection
- Ensure the proper path is garbage collected for libgit2 repositories, as the `Path` method on the repository object returns the `.git` directory, and not the root path. - Ensure the Helm test server does not get swapped during tests, with as side-effect that no obsolete temporary directories remain. Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
448d5e7afa
commit
cc71517ed3
|
@ -79,8 +79,8 @@ var _ = Describe("HelmChartReconciler", func() {
|
|||
})
|
||||
|
||||
AfterEach(func() {
|
||||
os.RemoveAll(helmServer.Root())
|
||||
helmServer.Stop()
|
||||
os.RemoveAll(helmServer.Root())
|
||||
|
||||
err = k8sClient.Delete(context.Background(), namespace)
|
||||
Expect(err).NotTo(HaveOccurred(), "failed to delete test namespace")
|
||||
|
@ -995,8 +995,8 @@ var _ = Describe("HelmChartReconciler", func() {
|
|||
gitServer.StopHTTP()
|
||||
os.RemoveAll(gitServer.Root())
|
||||
|
||||
os.RemoveAll(helmServer.Root())
|
||||
helmServer.Stop()
|
||||
os.RemoveAll(helmServer.Root())
|
||||
|
||||
err = k8sClient.Delete(context.Background(), namespace)
|
||||
Expect(err).NotTo(HaveOccurred(), "failed to delete test namespace")
|
||||
|
|
|
@ -64,8 +64,8 @@ var _ = Describe("HelmRepositoryReconciler", func() {
|
|||
})
|
||||
|
||||
AfterEach(func() {
|
||||
os.RemoveAll(helmServer.Root())
|
||||
helmServer.Stop()
|
||||
os.RemoveAll(helmServer.Root())
|
||||
|
||||
Eventually(func() error {
|
||||
return k8sClient.Delete(context.Background(), namespace)
|
||||
|
@ -207,9 +207,6 @@ var _ = Describe("HelmRepositoryReconciler", func() {
|
|||
})
|
||||
|
||||
It("Authenticates when basic auth credentials are provided", func() {
|
||||
helmServer, err = helmtestserver.NewTempHelmServer()
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
|
||||
var username, password = "john", "doe"
|
||||
helmServer.WithMiddleware(func(handler http.Handler) http.Handler {
|
||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
|
@ -221,8 +218,6 @@ var _ = Describe("HelmRepositoryReconciler", func() {
|
|||
handler.ServeHTTP(w, r)
|
||||
})
|
||||
})
|
||||
defer os.RemoveAll(helmServer.Root())
|
||||
defer helmServer.Stop()
|
||||
helmServer.Start()
|
||||
|
||||
Expect(helmServer.PackageChart(path.Join("testdata/charts/helmchart"))).Should(Succeed())
|
||||
|
|
|
@ -34,6 +34,8 @@ func TestCheckoutBranch_Checkout(t *testing.T) {
|
|||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
defer repo.Free()
|
||||
defer os.RemoveAll(filepath.Join(repo.Path(), ".."))
|
||||
|
||||
firstCommit, err := commitFile(repo, "branch", "init", time.Now())
|
||||
if err != nil {
|
||||
|
@ -131,6 +133,8 @@ func TestCheckoutTag_Checkout(t *testing.T) {
|
|||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
defer repo.Free()
|
||||
defer os.RemoveAll(filepath.Join(repo.Path(), ".."))
|
||||
|
||||
var commit *git2go.Commit
|
||||
if tt.tag != "" {
|
||||
|
@ -177,7 +181,7 @@ func TestCheckoutCommit_Checkout(t *testing.T) {
|
|||
t.Fatal(err)
|
||||
}
|
||||
defer repo.Free()
|
||||
defer os.RemoveAll(repo.Path())
|
||||
defer os.RemoveAll(filepath.Join(repo.Path(), ".."))
|
||||
|
||||
c, err := commitFile(repo, "commit", "init", time.Now())
|
||||
if err != nil {
|
||||
|
@ -190,7 +194,10 @@ func TestCheckoutCommit_Checkout(t *testing.T) {
|
|||
commit := CheckoutCommit{
|
||||
Commit: c.String(),
|
||||
}
|
||||
tmpDir, _ := os.MkdirTemp("", "git2go")
|
||||
tmpDir, err := os.MkdirTemp("", "git2go")
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
defer os.RemoveAll(tmpDir)
|
||||
|
||||
cc, err := commit.Checkout(context.TODO(), tmpDir, repo.Path(), nil)
|
||||
|
@ -203,8 +210,11 @@ func TestCheckoutCommit_Checkout(t *testing.T) {
|
|||
commit = CheckoutCommit{
|
||||
Commit: "4dc3185c5fc94eb75048376edeb44571cece25f4",
|
||||
}
|
||||
tmpDir2, _ := os.MkdirTemp("", "git2go")
|
||||
defer os.RemoveAll(tmpDir)
|
||||
tmpDir2, err := os.MkdirTemp("", "git2go")
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
defer os.RemoveAll(tmpDir2)
|
||||
|
||||
cc, err = commit.Checkout(context.TODO(), tmpDir2, repo.Path(), nil)
|
||||
g.Expect(err).To(HaveOccurred())
|
||||
|
@ -279,7 +289,7 @@ func TestCheckoutTagSemVer_Checkout(t *testing.T) {
|
|||
t.Fatal(err)
|
||||
}
|
||||
defer repo.Free()
|
||||
defer os.RemoveAll(repo.Path())
|
||||
defer os.RemoveAll(filepath.Join(repo.Path(), ".."))
|
||||
|
||||
refs := make(map[string]string, len(tags))
|
||||
for _, tt := range tags {
|
||||
|
|
Loading…
Reference in New Issue