123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- package main
- import (
- "fmt"
- "io/ioutil"
- "net/http"
- "os"
- "os/exec"
- "path/filepath"
- "github.com/docker/distribution/digest"
- "github.com/go-check/check"
- )
- const (
- v2binary = "registry-v2"
- v2binarySchema1 = "registry-v2-schema1"
- )
- type testRegistryV2 struct {
- cmd *exec.Cmd
- dir string
- auth string
- username string
- password string
- email string
- }
- func newTestRegistryV2(c *check.C, schema1 bool, auth, tokenURL string) (*testRegistryV2, error) {
- tmp, err := ioutil.TempDir("", "registry-test-")
- if err != nil {
- return nil, err
- }
- template := `version: 0.1
- loglevel: debug
- storage:
- filesystem:
- rootdirectory: %s
- http:
- addr: %s
- %s`
- var (
- authTemplate string
- username string
- password string
- email string
- )
- switch auth {
- case "htpasswd":
- htpasswdPath := filepath.Join(tmp, "htpasswd")
- // generated with: htpasswd -Bbn testuser testpassword
- userpasswd := "testuser:$2y$05$sBsSqk0OpSD1uTZkHXc4FeJ0Z70wLQdAX/82UiHuQOKbNbBrzs63m"
- username = "testuser"
- password = "testpassword"
- email = "test@test.org"
- if err := ioutil.WriteFile(htpasswdPath, []byte(userpasswd), os.FileMode(0644)); err != nil {
- return nil, err
- }
- authTemplate = fmt.Sprintf(`auth:
- htpasswd:
- realm: basic-realm
- path: %s
- `, htpasswdPath)
- case "token":
- authTemplate = fmt.Sprintf(`auth:
- token:
- realm: %s
- service: "registry"
- issuer: "auth-registry"
- rootcertbundle: "fixtures/registry/cert.pem"
- `, tokenURL)
- }
- confPath := filepath.Join(tmp, "config.yaml")
- config, err := os.Create(confPath)
- if err != nil {
- return nil, err
- }
- if _, err := fmt.Fprintf(config, template, tmp, privateRegistryURL, authTemplate); err != nil {
- os.RemoveAll(tmp)
- return nil, err
- }
- binary := v2binary
- if schema1 {
- binary = v2binarySchema1
- }
- cmd := exec.Command(binary, confPath)
- if err := cmd.Start(); err != nil {
- os.RemoveAll(tmp)
- if os.IsNotExist(err) {
- c.Skip(err.Error())
- }
- return nil, err
- }
- return &testRegistryV2{
- cmd: cmd,
- dir: tmp,
- auth: auth,
- username: username,
- password: password,
- email: email,
- }, nil
- }
- func (t *testRegistryV2) Ping() error {
- // We always ping through HTTP for our test registry.
- resp, err := http.Get(fmt.Sprintf("http://%s/v2/", privateRegistryURL))
- if err != nil {
- return err
- }
- resp.Body.Close()
- fail := resp.StatusCode != http.StatusOK
- if t.auth != "" {
- // unauthorized is a _good_ status when pinging v2/ and it needs auth
- fail = fail && resp.StatusCode != http.StatusUnauthorized
- }
- if fail {
- return fmt.Errorf("registry ping replied with an unexpected status code %d", resp.StatusCode)
- }
- return nil
- }
- func (t *testRegistryV2) Close() {
- t.cmd.Process.Kill()
- os.RemoveAll(t.dir)
- }
- func (t *testRegistryV2) getBlobFilename(blobDigest digest.Digest) string {
- // Split the digest into its algorithm and hex components.
- dgstAlg, dgstHex := blobDigest.Algorithm(), blobDigest.Hex()
- // The path to the target blob data looks something like:
- // baseDir + "docker/registry/v2/blobs/sha256/a3/a3ed...46d4/data"
- return fmt.Sprintf("%s/docker/registry/v2/blobs/%s/%s/%s/data", t.dir, dgstAlg, dgstHex[:2], dgstHex)
- }
- func (t *testRegistryV2) readBlobContents(c *check.C, blobDigest digest.Digest) []byte {
- // Load the target manifest blob.
- manifestBlob, err := ioutil.ReadFile(t.getBlobFilename(blobDigest))
- if err != nil {
- c.Fatalf("unable to read blob: %s", err)
- }
- return manifestBlob
- }
- func (t *testRegistryV2) writeBlobContents(c *check.C, blobDigest digest.Digest, data []byte) {
- if err := ioutil.WriteFile(t.getBlobFilename(blobDigest), data, os.FileMode(0644)); err != nil {
- c.Fatalf("unable to write malicious data blob: %s", err)
- }
- }
- func (t *testRegistryV2) tempMoveBlobData(c *check.C, blobDigest digest.Digest) (undo func()) {
- tempFile, err := ioutil.TempFile("", "registry-temp-blob-")
- if err != nil {
- c.Fatalf("unable to get temporary blob file: %s", err)
- }
- tempFile.Close()
- blobFilename := t.getBlobFilename(blobDigest)
- // Move the existing data file aside, so that we can replace it with a
- // another blob of data.
- if err := os.Rename(blobFilename, tempFile.Name()); err != nil {
- os.Remove(tempFile.Name())
- c.Fatalf("unable to move data blob: %s", err)
- }
- return func() {
- os.Rename(tempFile.Name(), blobFilename)
- os.Remove(tempFile.Name())
- }
- }
|