Skip to content

Commit f95be1e

Browse files
authored
Merge pull request #59 from infosiftr/manifest-tests
Add more test coverage for manifest/
2 parents 6acd73c + 419da33 commit f95be1e

File tree

3 files changed

+43
-2
lines changed

3 files changed

+43
-2
lines changed

manifest/example_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ GitCommit: d7e2a8d90a9b8f5dfd5bcd428e0c33b68c40cc19
5959
Directory: 1.5
6060
File: Dockerfile.alpine
6161
s390x-File: Dockerfile.alpine.s390x.bad-boy
62+
Builder: buildkit
63+
GitFetch: refs/heads/having-a-good-time
6264
6365
SharedTags: raspbian
6466
GitCommit: deadbeefdeadbeefdeadbeefdeadbeefdeadbeef
@@ -105,9 +107,11 @@ s390x-File: Dockerfile
105107
// s390x-GitCommit: b6c460e7cd79b595267870a98013ec3078b490df
106108
//
107109
// Tags: 1.5-alpine
110+
// GitFetch: refs/heads/having-a-good-time
108111
// GitCommit: d7e2a8d90a9b8f5dfd5bcd428e0c33b68c40cc19
109112
// Directory: 1.5
110113
// File: Dockerfile.alpine
114+
// Builder: buildkit
111115
// s390x-File: Dockerfile.alpine.s390x.bad-boy
112116
//
113117
// Tags: raspbian-s390x

manifest/fetch.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func Fetch(library, repo string) (string, string, *Manifest2822, error) {
6868

6969
// try file paths
7070
filePaths := []string{}
71-
if filepath.IsAbs(repo) || strings.IndexRune(repo, filepath.Separator) >= 0 || strings.IndexRune(repo, '/') >= 0 {
71+
if filepath.IsAbs(repo) || strings.ContainsRune(repo, filepath.Separator) || strings.ContainsRune(repo, '/') {
7272
filePaths = append(filePaths, repo)
7373
}
7474
if !filepath.IsAbs(repo) {

manifest/fetch_test.go

+38-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ package manifest_test
22

33
import (
44
"errors"
5+
"strings"
56
"testing"
67

78
"github.com/docker-library/bashbrew/manifest"
89
)
910

1011
func TestFetchErrors(t *testing.T) {
11-
repoName, tagName, _, err := manifest.Fetch("testdata", "bash:69.420")
12+
repoName, tagName, _, err := manifest.Fetch("/dev/null", "testdata/bash:69.420")
1213
if err == nil {
1314
t.Fatalf("expected tag-not-found error, got repoName=%q, tagName=%q instead", repoName, tagName)
1415
}
@@ -27,4 +28,40 @@ func TestFetchErrors(t *testing.T) {
2728
t.Fatalf("expected manifest-not-found error, got %q instead", err)
2829
}
2930
t.Logf("correct, expected error: %s", err)
31+
32+
repoName, tagName, _, err = manifest.Fetch("/dev/null", "/proc/kmsg")
33+
if err == nil {
34+
t.Fatalf("expected filesystem error, got repoName=%q, tagName=%q instead", repoName, tagName)
35+
}
36+
if !strings.Contains(err.Error(), "permission denied") && !strings.Contains(err.Error(), "not permitted") {
37+
t.Fatalf("expected filesystem error, got %q instead", err)
38+
}
39+
t.Logf("correct, expected error: %s", err)
40+
41+
repoName, tagName, _, err = manifest.Fetch("/dev/null", "./testdata")
42+
if err == nil {
43+
t.Fatalf("expected directory error, got repoName=%q, tagName=%q instead", repoName, tagName)
44+
}
45+
if !strings.Contains(err.Error(), "is a directory") {
46+
t.Fatalf("expected directory error, got %q instead", err)
47+
}
48+
t.Logf("correct, expected error: %s", err)
49+
50+
repoName, tagName, _, err = manifest.Fetch("/dev/null", "https://nonexistent.subdomain.example.com/nonexistent-project:1.2.3")
51+
if err == nil {
52+
t.Fatalf("expected no such host error, got repoName=%q, tagName=%q instead", repoName, tagName)
53+
}
54+
if !strings.Contains(err.Error(), "no such host") {
55+
t.Fatalf("expected no such host error, got %q instead", err)
56+
}
57+
t.Logf("correct, expected error: %s", err)
58+
59+
repoName, tagName, _, err = manifest.Fetch("/dev/null", "https://example.com:1.2.3")
60+
if err == nil {
61+
t.Fatalf("expected parse error, got repoName=%q, tagName=%q instead", repoName, tagName)
62+
}
63+
if !strings.HasPrefix(err.Error(), "Bad line:") {
64+
t.Fatalf("expected parse error, got %q instead", err)
65+
}
66+
t.Logf("correct, expected error: %s", err)
3067
}

0 commit comments

Comments
 (0)