Dagger
Search

cwlbraa-benchmarks

This module contains a series of functions intended to stress the engine in various ways.

Many are adapted from Dagger's core integration tests.

Installation

dagger install github.com/cwlbraa/cwlbraa-daggerverse/benchmarks@47053cc713986ca54afe99df6e50395b9ffff4c2

Entrypoint

Return Type
CwlbraaBenchmarks
Example
dagger -m github.com/cwlbraa/cwlbraa-daggerverse/benchmarks@47053cc713986ca54afe99df6e50395b9ffff4c2 call \
func (m *myModule) example() *CwlbraaBenchmarks  {
	return dag.
			CwlbraaBenchmarks()
}
@function
def example() -> dag.CwlbraaBenchmarks:
	return (
		dag.cwlbraa_benchmarks()
	)
@func()
example(): CwlbraaBenchmarks {
	return dag
		.cwlbraaBenchmarks()
}

Types

CwlbraaBenchmarks 🔗

ioTest() 🔗

Return Type
Void !
Example
dagger -m github.com/cwlbraa/cwlbraa-daggerverse/benchmarks@47053cc713986ca54afe99df6e50395b9ffff4c2 call \
 io-test
func (m *myModule) example(ctx context.Context)   {
	return dag.
			CwlbraaBenchmarks().
			IoTest(ctx)
}
@function
async def example() -> None:
	return await (
		dag.cwlbraa_benchmarks()
		.io_test()
	)
@func()
async example(): Promise<void> {
	return dag
		.cwlbraaBenchmarks()
		.ioTest()
}

containerEcho() 🔗

Returns a container that echoes whatever string argument is provided

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
stringArgString !-No description provided
Example
dagger -m github.com/cwlbraa/cwlbraa-daggerverse/benchmarks@47053cc713986ca54afe99df6e50395b9ffff4c2 call \
 container-echo --string-arg string
func (m *myModule) example(stringArg string) *Container  {
	return dag.
			CwlbraaBenchmarks().
			ContainerEcho(stringArg)
}
@function
def example(string_arg: str) -> dagger.Container:
	return (
		dag.cwlbraa_benchmarks()
		.container_echo(string_arg)
	)
@func()
example(stringArg: string): Container {
	return dag
		.cwlbraaBenchmarks()
		.containerEcho(stringArg)
}

benchmarkEcho() 🔗

Return Type
Void !
Example
dagger -m github.com/cwlbraa/cwlbraa-daggerverse/benchmarks@47053cc713986ca54afe99df6e50395b9ffff4c2 call \
 benchmark-echo
func (m *myModule) example(ctx context.Context)   {
	return dag.
			CwlbraaBenchmarks().
			BenchmarkEcho(ctx)
}
@function
async def example() -> None:
	return await (
		dag.cwlbraa_benchmarks()
		.benchmark_echo()
	)
@func()
async example(): Promise<void> {
	return dag
		.cwlbraaBenchmarks()
		.benchmarkEcho()
}

benchmarkModules() 🔗

CwlbraaBenchmarksModules creates a stack of nested Dagger modules to benchmark performance

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
cliBinFile !-No description provided
Example
dagger -m github.com/cwlbraa/cwlbraa-daggerverse/benchmarks@47053cc713986ca54afe99df6e50395b9ffff4c2 call \
 benchmark-modules --cli-bin file:path
func (m *myModule) example(cliBin *File) *Directory  {
	return dag.
			CwlbraaBenchmarks().
			BenchmarkModules(cliBin)
}
@function
def example(cli_bin: dagger.File) -> dagger.Directory:
	return (
		dag.cwlbraa_benchmarks()
		.benchmark_modules(cli_bin)
	)
@func()
example(cliBin: File): Directory {
	return dag
		.cwlbraaBenchmarks()
		.benchmarkModules(cliBin)
}

testPacketLoss() 🔗

Return Type
String !
Example
dagger -m github.com/cwlbraa/cwlbraa-daggerverse/benchmarks@47053cc713986ca54afe99df6e50395b9ffff4c2 call \
 test-packet-loss
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			CwlbraaBenchmarks().
			TestPacketLoss(ctx)
}
@function
async def example() -> str:
	return await (
		dag.cwlbraa_benchmarks()
		.test_packet_loss()
	)
@func()
async example(): Promise<string> {
	return dag
		.cwlbraaBenchmarks()
		.testPacketLoss()
}