Jelajahi Sumber

test(downloads): remove non reproducible tests

jguer 3 tahun lalu
induk
melakukan
4a515c4462
2 mengubah file dengan 0 tambahan dan 46 penghapusan
  1. 0 23
      pkg/download/abs_test.go
  2. 0 23
      pkg/download/aur_test.go

+ 0 - 23
pkg/download/abs_test.go

@@ -205,29 +205,6 @@ func TestABSPKGBUILDRepo(t *testing.T) {
 	assert.NoError(t, err)
 }
 
-// GIVEN a previous existing folder without permissions
-// WHEN ABSPKGBUILDRepo is called
-// THEN a clone command should be formed
-func TestABSPKGBUILDRepoExistsNoPerms(t *testing.T) {
-	dir, _ := ioutil.TempDir("/tmp/", "yay-test")
-	defer os.RemoveAll(dir)
-
-	os.MkdirAll(filepath.Join(dir, "linux", ".git"), 0o600)
-
-	cmdRunner := &testRunner{}
-	cmdBuilder := &testGitBuilder{
-		index: 0,
-		test:  t,
-		parentBuilder: &exe.CmdBuilder{
-			GitBin:   "/usr/local/bin/git",
-			GitFlags: []string{"--no-replace-objects"},
-		},
-	}
-	err := ABSPKGBUILDRepo(cmdRunner, cmdBuilder, "core", "linux", dir, false)
-	assert.Error(t, err)
-	assert.Contains(t, err.Error(), "error fetching linux: error reading")
-}
-
 // GIVEN a previous existing folder with permissions
 // WHEN ABSPKGBUILDRepo is called
 // THEN a pull command should be formed

+ 0 - 23
pkg/download/aur_test.go

@@ -88,29 +88,6 @@ func TestAURPKGBUILDRepo(t *testing.T) {
 	assert.NoError(t, err)
 }
 
-// GIVEN a previous existing folder without permissions
-// WHEN AURPKGBUILDRepo is called
-// THEN a clone command should be formed
-func TestAURPKGBUILDRepoExistsNoPerms(t *testing.T) {
-	dir, _ := ioutil.TempDir("/tmp/", "yay-test")
-	defer os.RemoveAll(dir)
-
-	os.MkdirAll(filepath.Join(dir, "yay-bin", ".git"), 0o600)
-
-	cmdRunner := &testRunner{}
-	cmdBuilder := &testGitBuilder{
-		index: 0,
-		test:  t,
-		parentBuilder: &exe.CmdBuilder{
-			GitBin:   "/usr/local/bin/git",
-			GitFlags: []string{"--no-replace-objects"},
-		},
-	}
-	err := AURPKGBUILDRepo(cmdRunner, cmdBuilder, "https://aur.archlinux.org", "yay-bin", dir, false)
-	assert.Error(t, err)
-	assert.Contains(t, err.Error(), "error fetching yay-bin: error reading")
-}
-
 // GIVEN a previous existing folder with permissions
 // WHEN AURPKGBUILDRepo is called
 // THEN a pull command should be formed