Allows running tests which require labels on the content store Signed-off-by: Derek McGowan <derek@mcgstyle.net>
		
			
				
	
	
		
			34 lines
		
	
	
		
			754 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			754 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package metadata
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"path/filepath"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/boltdb/bolt"
 | 
						|
	"github.com/containerd/containerd/content"
 | 
						|
	"github.com/containerd/containerd/content/local"
 | 
						|
	"github.com/containerd/containerd/content/testsuite"
 | 
						|
)
 | 
						|
 | 
						|
func createContentStore(ctx context.Context, root string) (content.Store, func() error, error) {
 | 
						|
	// TODO: Use mocked or in-memory store
 | 
						|
	cs, err := local.NewStore(root)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	db, err := bolt.Open(filepath.Join(root, "metadata.db"), 0660, nil)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	return NewDB(db, cs, nil).ContentStore(), func() error {
 | 
						|
		return db.Close()
 | 
						|
	}, nil
 | 
						|
}
 | 
						|
 | 
						|
func TestContent(t *testing.T) {
 | 
						|
	testsuite.ContentSuite(t, "metadata", createContentStore)
 | 
						|
}
 |