@@ -2,13 +2,14 @@ package manifest_test
2
2
3
3
import (
4
4
"errors"
5
+ "strings"
5
6
"testing"
6
7
7
8
"github.com/docker-library/bashbrew/manifest"
8
9
)
9
10
10
11
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" )
12
13
if err == nil {
13
14
t .Fatalf ("expected tag-not-found error, got repoName=%q, tagName=%q instead" , repoName , tagName )
14
15
}
@@ -27,4 +28,40 @@ func TestFetchErrors(t *testing.T) {
27
28
t .Fatalf ("expected manifest-not-found error, got %q instead" , err )
28
29
}
29
30
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 )
30
67
}
0 commit comments