...

Package testdriver

import "github.com/docker/distribution/registry/storage/driver/testdriver"
Overview
Index

Overview ▾

type TestDriver

TestDriver is a StorageDriver for testing purposes. The Writer returned by this driver simulates the case where Write operations are buffered. This causes the value returned by Size to lag behind until Close (or Commit, or Cancel) is called.

type TestDriver struct {
    storagedriver.StorageDriver
}

func New

func New() *TestDriver

New constructs a new StorageDriver for testing purposes. The Writer returned by this driver simulates the case where Write operations are buffered. This causes the value returned by Size to lag behind until Close (or Commit, or Cancel) is called.

func (*TestDriver) Writer

func (td *TestDriver) Writer(ctx context.Context, path string, append bool) (storagedriver.FileWriter, error)

Writer returns a FileWriter which will store the content written to it at the location designated by "path" after the call to Commit.