Просмотр исходного кода

Merge pull request #19219 from runcom/add-log

integration-cli: log error when starting registry
David Calavera 9 лет назад
Родитель
Сommit
b63b43dc4c

+ 1 - 1
integration-cli/docker_cli_by_digest_test.go

@@ -19,7 +19,7 @@ import (
 
 
 var (
 var (
 	remoteRepoName  = "dockercli/busybox-by-dgst"
 	remoteRepoName  = "dockercli/busybox-by-dgst"
-	repoName        = fmt.Sprintf("%v/%s", privateRegistryURL, remoteRepoName)
+	repoName        = fmt.Sprintf("%s/%s", privateRegistryURL, remoteRepoName)
 	pushDigestRegex = regexp.MustCompile("[\\S]+: digest: ([\\S]+) size: [0-9]+")
 	pushDigestRegex = regexp.MustCompile("[\\S]+: digest: ([\\S]+) size: [0-9]+")
 	digestRegex     = regexp.MustCompile("Digest: ([\\S]+)")
 	digestRegex     = regexp.MustCompile("Digest: ([\\S]+)")
 )
 )

+ 1 - 1
integration-cli/docker_utils.go

@@ -1567,7 +1567,7 @@ func setupRegistry(c *check.C, schema1 bool) *testRegistryV2 {
 		time.Sleep(100 * time.Millisecond)
 		time.Sleep(100 * time.Millisecond)
 	}
 	}
 
 
-	c.Assert(err, check.IsNil, check.Commentf("Timeout waiting for test registry to become available"))
+	c.Assert(err, check.IsNil, check.Commentf("Timeout waiting for test registry to become available: %v", err))
 	return reg
 	return reg
 }
 }
 
 

+ 1 - 1
integration-cli/registry.go

@@ -68,7 +68,7 @@ func (t *testRegistryV2) Ping() error {
 	if err != nil {
 	if err != nil {
 		return err
 		return err
 	}
 	}
-	if resp.StatusCode != 200 {
+	if resp.StatusCode != http.StatusOK {
 		return fmt.Errorf("registry ping replied with an unexpected status code %d", resp.StatusCode)
 		return fmt.Errorf("registry ping replied with an unexpected status code %d", resp.StatusCode)
 	}
 	}
 	return nil
 	return nil

+ 0 - 1
integration-cli/registry_mock.go

@@ -37,7 +37,6 @@ func newTestRegistry(c *check.C) (*testRegistry, error) {
 			matched, err = regexp.MatchString(re, url)
 			matched, err = regexp.MatchString(re, url)
 			if err != nil {
 			if err != nil {
 				c.Fatal("Error with handler regexp")
 				c.Fatal("Error with handler regexp")
-				return
 			}
 			}
 			if matched {
 			if matched {
 				function(w, r)
 				function(w, r)