109 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package containerd
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/containerd/containerd/containers"
 | |
| 	"github.com/containerd/containerd/oci"
 | |
| )
 | |
| 
 | |
| func BenchmarkContainerCreate(b *testing.B) {
 | |
| 	client, err := newClient(b, address)
 | |
| 	if err != nil {
 | |
| 		b.Fatal(err)
 | |
| 	}
 | |
| 	defer client.Close()
 | |
| 
 | |
| 	ctx, cancel := testContext()
 | |
| 	defer cancel()
 | |
| 
 | |
| 	image, err := client.GetImage(ctx, testImage)
 | |
| 	if err != nil {
 | |
| 		b.Error(err)
 | |
| 		return
 | |
| 	}
 | |
| 	spec, err := oci.GenerateSpec(ctx, client, &containers.Container{ID: b.Name()}, oci.WithImageConfig(image), withTrue())
 | |
| 	if err != nil {
 | |
| 		b.Error(err)
 | |
| 		return
 | |
| 	}
 | |
| 	var containers []Container
 | |
| 	defer func() {
 | |
| 		for _, c := range containers {
 | |
| 			if err := c.Delete(ctx, WithSnapshotCleanup); err != nil {
 | |
| 				b.Error(err)
 | |
| 			}
 | |
| 		}
 | |
| 	}()
 | |
| 
 | |
| 	// reset the timer before creating containers
 | |
| 	b.ResetTimer()
 | |
| 	for i := 0; i < b.N; i++ {
 | |
| 		id := fmt.Sprintf("%s-%d", b.Name(), i)
 | |
| 		container, err := client.NewContainer(ctx, id, WithSpec(spec), WithNewSnapshot(id, image))
 | |
| 		if err != nil {
 | |
| 			b.Error(err)
 | |
| 			return
 | |
| 		}
 | |
| 		containers = append(containers, container)
 | |
| 	}
 | |
| 	b.StopTimer()
 | |
| }
 | |
| 
 | |
| func BenchmarkContainerStart(b *testing.B) {
 | |
| 	client, err := newClient(b, address)
 | |
| 	if err != nil {
 | |
| 		b.Fatal(err)
 | |
| 	}
 | |
| 	defer client.Close()
 | |
| 
 | |
| 	ctx, cancel := testContext()
 | |
| 	defer cancel()
 | |
| 
 | |
| 	image, err := client.GetImage(ctx, testImage)
 | |
| 	if err != nil {
 | |
| 		b.Error(err)
 | |
| 		return
 | |
| 	}
 | |
| 	spec, err := oci.GenerateSpec(ctx, client, &containers.Container{ID: b.Name()}, oci.WithImageConfig(image), withTrue())
 | |
| 	if err != nil {
 | |
| 		b.Error(err)
 | |
| 		return
 | |
| 	}
 | |
| 	var containers []Container
 | |
| 	defer func() {
 | |
| 		for _, c := range containers {
 | |
| 			if err := c.Delete(ctx, WithSnapshotCleanup); err != nil {
 | |
| 				b.Error(err)
 | |
| 			}
 | |
| 		}
 | |
| 	}()
 | |
| 
 | |
| 	for i := 0; i < b.N; i++ {
 | |
| 		id := fmt.Sprintf("%s-%d", b.Name(), i)
 | |
| 		container, err := client.NewContainer(ctx, id, WithSpec(spec), WithNewSnapshot(id, image))
 | |
| 		if err != nil {
 | |
| 			b.Error(err)
 | |
| 			return
 | |
| 		}
 | |
| 		containers = append(containers, container)
 | |
| 
 | |
| 	}
 | |
| 	// reset the timer before starting tasks
 | |
| 	b.ResetTimer()
 | |
| 	for _, c := range containers {
 | |
| 		task, err := c.NewTask(ctx, empty())
 | |
| 		if err != nil {
 | |
| 			b.Error(err)
 | |
| 			return
 | |
| 		}
 | |
| 		defer task.Delete(ctx)
 | |
| 		if err := task.Start(ctx); err != nil {
 | |
| 			b.Error(err)
 | |
| 			return
 | |
| 		}
 | |
| 	}
 | |
| 	b.StopTimer()
 | |
| }
 | 
