GCloud¶
Since testcontainers-go v0.25.0
Introduction¶
The Testcontainers module for GCloud.
Adding this module to your project dependencies¶
Please run the following command to add the GCloud module to your Go dependencies:
go get github.com/testcontainers/testcontainers-go/modules/gcloud
Usage example¶
The Google Cloud module exposes the following Go packages:
- BigQuery:
github.com/testcontainers/testcontainers-go/modules/gcloud/bigquery
. - BigTable:
github.com/testcontainers/testcontainers-go/modules/gcloud/bigtable
. - Datastore:
github.com/testcontainers/testcontainers-go/modules/gcloud/datastore
. - Firestore:
github.com/testcontainers/testcontainers-go/modules/gcloud/firestore
. - Pubsub:
github.com/testcontainers/testcontainers-go/modules/gcloud/pubsub
. - Spanner:
github.com/testcontainers/testcontainers-go/modules/gcloud/spanner
.
Info
By default, the all the emulators use gcr.io/google.com/cloudsdktool/cloud-sdk:367.0.0-emulators
as the default Docker image, except for the BigQuery emulator, which uses ghcr.io/goccy/bigquery-emulator:0.6.1
, and Spanner, which uses gcr.io/cloud-spanner-emulator/emulator:1.4.0
.
BigQuery¶
Run function¶
- Not available until the next release of testcontainers-go main
The BigQuery module exposes one entrypoint function to create the BigQuery container, and this function receives three parameters:
func Run(ctx context.Context, img string, opts ...testcontainers.ContainerCustomizer) (*Container, error)
context.Context
, the Go context.string
, the Docker image to use.testcontainers.ContainerCustomizer
, a variadic argument for passing options.
Container Options¶
When starting the BigQuery container, you can pass options in a variadic way to configure it.
Image¶
Use the second argument in the Run
function to set a valid Docker image.
In example: Run(context.Background(), "ghcr.io/goccy/bigquery-emulator:0.6.1")
.
Image Substitutions¶
- Since testcontainers-go v0.26.0
In more locked down / secured environments, it can be problematic to pull images from Docker Hub and run them without additional precautions.
An image name substitutor converts a Docker image name, as may be specified in code, to an alternative name. This is intended to provide a way to override image names, for example to enforce pulling of images from a private registry.
Testcontainers for Go exposes an interface to perform this operation: ImageSubstitutor
, and a No-operation implementation to be used as reference for custom implementations:
// ImageSubstitutor represents a way to substitute container image names
type ImageSubstitutor interface {
// Description returns the name of the type and a short description of how it modifies the image.
// Useful to be printed in logs
Description() string
Substitute(image string) (string, error)
}
type NoopImageSubstitutor struct{}
// Description returns a description of what is expected from this Substitutor,
// which is used in logs.
func (s NoopImageSubstitutor) Description() string {
return "NoopImageSubstitutor (noop)"
}
// Substitute returns the original image, without any change
func (s NoopImageSubstitutor) Substitute(image string) (string, error) {
return image, nil
}
Using the WithImageSubstitutors
options, you could define your own substitutions to the container images. E.g. adding a prefix to the images so that they can be pulled from a Docker registry other than Docker Hub. This is the usual mechanism for using Docker image proxies, caches, etc.
WithEnv¶
- Since testcontainers-go v0.29.0
If you need to either pass additional environment variables to a container or override them, you can use testcontainers.WithEnv
for example:
ctr, err = mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithEnv(map[string]string{"FOO": "BAR"}))
WithExposedPorts¶
- Not available until the next release of testcontainers-go main
If you need to expose additional ports from the container, you can use testcontainers.WithExposedPorts
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithExposedPorts("8080/tcp", "9090/tcp"))
WithEntrypoint¶
- Not available until the next release of testcontainers-go main
If you need to completely replace the container's entrypoint, you can use testcontainers.WithEntrypoint
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithEntrypoint("/bin/sh", "-c", "echo hello"))
WithEntrypointArgs¶
- Not available until the next release of testcontainers-go main
If you need to append commands to the container's entrypoint, you can use testcontainers.WithEntrypointArgs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithEntrypointArgs("echo", "hello"))
WithCmd¶
- Not available until the next release of testcontainers-go main
If you need to completely replace the container's command, you can use testcontainers.WithCmd
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithCmd("echo", "hello"))
WithCmdArgs¶
- Not available until the next release of testcontainers-go main
If you need to append commands to the container's command, you can use testcontainers.WithCmdArgs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithCmdArgs("echo", "hello"))
WithLabels¶
- Not available until the next release of testcontainers-go main
If you need to add Docker labels to the container, you can use testcontainers.WithLabels
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithLabels(map[string]string{
"environment": "testing",
"project": "myapp",
}))
WithFiles¶
- Not available until the next release of testcontainers-go main
If you need to copy files into the container, you can use testcontainers.WithFiles
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithFiles([]testcontainers.ContainerFile{
{
HostFilePath: "/path/to/local/file.txt",
ContainerFilePath: "/container/file.txt",
FileMode: 0o644,
},
}))
This option allows you to copy files from the host into the container at creation time.
WithMounts¶
- Not available until the next release of testcontainers-go main
If you need to add volume mounts to the container, you can use testcontainers.WithMounts
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithMounts([]testcontainers.ContainerMount{
{
Source: testcontainers.GenericVolumeMountSource{Name: "appdata"},
Target: "/app/data",
},
}))
WithTmpfs¶
- Not available until the next release of testcontainers-go main
If you need to add tmpfs mounts to the container, you can use testcontainers.WithTmpfs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithTmpfs(map[string]string{
"/tmp": "size=100m",
"/run": "size=100m",
}))
WithHostPortAccess¶
- Since testcontainers-go v0.31.0
If you need to access a port that is already running in the host, you can use testcontainers.WithHostPortAccess
for example:
ctr, err = mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithHostPortAccess(8080))
To understand more about this feature, please read the Exposing host ports to the container documentation.
WithLogConsumers¶
- Since testcontainers-go v0.28.0
If you need to consume the logs of the container, you can use testcontainers.WithLogConsumers
with a valid log consumer. An example of a log consumer is the following:
type TestLogConsumer struct {
Msgs []string
}
func (g *TestLogConsumer) Accept(l Log) {
g.Msgs = append(g.Msgs, string(l.Content))
}
WithLogger¶
- Since testcontainers-go v0.29.0
If you need to either pass logger to a container, you can use testcontainers.WithLogger
.
Info
Consider calling this before other "With" functions as these may generate logs.
In this example we also use the testcontainers-go log.TestLogger
, which writes to the passed in testing.TB
using Logf
.
The result is that we capture all logging from the container into the test context meaning its
hidden behind go test -v
and is associated with the relevant test, providing the user with
useful context instead of appearing out of band.
func TestHandler(t *testing.T) {
logger := log.TestLogger(t)
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithLogger(logger))
CleanupContainer(t, ctr)
require.NoError(t, err)
// Do something with container.
}
Please read the Following Container Logs documentation for more information about creating log consumers.
Wait Strategies¶
If you need to set a different wait strategy for the container, you can use testcontainers.WithWaitStrategy
with a valid wait strategy.
Info
The default deadline for the wait strategy is 60 seconds.
At the same time, it's possible to set a wait strategy and a custom deadline with testcontainers.WithWaitStrategyAndDeadline
.
Startup Commands¶
- Since testcontainers-go v0.25.0
Testcontainers exposes the WithStartupCommand(e ...Executable)
option to run arbitrary commands in the container right after it's started.
Info
To better understand how this feature works, please read the Create containers: Lifecycle Hooks documentation.
It also exports an Executable
interface, defining the following methods:
AsCommand()
, which returns a slice of strings to represent the command and positional arguments to be executed in the container;Options()
, which returns the slice of functional options with the Docker's ExecConfigs used to create the command in the container (the working directory, environment variables, user executing the command, etc) and the possible output format (Multiplexed).
You could use this feature to run a custom script, or to run a command that is not supported by the module right after the container is started.
Ready Commands¶
- Since testcontainers-go v0.28.0
Testcontainers exposes the WithAfterReadyCommand(e ...Executable)
option to run arbitrary commands in the container right after it's ready, which happens when the defined wait strategies have finished with success.
Info
To better understand how this feature works, please read the Create containers: Lifecycle Hooks documentation.
It leverages the Executable
interface to represent the command and positional arguments to be executed in the container.
You could use this feature to run a custom script, or to run a command that is not supported by the module right after the container is ready.
Build from Dockerfile¶
- Not available until the next release of testcontainers-go main
Testcontainers exposes the testcontainers.WithDockerfile
option to build a container from a Dockerfile.
The functional option receives a testcontainers.FromDockerfile
struct that is applied to the container request before starting the container. As a result, the container is built and started in one go.
df := testcontainers.FromDockerfile{
Context: ".",
Dockerfile: "Dockerfile",
Repo: "testcontainers",
Tag: "latest",
BuildArgs: map[string]*string{"ARG1": nil, "ARG2": nil},
}
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithDockerfile(df))
WithNetwork¶
- Since testcontainers-go v0.27.0
By default, the container is started in the default Docker network. If you want to use an already existing Docker network you created in your code, you can use the network.WithNetwork(aliases []string, nw *testcontainers.DockerNetwork)
option, which receives an alias as parameter and your network, attaching the container to it, and setting the network alias for that network.
In the case you need to retrieve the network name, you can simply read it from the struct's Name
field. E.g. nw.Name
.
Warning
This option is not checking whether the network exists or not. If you use a network that doesn't exist, the container will start in the default Docker network, as in the default behavior.
WithNewNetwork¶
- Since testcontainers-go v0.27.0
If you want to attach your containers to a throw-away network, you can use the network.WithNewNetwork(ctx context.Context, aliases []string, opts ...network.NetworkCustomizer)
option, which receives an alias as parameter, creating the new network with a random name, attaching the container to it, and setting the network alias for that network.
In the case you need to retrieve the network name, you can use the Networks(ctx)
method of the Container
interface, right after it's running, which returns a slice of strings with the names of the networks where the container is attached.
Docker type modifiers¶
If you need an advanced configuration for the container, you can leverage the following Docker type modifiers:
testcontainers.WithConfigModifier
testcontainers.WithHostConfigModifier
testcontainers.WithEndpointSettingsModifier
Please read the Create containers: Advanced Settings documentation for more information.
Customising the ContainerRequest¶
This option will merge the customized request into the module's own ContainerRequest
.
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
/* Other module options */
testcontainers.CustomizeRequest(testcontainers.GenericContainerRequest{
ContainerRequest: testcontainers.ContainerRequest{
Cmd: []string{"-c", "log_statement=all"},
},
}),
)
The above example is updating the predefined command of the image, appending them to the module's command.
Info
This can't be used to replace the command, only to append options.
WithProjectID¶
- Not available until the next release of testcontainers-go main
The WithProjectID
function sets the project ID for the Google Cloud container.
Data YAML (Seed File)¶
- Not available until the next release of testcontainers-go main
If you would like to do additional initialization in the BigQuery container, add a data.yaml
file represented by an io.Reader
to the container request with the WithDataYAML
function.
That file is copied after the container is created but before it's started. The startup command then used will look like --project test --data-from-yaml /testcontainers-data.yaml
.
An example of a data.yaml
file that seeds the BigQuery instance with datasets and tables is shown below:
projects:
- id: test
datasets:
- id: dataset1
tables:
- id: table_a
columns:
- name: id
type: INTEGER
- name: name
type: STRING
- name: createdAt
type: TIMESTAMP
data:
- id: 1
name: alice
createdAt: "2022-10-21T00:00:00"
- id: 30
name: bob
createdAt: "2022-10-21T00:00:00"
Examples¶
ctx := context.Background()
bigQueryContainer, err := tcbigquery.Run(
ctx,
"ghcr.io/goccy/bigquery-emulator:0.6.1",
tcbigquery.WithProjectID("bigquery-project"),
)
defer func() {
if err := testcontainers.TerminateContainer(bigQueryContainer); err != nil {
log.Printf("failed to terminate container: %s", err)
}
}()
if err != nil {
log.Printf("failed to run container: %v", err)
return
}
projectID := bigQueryContainer.ProjectID()
opts := []option.ClientOption{
option.WithEndpoint(bigQueryContainer.URI()),
option.WithGRPCDialOption(grpc.WithTransportCredentials(insecure.NewCredentials())),
option.WithoutAuthentication(),
internaloption.SkipDialSettingsValidation(),
}
client, err := bigquery.NewClient(ctx, projectID, opts...)
if err != nil {
log.Printf("failed to create bigquery client: %v", err)
return
}
defer client.Close()
It's important to set the option.WithEndpoint()
option using the container's URI, as shown in the client example above.
BigTable¶
Run function¶
- Not available until the next release of testcontainers-go main
The BigTable module exposes one entrypoint function to create the BigTable container, and this function receives three parameters:
func Run(ctx context.Context, img string, opts ...testcontainers.ContainerCustomizer) (*Container, error)
context.Context
, the Go context.string
, the Docker image to use.testcontainers.ContainerCustomizer
, a variadic argument for passing options.
Container Options¶
When starting the BigTable container, you can pass options in a variadic way to configure it.
Image¶
Use the second argument in the Run
function to set a valid Docker image.
In example: Run(context.Background(), "gcr.io/google.com/cloudsdktool/cloud-sdk:367.0.0-emulators")
.
Image Substitutions¶
- Since testcontainers-go v0.26.0
In more locked down / secured environments, it can be problematic to pull images from Docker Hub and run them without additional precautions.
An image name substitutor converts a Docker image name, as may be specified in code, to an alternative name. This is intended to provide a way to override image names, for example to enforce pulling of images from a private registry.
Testcontainers for Go exposes an interface to perform this operation: ImageSubstitutor
, and a No-operation implementation to be used as reference for custom implementations:
// ImageSubstitutor represents a way to substitute container image names
type ImageSubstitutor interface {
// Description returns the name of the type and a short description of how it modifies the image.
// Useful to be printed in logs
Description() string
Substitute(image string) (string, error)
}
type NoopImageSubstitutor struct{}
// Description returns a description of what is expected from this Substitutor,
// which is used in logs.
func (s NoopImageSubstitutor) Description() string {
return "NoopImageSubstitutor (noop)"
}
// Substitute returns the original image, without any change
func (s NoopImageSubstitutor) Substitute(image string) (string, error) {
return image, nil
}
Using the WithImageSubstitutors
options, you could define your own substitutions to the container images. E.g. adding a prefix to the images so that they can be pulled from a Docker registry other than Docker Hub. This is the usual mechanism for using Docker image proxies, caches, etc.
WithEnv¶
- Since testcontainers-go v0.29.0
If you need to either pass additional environment variables to a container or override them, you can use testcontainers.WithEnv
for example:
ctr, err = mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithEnv(map[string]string{"FOO": "BAR"}))
WithExposedPorts¶
- Not available until the next release of testcontainers-go main
If you need to expose additional ports from the container, you can use testcontainers.WithExposedPorts
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithExposedPorts("8080/tcp", "9090/tcp"))
WithEntrypoint¶
- Not available until the next release of testcontainers-go main
If you need to completely replace the container's entrypoint, you can use testcontainers.WithEntrypoint
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithEntrypoint("/bin/sh", "-c", "echo hello"))
WithEntrypointArgs¶
- Not available until the next release of testcontainers-go main
If you need to append commands to the container's entrypoint, you can use testcontainers.WithEntrypointArgs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithEntrypointArgs("echo", "hello"))
WithCmd¶
- Not available until the next release of testcontainers-go main
If you need to completely replace the container's command, you can use testcontainers.WithCmd
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithCmd("echo", "hello"))
WithCmdArgs¶
- Not available until the next release of testcontainers-go main
If you need to append commands to the container's command, you can use testcontainers.WithCmdArgs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithCmdArgs("echo", "hello"))
WithLabels¶
- Not available until the next release of testcontainers-go main
If you need to add Docker labels to the container, you can use testcontainers.WithLabels
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithLabels(map[string]string{
"environment": "testing",
"project": "myapp",
}))
WithFiles¶
- Not available until the next release of testcontainers-go main
If you need to copy files into the container, you can use testcontainers.WithFiles
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithFiles([]testcontainers.ContainerFile{
{
HostFilePath: "/path/to/local/file.txt",
ContainerFilePath: "/container/file.txt",
FileMode: 0o644,
},
}))
This option allows you to copy files from the host into the container at creation time.
WithMounts¶
- Not available until the next release of testcontainers-go main
If you need to add volume mounts to the container, you can use testcontainers.WithMounts
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithMounts([]testcontainers.ContainerMount{
{
Source: testcontainers.GenericVolumeMountSource{Name: "appdata"},
Target: "/app/data",
},
}))
WithTmpfs¶
- Not available until the next release of testcontainers-go main
If you need to add tmpfs mounts to the container, you can use testcontainers.WithTmpfs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithTmpfs(map[string]string{
"/tmp": "size=100m",
"/run": "size=100m",
}))
WithHostPortAccess¶
- Since testcontainers-go v0.31.0
If you need to access a port that is already running in the host, you can use testcontainers.WithHostPortAccess
for example:
ctr, err = mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithHostPortAccess(8080))
To understand more about this feature, please read the Exposing host ports to the container documentation.
WithLogConsumers¶
- Since testcontainers-go v0.28.0
If you need to consume the logs of the container, you can use testcontainers.WithLogConsumers
with a valid log consumer. An example of a log consumer is the following:
type TestLogConsumer struct {
Msgs []string
}
func (g *TestLogConsumer) Accept(l Log) {
g.Msgs = append(g.Msgs, string(l.Content))
}
WithLogger¶
- Since testcontainers-go v0.29.0
If you need to either pass logger to a container, you can use testcontainers.WithLogger
.
Info
Consider calling this before other "With" functions as these may generate logs.
In this example we also use the testcontainers-go log.TestLogger
, which writes to the passed in testing.TB
using Logf
.
The result is that we capture all logging from the container into the test context meaning its
hidden behind go test -v
and is associated with the relevant test, providing the user with
useful context instead of appearing out of band.
func TestHandler(t *testing.T) {
logger := log.TestLogger(t)
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithLogger(logger))
CleanupContainer(t, ctr)
require.NoError(t, err)
// Do something with container.
}
Please read the Following Container Logs documentation for more information about creating log consumers.
Wait Strategies¶
If you need to set a different wait strategy for the container, you can use testcontainers.WithWaitStrategy
with a valid wait strategy.
Info
The default deadline for the wait strategy is 60 seconds.
At the same time, it's possible to set a wait strategy and a custom deadline with testcontainers.WithWaitStrategyAndDeadline
.
Startup Commands¶
- Since testcontainers-go v0.25.0
Testcontainers exposes the WithStartupCommand(e ...Executable)
option to run arbitrary commands in the container right after it's started.
Info
To better understand how this feature works, please read the Create containers: Lifecycle Hooks documentation.
It also exports an Executable
interface, defining the following methods:
AsCommand()
, which returns a slice of strings to represent the command and positional arguments to be executed in the container;Options()
, which returns the slice of functional options with the Docker's ExecConfigs used to create the command in the container (the working directory, environment variables, user executing the command, etc) and the possible output format (Multiplexed).
You could use this feature to run a custom script, or to run a command that is not supported by the module right after the container is started.
Ready Commands¶
- Since testcontainers-go v0.28.0
Testcontainers exposes the WithAfterReadyCommand(e ...Executable)
option to run arbitrary commands in the container right after it's ready, which happens when the defined wait strategies have finished with success.
Info
To better understand how this feature works, please read the Create containers: Lifecycle Hooks documentation.
It leverages the Executable
interface to represent the command and positional arguments to be executed in the container.
You could use this feature to run a custom script, or to run a command that is not supported by the module right after the container is ready.
Build from Dockerfile¶
- Not available until the next release of testcontainers-go main
Testcontainers exposes the testcontainers.WithDockerfile
option to build a container from a Dockerfile.
The functional option receives a testcontainers.FromDockerfile
struct that is applied to the container request before starting the container. As a result, the container is built and started in one go.
df := testcontainers.FromDockerfile{
Context: ".",
Dockerfile: "Dockerfile",
Repo: "testcontainers",
Tag: "latest",
BuildArgs: map[string]*string{"ARG1": nil, "ARG2": nil},
}
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithDockerfile(df))
WithNetwork¶
- Since testcontainers-go v0.27.0
By default, the container is started in the default Docker network. If you want to use an already existing Docker network you created in your code, you can use the network.WithNetwork(aliases []string, nw *testcontainers.DockerNetwork)
option, which receives an alias as parameter and your network, attaching the container to it, and setting the network alias for that network.
In the case you need to retrieve the network name, you can simply read it from the struct's Name
field. E.g. nw.Name
.
Warning
This option is not checking whether the network exists or not. If you use a network that doesn't exist, the container will start in the default Docker network, as in the default behavior.
WithNewNetwork¶
- Since testcontainers-go v0.27.0
If you want to attach your containers to a throw-away network, you can use the network.WithNewNetwork(ctx context.Context, aliases []string, opts ...network.NetworkCustomizer)
option, which receives an alias as parameter, creating the new network with a random name, attaching the container to it, and setting the network alias for that network.
In the case you need to retrieve the network name, you can use the Networks(ctx)
method of the Container
interface, right after it's running, which returns a slice of strings with the names of the networks where the container is attached.
Docker type modifiers¶
If you need an advanced configuration for the container, you can leverage the following Docker type modifiers:
testcontainers.WithConfigModifier
testcontainers.WithHostConfigModifier
testcontainers.WithEndpointSettingsModifier
Please read the Create containers: Advanced Settings documentation for more information.
Customising the ContainerRequest¶
This option will merge the customized request into the module's own ContainerRequest
.
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
/* Other module options */
testcontainers.CustomizeRequest(testcontainers.GenericContainerRequest{
ContainerRequest: testcontainers.ContainerRequest{
Cmd: []string{"-c", "log_statement=all"},
},
}),
)
The above example is updating the predefined command of the image, appending them to the module's command.
Info
This can't be used to replace the command, only to append options.
WithProjectID¶
- Not available until the next release of testcontainers-go main
The WithProjectID
function sets the project ID for the Google Cloud container.
Examples¶
ctx := context.Background()
bigTableContainer, err := tcbigtable.Run(
ctx,
"gcr.io/google.com/cloudsdktool/cloud-sdk:367.0.0-emulators",
tcbigtable.WithProjectID("bigtable-project"),
)
defer func() {
if err := testcontainers.TerminateContainer(bigTableContainer); err != nil {
log.Printf("failed to terminate container: %s", err)
}
}()
if err != nil {
log.Printf("failed to run container: %v", err)
return
}
projectID := bigTableContainer.ProjectID()
const (
instanceID = "test-instance"
tableName = "test-table"
)
options := []option.ClientOption{
option.WithEndpoint(bigTableContainer.URI()),
option.WithoutAuthentication(),
option.WithGRPCDialOption(grpc.WithTransportCredentials(insecure.NewCredentials())),
}
adminClient, err := bigtable.NewAdminClient(ctx, projectID, instanceID, options...)
if err != nil {
log.Printf("failed to create admin client: %v", err)
return
}
defer adminClient.Close()
client, err := bigtable.NewClient(ctx, projectID, instanceID, options...)
if err != nil {
log.Printf("failed to create client: %v", err)
return
}
defer client.Close()
It's important to set the option.WithEndpoint()
option using the container's URI, as shown in the Admin client example above.
Datastore¶
Run function¶
- Not available until the next release of testcontainers-go main
The Datastore module exposes one entrypoint function to create the Datastore container, and this function receives three parameters:
func Run(ctx context.Context, img string, opts ...testcontainers.ContainerCustomizer) (*Container, error)
context.Context
, the Go context.string
, the Docker image to use.testcontainers.ContainerCustomizer
, a variadic argument for passing options.
Container Options¶
When starting the Datastore container, you can pass options in a variadic way to configure it.
Image¶
Use the second argument in the Run
function to set a valid Docker image.
In example: Run(context.Background(), "gcr.io/google.com/cloudsdktool/cloud-sdk:367.0.0-emulators")
.
Image Substitutions¶
- Since testcontainers-go v0.26.0
In more locked down / secured environments, it can be problematic to pull images from Docker Hub and run them without additional precautions.
An image name substitutor converts a Docker image name, as may be specified in code, to an alternative name. This is intended to provide a way to override image names, for example to enforce pulling of images from a private registry.
Testcontainers for Go exposes an interface to perform this operation: ImageSubstitutor
, and a No-operation implementation to be used as reference for custom implementations:
// ImageSubstitutor represents a way to substitute container image names
type ImageSubstitutor interface {
// Description returns the name of the type and a short description of how it modifies the image.
// Useful to be printed in logs
Description() string
Substitute(image string) (string, error)
}
type NoopImageSubstitutor struct{}
// Description returns a description of what is expected from this Substitutor,
// which is used in logs.
func (s NoopImageSubstitutor) Description() string {
return "NoopImageSubstitutor (noop)"
}
// Substitute returns the original image, without any change
func (s NoopImageSubstitutor) Substitute(image string) (string, error) {
return image, nil
}
Using the WithImageSubstitutors
options, you could define your own substitutions to the container images. E.g. adding a prefix to the images so that they can be pulled from a Docker registry other than Docker Hub. This is the usual mechanism for using Docker image proxies, caches, etc.
WithEnv¶
- Since testcontainers-go v0.29.0
If you need to either pass additional environment variables to a container or override them, you can use testcontainers.WithEnv
for example:
ctr, err = mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithEnv(map[string]string{"FOO": "BAR"}))
WithExposedPorts¶
- Not available until the next release of testcontainers-go main
If you need to expose additional ports from the container, you can use testcontainers.WithExposedPorts
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithExposedPorts("8080/tcp", "9090/tcp"))
WithEntrypoint¶
- Not available until the next release of testcontainers-go main
If you need to completely replace the container's entrypoint, you can use testcontainers.WithEntrypoint
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithEntrypoint("/bin/sh", "-c", "echo hello"))
WithEntrypointArgs¶
- Not available until the next release of testcontainers-go main
If you need to append commands to the container's entrypoint, you can use testcontainers.WithEntrypointArgs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithEntrypointArgs("echo", "hello"))
WithCmd¶
- Not available until the next release of testcontainers-go main
If you need to completely replace the container's command, you can use testcontainers.WithCmd
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithCmd("echo", "hello"))
WithCmdArgs¶
- Not available until the next release of testcontainers-go main
If you need to append commands to the container's command, you can use testcontainers.WithCmdArgs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithCmdArgs("echo", "hello"))
WithLabels¶
- Not available until the next release of testcontainers-go main
If you need to add Docker labels to the container, you can use testcontainers.WithLabels
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithLabels(map[string]string{
"environment": "testing",
"project": "myapp",
}))
WithFiles¶
- Not available until the next release of testcontainers-go main
If you need to copy files into the container, you can use testcontainers.WithFiles
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithFiles([]testcontainers.ContainerFile{
{
HostFilePath: "/path/to/local/file.txt",
ContainerFilePath: "/container/file.txt",
FileMode: 0o644,
},
}))
This option allows you to copy files from the host into the container at creation time.
WithMounts¶
- Not available until the next release of testcontainers-go main
If you need to add volume mounts to the container, you can use testcontainers.WithMounts
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithMounts([]testcontainers.ContainerMount{
{
Source: testcontainers.GenericVolumeMountSource{Name: "appdata"},
Target: "/app/data",
},
}))
WithTmpfs¶
- Not available until the next release of testcontainers-go main
If you need to add tmpfs mounts to the container, you can use testcontainers.WithTmpfs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithTmpfs(map[string]string{
"/tmp": "size=100m",
"/run": "size=100m",
}))
WithHostPortAccess¶
- Since testcontainers-go v0.31.0
If you need to access a port that is already running in the host, you can use testcontainers.WithHostPortAccess
for example:
ctr, err = mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithHostPortAccess(8080))
To understand more about this feature, please read the Exposing host ports to the container documentation.
WithLogConsumers¶
- Since testcontainers-go v0.28.0
If you need to consume the logs of the container, you can use testcontainers.WithLogConsumers
with a valid log consumer. An example of a log consumer is the following:
type TestLogConsumer struct {
Msgs []string
}
func (g *TestLogConsumer) Accept(l Log) {
g.Msgs = append(g.Msgs, string(l.Content))
}
WithLogger¶
- Since testcontainers-go v0.29.0
If you need to either pass logger to a container, you can use testcontainers.WithLogger
.
Info
Consider calling this before other "With" functions as these may generate logs.
In this example we also use the testcontainers-go log.TestLogger
, which writes to the passed in testing.TB
using Logf
.
The result is that we capture all logging from the container into the test context meaning its
hidden behind go test -v
and is associated with the relevant test, providing the user with
useful context instead of appearing out of band.
func TestHandler(t *testing.T) {
logger := log.TestLogger(t)
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithLogger(logger))
CleanupContainer(t, ctr)
require.NoError(t, err)
// Do something with container.
}
Please read the Following Container Logs documentation for more information about creating log consumers.
Wait Strategies¶
If you need to set a different wait strategy for the container, you can use testcontainers.WithWaitStrategy
with a valid wait strategy.
Info
The default deadline for the wait strategy is 60 seconds.
At the same time, it's possible to set a wait strategy and a custom deadline with testcontainers.WithWaitStrategyAndDeadline
.
Startup Commands¶
- Since testcontainers-go v0.25.0
Testcontainers exposes the WithStartupCommand(e ...Executable)
option to run arbitrary commands in the container right after it's started.
Info
To better understand how this feature works, please read the Create containers: Lifecycle Hooks documentation.
It also exports an Executable
interface, defining the following methods:
AsCommand()
, which returns a slice of strings to represent the command and positional arguments to be executed in the container;Options()
, which returns the slice of functional options with the Docker's ExecConfigs used to create the command in the container (the working directory, environment variables, user executing the command, etc) and the possible output format (Multiplexed).
You could use this feature to run a custom script, or to run a command that is not supported by the module right after the container is started.
Ready Commands¶
- Since testcontainers-go v0.28.0
Testcontainers exposes the WithAfterReadyCommand(e ...Executable)
option to run arbitrary commands in the container right after it's ready, which happens when the defined wait strategies have finished with success.
Info
To better understand how this feature works, please read the Create containers: Lifecycle Hooks documentation.
It leverages the Executable
interface to represent the command and positional arguments to be executed in the container.
You could use this feature to run a custom script, or to run a command that is not supported by the module right after the container is ready.
Build from Dockerfile¶
- Not available until the next release of testcontainers-go main
Testcontainers exposes the testcontainers.WithDockerfile
option to build a container from a Dockerfile.
The functional option receives a testcontainers.FromDockerfile
struct that is applied to the container request before starting the container. As a result, the container is built and started in one go.
df := testcontainers.FromDockerfile{
Context: ".",
Dockerfile: "Dockerfile",
Repo: "testcontainers",
Tag: "latest",
BuildArgs: map[string]*string{"ARG1": nil, "ARG2": nil},
}
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithDockerfile(df))
WithNetwork¶
- Since testcontainers-go v0.27.0
By default, the container is started in the default Docker network. If you want to use an already existing Docker network you created in your code, you can use the network.WithNetwork(aliases []string, nw *testcontainers.DockerNetwork)
option, which receives an alias as parameter and your network, attaching the container to it, and setting the network alias for that network.
In the case you need to retrieve the network name, you can simply read it from the struct's Name
field. E.g. nw.Name
.
Warning
This option is not checking whether the network exists or not. If you use a network that doesn't exist, the container will start in the default Docker network, as in the default behavior.
WithNewNetwork¶
- Since testcontainers-go v0.27.0
If you want to attach your containers to a throw-away network, you can use the network.WithNewNetwork(ctx context.Context, aliases []string, opts ...network.NetworkCustomizer)
option, which receives an alias as parameter, creating the new network with a random name, attaching the container to it, and setting the network alias for that network.
In the case you need to retrieve the network name, you can use the Networks(ctx)
method of the Container
interface, right after it's running, which returns a slice of strings with the names of the networks where the container is attached.
Docker type modifiers¶
If you need an advanced configuration for the container, you can leverage the following Docker type modifiers:
testcontainers.WithConfigModifier
testcontainers.WithHostConfigModifier
testcontainers.WithEndpointSettingsModifier
Please read the Create containers: Advanced Settings documentation for more information.
Customising the ContainerRequest¶
This option will merge the customized request into the module's own ContainerRequest
.
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
/* Other module options */
testcontainers.CustomizeRequest(testcontainers.GenericContainerRequest{
ContainerRequest: testcontainers.ContainerRequest{
Cmd: []string{"-c", "log_statement=all"},
},
}),
)
The above example is updating the predefined command of the image, appending them to the module's command.
Info
This can't be used to replace the command, only to append options.
WithProjectID¶
- Not available until the next release of testcontainers-go main
The WithProjectID
function sets the project ID for the Google Cloud container.
Examples¶
ctx := context.Background()
datastoreContainer, err := tcdatastore.Run(
ctx,
"gcr.io/google.com/cloudsdktool/cloud-sdk:367.0.0-emulators",
tcdatastore.WithProjectID("datastore-project"),
)
defer func() {
if err := testcontainers.TerminateContainer(datastoreContainer); err != nil {
log.Printf("failed to terminate container: %s", err)
}
}()
if err != nil {
log.Printf("failed to run container: %v", err)
return
}
projectID := datastoreContainer.ProjectID()
options := []option.ClientOption{
option.WithEndpoint(datastoreContainer.URI()),
option.WithoutAuthentication(),
option.WithGRPCDialOption(grpc.WithTransportCredentials(insecure.NewCredentials())),
}
dsClient, err := datastore.NewClient(ctx, projectID, options...)
if err != nil {
log.Printf("failed to create client: %v", err)
return
}
defer dsClient.Close()
It's important to set the option.WithEndpoint()
option using the container's URI, as shown in the client example above.
Firestore¶
Run function¶
- Not available until the next release of testcontainers-go main
The Firestore module exposes one entrypoint function to create the Firestore container, and this function receives three parameters:
func Run(ctx context.Context, img string, opts ...testcontainers.ContainerCustomizer) (*Container, error)
context.Context
, the Go context.string
, the Docker image to use.testcontainers.ContainerCustomizer
, a variadic argument for passing options.
Container Options¶
When starting the Firestore container, you can pass options in a variadic way to configure it.
Image¶
Use the second argument in the Run
function to set a valid Docker image.
In example: Run(context.Background(), "gcr.io/google.com/cloudsdktool/cloud-sdk:367.0.0-emulators")
.
Image Substitutions¶
- Since testcontainers-go v0.26.0
In more locked down / secured environments, it can be problematic to pull images from Docker Hub and run them without additional precautions.
An image name substitutor converts a Docker image name, as may be specified in code, to an alternative name. This is intended to provide a way to override image names, for example to enforce pulling of images from a private registry.
Testcontainers for Go exposes an interface to perform this operation: ImageSubstitutor
, and a No-operation implementation to be used as reference for custom implementations:
// ImageSubstitutor represents a way to substitute container image names
type ImageSubstitutor interface {
// Description returns the name of the type and a short description of how it modifies the image.
// Useful to be printed in logs
Description() string
Substitute(image string) (string, error)
}
type NoopImageSubstitutor struct{}
// Description returns a description of what is expected from this Substitutor,
// which is used in logs.
func (s NoopImageSubstitutor) Description() string {
return "NoopImageSubstitutor (noop)"
}
// Substitute returns the original image, without any change
func (s NoopImageSubstitutor) Substitute(image string) (string, error) {
return image, nil
}
Using the WithImageSubstitutors
options, you could define your own substitutions to the container images. E.g. adding a prefix to the images so that they can be pulled from a Docker registry other than Docker Hub. This is the usual mechanism for using Docker image proxies, caches, etc.
WithEnv¶
- Since testcontainers-go v0.29.0
If you need to either pass additional environment variables to a container or override them, you can use testcontainers.WithEnv
for example:
ctr, err = mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithEnv(map[string]string{"FOO": "BAR"}))
WithExposedPorts¶
- Not available until the next release of testcontainers-go main
If you need to expose additional ports from the container, you can use testcontainers.WithExposedPorts
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithExposedPorts("8080/tcp", "9090/tcp"))
WithEntrypoint¶
- Not available until the next release of testcontainers-go main
If you need to completely replace the container's entrypoint, you can use testcontainers.WithEntrypoint
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithEntrypoint("/bin/sh", "-c", "echo hello"))
WithEntrypointArgs¶
- Not available until the next release of testcontainers-go main
If you need to append commands to the container's entrypoint, you can use testcontainers.WithEntrypointArgs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithEntrypointArgs("echo", "hello"))
WithCmd¶
- Not available until the next release of testcontainers-go main
If you need to completely replace the container's command, you can use testcontainers.WithCmd
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithCmd("echo", "hello"))
WithCmdArgs¶
- Not available until the next release of testcontainers-go main
If you need to append commands to the container's command, you can use testcontainers.WithCmdArgs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithCmdArgs("echo", "hello"))
WithLabels¶
- Not available until the next release of testcontainers-go main
If you need to add Docker labels to the container, you can use testcontainers.WithLabels
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithLabels(map[string]string{
"environment": "testing",
"project": "myapp",
}))
WithFiles¶
- Not available until the next release of testcontainers-go main
If you need to copy files into the container, you can use testcontainers.WithFiles
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithFiles([]testcontainers.ContainerFile{
{
HostFilePath: "/path/to/local/file.txt",
ContainerFilePath: "/container/file.txt",
FileMode: 0o644,
},
}))
This option allows you to copy files from the host into the container at creation time.
WithMounts¶
- Not available until the next release of testcontainers-go main
If you need to add volume mounts to the container, you can use testcontainers.WithMounts
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithMounts([]testcontainers.ContainerMount{
{
Source: testcontainers.GenericVolumeMountSource{Name: "appdata"},
Target: "/app/data",
},
}))
WithTmpfs¶
- Not available until the next release of testcontainers-go main
If you need to add tmpfs mounts to the container, you can use testcontainers.WithTmpfs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithTmpfs(map[string]string{
"/tmp": "size=100m",
"/run": "size=100m",
}))
WithHostPortAccess¶
- Since testcontainers-go v0.31.0
If you need to access a port that is already running in the host, you can use testcontainers.WithHostPortAccess
for example:
ctr, err = mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithHostPortAccess(8080))
To understand more about this feature, please read the Exposing host ports to the container documentation.
WithLogConsumers¶
- Since testcontainers-go v0.28.0
If you need to consume the logs of the container, you can use testcontainers.WithLogConsumers
with a valid log consumer. An example of a log consumer is the following:
type TestLogConsumer struct {
Msgs []string
}
func (g *TestLogConsumer) Accept(l Log) {
g.Msgs = append(g.Msgs, string(l.Content))
}
WithLogger¶
- Since testcontainers-go v0.29.0
If you need to either pass logger to a container, you can use testcontainers.WithLogger
.
Info
Consider calling this before other "With" functions as these may generate logs.
In this example we also use the testcontainers-go log.TestLogger
, which writes to the passed in testing.TB
using Logf
.
The result is that we capture all logging from the container into the test context meaning its
hidden behind go test -v
and is associated with the relevant test, providing the user with
useful context instead of appearing out of band.
func TestHandler(t *testing.T) {
logger := log.TestLogger(t)
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithLogger(logger))
CleanupContainer(t, ctr)
require.NoError(t, err)
// Do something with container.
}
Please read the Following Container Logs documentation for more information about creating log consumers.
Wait Strategies¶
If you need to set a different wait strategy for the container, you can use testcontainers.WithWaitStrategy
with a valid wait strategy.
Info
The default deadline for the wait strategy is 60 seconds.
At the same time, it's possible to set a wait strategy and a custom deadline with testcontainers.WithWaitStrategyAndDeadline
.
Startup Commands¶
- Since testcontainers-go v0.25.0
Testcontainers exposes the WithStartupCommand(e ...Executable)
option to run arbitrary commands in the container right after it's started.
Info
To better understand how this feature works, please read the Create containers: Lifecycle Hooks documentation.
It also exports an Executable
interface, defining the following methods:
AsCommand()
, which returns a slice of strings to represent the command and positional arguments to be executed in the container;Options()
, which returns the slice of functional options with the Docker's ExecConfigs used to create the command in the container (the working directory, environment variables, user executing the command, etc) and the possible output format (Multiplexed).
You could use this feature to run a custom script, or to run a command that is not supported by the module right after the container is started.
Ready Commands¶
- Since testcontainers-go v0.28.0
Testcontainers exposes the WithAfterReadyCommand(e ...Executable)
option to run arbitrary commands in the container right after it's ready, which happens when the defined wait strategies have finished with success.
Info
To better understand how this feature works, please read the Create containers: Lifecycle Hooks documentation.
It leverages the Executable
interface to represent the command and positional arguments to be executed in the container.
You could use this feature to run a custom script, or to run a command that is not supported by the module right after the container is ready.
Build from Dockerfile¶
- Not available until the next release of testcontainers-go main
Testcontainers exposes the testcontainers.WithDockerfile
option to build a container from a Dockerfile.
The functional option receives a testcontainers.FromDockerfile
struct that is applied to the container request before starting the container. As a result, the container is built and started in one go.
df := testcontainers.FromDockerfile{
Context: ".",
Dockerfile: "Dockerfile",
Repo: "testcontainers",
Tag: "latest",
BuildArgs: map[string]*string{"ARG1": nil, "ARG2": nil},
}
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithDockerfile(df))
WithNetwork¶
- Since testcontainers-go v0.27.0
By default, the container is started in the default Docker network. If you want to use an already existing Docker network you created in your code, you can use the network.WithNetwork(aliases []string, nw *testcontainers.DockerNetwork)
option, which receives an alias as parameter and your network, attaching the container to it, and setting the network alias for that network.
In the case you need to retrieve the network name, you can simply read it from the struct's Name
field. E.g. nw.Name
.
Warning
This option is not checking whether the network exists or not. If you use a network that doesn't exist, the container will start in the default Docker network, as in the default behavior.
WithNewNetwork¶
- Since testcontainers-go v0.27.0
If you want to attach your containers to a throw-away network, you can use the network.WithNewNetwork(ctx context.Context, aliases []string, opts ...network.NetworkCustomizer)
option, which receives an alias as parameter, creating the new network with a random name, attaching the container to it, and setting the network alias for that network.
In the case you need to retrieve the network name, you can use the Networks(ctx)
method of the Container
interface, right after it's running, which returns a slice of strings with the names of the networks where the container is attached.
Docker type modifiers¶
If you need an advanced configuration for the container, you can leverage the following Docker type modifiers:
testcontainers.WithConfigModifier
testcontainers.WithHostConfigModifier
testcontainers.WithEndpointSettingsModifier
Please read the Create containers: Advanced Settings documentation for more information.
Customising the ContainerRequest¶
This option will merge the customized request into the module's own ContainerRequest
.
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
/* Other module options */
testcontainers.CustomizeRequest(testcontainers.GenericContainerRequest{
ContainerRequest: testcontainers.ContainerRequest{
Cmd: []string{"-c", "log_statement=all"},
},
}),
)
The above example is updating the predefined command of the image, appending them to the module's command.
Info
This can't be used to replace the command, only to append options.
WithProjectID¶
- Not available until the next release of testcontainers-go main
The WithProjectID
function sets the project ID for the Google Cloud container.
Examples¶
ctx := context.Background()
firestoreContainer, err := tcfirestore.Run(
ctx,
"gcr.io/google.com/cloudsdktool/cloud-sdk:367.0.0-emulators",
tcfirestore.WithProjectID("firestore-project"),
)
defer func() {
if err := testcontainers.TerminateContainer(firestoreContainer); err != nil {
log.Printf("failed to terminate container: %s", err)
}
}()
if err != nil {
log.Printf("failed to run container: %v", err)
return
}
projectID := firestoreContainer.ProjectID()
conn, err := grpc.NewClient(firestoreContainer.URI(), grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithPerRPCCredentials(emulatorCreds{}))
if err != nil {
log.Printf("failed to dial: %v", err)
return
}
options := []option.ClientOption{option.WithGRPCConn(conn)}
client, err := firestore.NewClient(ctx, projectID, options...)
if err != nil {
log.Printf("failed to create client: %v", err)
return
}
defer client.Close()
It's important to set the target string of the grpc.NewClient
method using the container's URI, as shown in the client example above.
Pubsub¶
Run function¶
- Not available until the next release of testcontainers-go main
The Pubsub module exposes one entrypoint function to create the Pubsub container, and this function receives three parameters:
func Run(ctx context.Context, img string, opts ...testcontainers.ContainerCustomizer) (*Container, error)
context.Context
, the Go context.string
, the Docker image to use.testcontainers.ContainerCustomizer
, a variadic argument for passing options.
Container Options¶
When starting the Pubsub container, you can pass options in a variadic way to configure it.
Image¶
Use the second argument in the Run
function to set a valid Docker image.
In example: Run(context.Background(), "gcr.io/google.com/cloudsdktool/cloud-sdk:367.0.0-emulators")
.
Image Substitutions¶
- Since testcontainers-go v0.26.0
In more locked down / secured environments, it can be problematic to pull images from Docker Hub and run them without additional precautions.
An image name substitutor converts a Docker image name, as may be specified in code, to an alternative name. This is intended to provide a way to override image names, for example to enforce pulling of images from a private registry.
Testcontainers for Go exposes an interface to perform this operation: ImageSubstitutor
, and a No-operation implementation to be used as reference for custom implementations:
// ImageSubstitutor represents a way to substitute container image names
type ImageSubstitutor interface {
// Description returns the name of the type and a short description of how it modifies the image.
// Useful to be printed in logs
Description() string
Substitute(image string) (string, error)
}
type NoopImageSubstitutor struct{}
// Description returns a description of what is expected from this Substitutor,
// which is used in logs.
func (s NoopImageSubstitutor) Description() string {
return "NoopImageSubstitutor (noop)"
}
// Substitute returns the original image, without any change
func (s NoopImageSubstitutor) Substitute(image string) (string, error) {
return image, nil
}
Using the WithImageSubstitutors
options, you could define your own substitutions to the container images. E.g. adding a prefix to the images so that they can be pulled from a Docker registry other than Docker Hub. This is the usual mechanism for using Docker image proxies, caches, etc.
WithEnv¶
- Since testcontainers-go v0.29.0
If you need to either pass additional environment variables to a container or override them, you can use testcontainers.WithEnv
for example:
ctr, err = mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithEnv(map[string]string{"FOO": "BAR"}))
WithExposedPorts¶
- Not available until the next release of testcontainers-go main
If you need to expose additional ports from the container, you can use testcontainers.WithExposedPorts
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithExposedPorts("8080/tcp", "9090/tcp"))
WithEntrypoint¶
- Not available until the next release of testcontainers-go main
If you need to completely replace the container's entrypoint, you can use testcontainers.WithEntrypoint
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithEntrypoint("/bin/sh", "-c", "echo hello"))
WithEntrypointArgs¶
- Not available until the next release of testcontainers-go main
If you need to append commands to the container's entrypoint, you can use testcontainers.WithEntrypointArgs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithEntrypointArgs("echo", "hello"))
WithCmd¶
- Not available until the next release of testcontainers-go main
If you need to completely replace the container's command, you can use testcontainers.WithCmd
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithCmd("echo", "hello"))
WithCmdArgs¶
- Not available until the next release of testcontainers-go main
If you need to append commands to the container's command, you can use testcontainers.WithCmdArgs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithCmdArgs("echo", "hello"))
WithLabels¶
- Not available until the next release of testcontainers-go main
If you need to add Docker labels to the container, you can use testcontainers.WithLabels
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithLabels(map[string]string{
"environment": "testing",
"project": "myapp",
}))
WithFiles¶
- Not available until the next release of testcontainers-go main
If you need to copy files into the container, you can use testcontainers.WithFiles
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithFiles([]testcontainers.ContainerFile{
{
HostFilePath: "/path/to/local/file.txt",
ContainerFilePath: "/container/file.txt",
FileMode: 0o644,
},
}))
This option allows you to copy files from the host into the container at creation time.
WithMounts¶
- Not available until the next release of testcontainers-go main
If you need to add volume mounts to the container, you can use testcontainers.WithMounts
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithMounts([]testcontainers.ContainerMount{
{
Source: testcontainers.GenericVolumeMountSource{Name: "appdata"},
Target: "/app/data",
},
}))
WithTmpfs¶
- Not available until the next release of testcontainers-go main
If you need to add tmpfs mounts to the container, you can use testcontainers.WithTmpfs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithTmpfs(map[string]string{
"/tmp": "size=100m",
"/run": "size=100m",
}))
WithHostPortAccess¶
- Since testcontainers-go v0.31.0
If you need to access a port that is already running in the host, you can use testcontainers.WithHostPortAccess
for example:
ctr, err = mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithHostPortAccess(8080))
To understand more about this feature, please read the Exposing host ports to the container documentation.
WithLogConsumers¶
- Since testcontainers-go v0.28.0
If you need to consume the logs of the container, you can use testcontainers.WithLogConsumers
with a valid log consumer. An example of a log consumer is the following:
type TestLogConsumer struct {
Msgs []string
}
func (g *TestLogConsumer) Accept(l Log) {
g.Msgs = append(g.Msgs, string(l.Content))
}
WithLogger¶
- Since testcontainers-go v0.29.0
If you need to either pass logger to a container, you can use testcontainers.WithLogger
.
Info
Consider calling this before other "With" functions as these may generate logs.
In this example we also use the testcontainers-go log.TestLogger
, which writes to the passed in testing.TB
using Logf
.
The result is that we capture all logging from the container into the test context meaning its
hidden behind go test -v
and is associated with the relevant test, providing the user with
useful context instead of appearing out of band.
func TestHandler(t *testing.T) {
logger := log.TestLogger(t)
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithLogger(logger))
CleanupContainer(t, ctr)
require.NoError(t, err)
// Do something with container.
}
Please read the Following Container Logs documentation for more information about creating log consumers.
Wait Strategies¶
If you need to set a different wait strategy for the container, you can use testcontainers.WithWaitStrategy
with a valid wait strategy.
Info
The default deadline for the wait strategy is 60 seconds.
At the same time, it's possible to set a wait strategy and a custom deadline with testcontainers.WithWaitStrategyAndDeadline
.
Startup Commands¶
- Since testcontainers-go v0.25.0
Testcontainers exposes the WithStartupCommand(e ...Executable)
option to run arbitrary commands in the container right after it's started.
Info
To better understand how this feature works, please read the Create containers: Lifecycle Hooks documentation.
It also exports an Executable
interface, defining the following methods:
AsCommand()
, which returns a slice of strings to represent the command and positional arguments to be executed in the container;Options()
, which returns the slice of functional options with the Docker's ExecConfigs used to create the command in the container (the working directory, environment variables, user executing the command, etc) and the possible output format (Multiplexed).
You could use this feature to run a custom script, or to run a command that is not supported by the module right after the container is started.
Ready Commands¶
- Since testcontainers-go v0.28.0
Testcontainers exposes the WithAfterReadyCommand(e ...Executable)
option to run arbitrary commands in the container right after it's ready, which happens when the defined wait strategies have finished with success.
Info
To better understand how this feature works, please read the Create containers: Lifecycle Hooks documentation.
It leverages the Executable
interface to represent the command and positional arguments to be executed in the container.
You could use this feature to run a custom script, or to run a command that is not supported by the module right after the container is ready.
Build from Dockerfile¶
- Not available until the next release of testcontainers-go main
Testcontainers exposes the testcontainers.WithDockerfile
option to build a container from a Dockerfile.
The functional option receives a testcontainers.FromDockerfile
struct that is applied to the container request before starting the container. As a result, the container is built and started in one go.
df := testcontainers.FromDockerfile{
Context: ".",
Dockerfile: "Dockerfile",
Repo: "testcontainers",
Tag: "latest",
BuildArgs: map[string]*string{"ARG1": nil, "ARG2": nil},
}
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithDockerfile(df))
WithNetwork¶
- Since testcontainers-go v0.27.0
By default, the container is started in the default Docker network. If you want to use an already existing Docker network you created in your code, you can use the network.WithNetwork(aliases []string, nw *testcontainers.DockerNetwork)
option, which receives an alias as parameter and your network, attaching the container to it, and setting the network alias for that network.
In the case you need to retrieve the network name, you can simply read it from the struct's Name
field. E.g. nw.Name
.
Warning
This option is not checking whether the network exists or not. If you use a network that doesn't exist, the container will start in the default Docker network, as in the default behavior.
WithNewNetwork¶
- Since testcontainers-go v0.27.0
If you want to attach your containers to a throw-away network, you can use the network.WithNewNetwork(ctx context.Context, aliases []string, opts ...network.NetworkCustomizer)
option, which receives an alias as parameter, creating the new network with a random name, attaching the container to it, and setting the network alias for that network.
In the case you need to retrieve the network name, you can use the Networks(ctx)
method of the Container
interface, right after it's running, which returns a slice of strings with the names of the networks where the container is attached.
Docker type modifiers¶
If you need an advanced configuration for the container, you can leverage the following Docker type modifiers:
testcontainers.WithConfigModifier
testcontainers.WithHostConfigModifier
testcontainers.WithEndpointSettingsModifier
Please read the Create containers: Advanced Settings documentation for more information.
Customising the ContainerRequest¶
This option will merge the customized request into the module's own ContainerRequest
.
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
/* Other module options */
testcontainers.CustomizeRequest(testcontainers.GenericContainerRequest{
ContainerRequest: testcontainers.ContainerRequest{
Cmd: []string{"-c", "log_statement=all"},
},
}),
)
The above example is updating the predefined command of the image, appending them to the module's command.
Info
This can't be used to replace the command, only to append options.
WithProjectID¶
- Not available until the next release of testcontainers-go main
The WithProjectID
function sets the project ID for the Google Cloud container.
Examples¶
ctx := context.Background()
pubsubContainer, err := tcpubsub.Run(
ctx,
"gcr.io/google.com/cloudsdktool/cloud-sdk:367.0.0-emulators",
tcpubsub.WithProjectID("pubsub-project"),
)
defer func() {
if err := testcontainers.TerminateContainer(pubsubContainer); err != nil {
log.Printf("failed to terminate container: %s", err)
}
}()
if err != nil {
log.Printf("failed to run container: %v", err)
return
}
projectID := pubsubContainer.ProjectID()
conn, err := grpc.NewClient(pubsubContainer.URI(), grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
log.Printf("failed to dial: %v", err)
return
}
options := []option.ClientOption{option.WithGRPCConn(conn)}
client, err := pubsub.NewClient(ctx, projectID, options...)
if err != nil {
log.Printf("failed to create client: %v", err)
return
}
defer client.Close()
It's important to set the target string of the grpc.NewClient
method using the container's URI, as shown in the client example above.
Spanner¶
Run function¶
- Not available until the next release of testcontainers-go main
The Spanner module exposes one entrypoint function to create the Spanner container, and this function receives three parameters:
func Run(ctx context.Context, img string, opts ...testcontainers.ContainerCustomizer) (*Container, error)
context.Context
, the Go context.string
, the Docker image to use.testcontainers.ContainerCustomizer
, a variadic argument for passing options.
Container Options¶
When starting the Spanner container, you can pass options in a variadic way to configure it.
Image¶
Use the second argument in the Run
function to set a valid Docker image.
In example: Run(context.Background(), "gcr.io/google.com/cloudsdktool/cloud-sdk:367.0.0-emulators")
.
Image Substitutions¶
- Since testcontainers-go v0.26.0
In more locked down / secured environments, it can be problematic to pull images from Docker Hub and run them without additional precautions.
An image name substitutor converts a Docker image name, as may be specified in code, to an alternative name. This is intended to provide a way to override image names, for example to enforce pulling of images from a private registry.
Testcontainers for Go exposes an interface to perform this operation: ImageSubstitutor
, and a No-operation implementation to be used as reference for custom implementations:
// ImageSubstitutor represents a way to substitute container image names
type ImageSubstitutor interface {
// Description returns the name of the type and a short description of how it modifies the image.
// Useful to be printed in logs
Description() string
Substitute(image string) (string, error)
}
type NoopImageSubstitutor struct{}
// Description returns a description of what is expected from this Substitutor,
// which is used in logs.
func (s NoopImageSubstitutor) Description() string {
return "NoopImageSubstitutor (noop)"
}
// Substitute returns the original image, without any change
func (s NoopImageSubstitutor) Substitute(image string) (string, error) {
return image, nil
}
Using the WithImageSubstitutors
options, you could define your own substitutions to the container images. E.g. adding a prefix to the images so that they can be pulled from a Docker registry other than Docker Hub. This is the usual mechanism for using Docker image proxies, caches, etc.
WithEnv¶
- Since testcontainers-go v0.29.0
If you need to either pass additional environment variables to a container or override them, you can use testcontainers.WithEnv
for example:
ctr, err = mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithEnv(map[string]string{"FOO": "BAR"}))
WithExposedPorts¶
- Not available until the next release of testcontainers-go main
If you need to expose additional ports from the container, you can use testcontainers.WithExposedPorts
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithExposedPorts("8080/tcp", "9090/tcp"))
WithEntrypoint¶
- Not available until the next release of testcontainers-go main
If you need to completely replace the container's entrypoint, you can use testcontainers.WithEntrypoint
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithEntrypoint("/bin/sh", "-c", "echo hello"))
WithEntrypointArgs¶
- Not available until the next release of testcontainers-go main
If you need to append commands to the container's entrypoint, you can use testcontainers.WithEntrypointArgs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithEntrypointArgs("echo", "hello"))
WithCmd¶
- Not available until the next release of testcontainers-go main
If you need to completely replace the container's command, you can use testcontainers.WithCmd
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithCmd("echo", "hello"))
WithCmdArgs¶
- Not available until the next release of testcontainers-go main
If you need to append commands to the container's command, you can use testcontainers.WithCmdArgs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithCmdArgs("echo", "hello"))
WithLabels¶
- Not available until the next release of testcontainers-go main
If you need to add Docker labels to the container, you can use testcontainers.WithLabels
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithLabels(map[string]string{
"environment": "testing",
"project": "myapp",
}))
WithFiles¶
- Not available until the next release of testcontainers-go main
If you need to copy files into the container, you can use testcontainers.WithFiles
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithFiles([]testcontainers.ContainerFile{
{
HostFilePath: "/path/to/local/file.txt",
ContainerFilePath: "/container/file.txt",
FileMode: 0o644,
},
}))
This option allows you to copy files from the host into the container at creation time.
WithMounts¶
- Not available until the next release of testcontainers-go main
If you need to add volume mounts to the container, you can use testcontainers.WithMounts
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithMounts([]testcontainers.ContainerMount{
{
Source: testcontainers.GenericVolumeMountSource{Name: "appdata"},
Target: "/app/data",
},
}))
WithTmpfs¶
- Not available until the next release of testcontainers-go main
If you need to add tmpfs mounts to the container, you can use testcontainers.WithTmpfs
. For example:
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
testcontainers.WithTmpfs(map[string]string{
"/tmp": "size=100m",
"/run": "size=100m",
}))
WithHostPortAccess¶
- Since testcontainers-go v0.31.0
If you need to access a port that is already running in the host, you can use testcontainers.WithHostPortAccess
for example:
ctr, err = mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithHostPortAccess(8080))
To understand more about this feature, please read the Exposing host ports to the container documentation.
WithLogConsumers¶
- Since testcontainers-go v0.28.0
If you need to consume the logs of the container, you can use testcontainers.WithLogConsumers
with a valid log consumer. An example of a log consumer is the following:
type TestLogConsumer struct {
Msgs []string
}
func (g *TestLogConsumer) Accept(l Log) {
g.Msgs = append(g.Msgs, string(l.Content))
}
WithLogger¶
- Since testcontainers-go v0.29.0
If you need to either pass logger to a container, you can use testcontainers.WithLogger
.
Info
Consider calling this before other "With" functions as these may generate logs.
In this example we also use the testcontainers-go log.TestLogger
, which writes to the passed in testing.TB
using Logf
.
The result is that we capture all logging from the container into the test context meaning its
hidden behind go test -v
and is associated with the relevant test, providing the user with
useful context instead of appearing out of band.
func TestHandler(t *testing.T) {
logger := log.TestLogger(t)
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithLogger(logger))
CleanupContainer(t, ctr)
require.NoError(t, err)
// Do something with container.
}
Please read the Following Container Logs documentation for more information about creating log consumers.
Wait Strategies¶
If you need to set a different wait strategy for the container, you can use testcontainers.WithWaitStrategy
with a valid wait strategy.
Info
The default deadline for the wait strategy is 60 seconds.
At the same time, it's possible to set a wait strategy and a custom deadline with testcontainers.WithWaitStrategyAndDeadline
.
Startup Commands¶
- Since testcontainers-go v0.25.0
Testcontainers exposes the WithStartupCommand(e ...Executable)
option to run arbitrary commands in the container right after it's started.
Info
To better understand how this feature works, please read the Create containers: Lifecycle Hooks documentation.
It also exports an Executable
interface, defining the following methods:
AsCommand()
, which returns a slice of strings to represent the command and positional arguments to be executed in the container;Options()
, which returns the slice of functional options with the Docker's ExecConfigs used to create the command in the container (the working directory, environment variables, user executing the command, etc) and the possible output format (Multiplexed).
You could use this feature to run a custom script, or to run a command that is not supported by the module right after the container is started.
Ready Commands¶
- Since testcontainers-go v0.28.0
Testcontainers exposes the WithAfterReadyCommand(e ...Executable)
option to run arbitrary commands in the container right after it's ready, which happens when the defined wait strategies have finished with success.
Info
To better understand how this feature works, please read the Create containers: Lifecycle Hooks documentation.
It leverages the Executable
interface to represent the command and positional arguments to be executed in the container.
You could use this feature to run a custom script, or to run a command that is not supported by the module right after the container is ready.
Build from Dockerfile¶
- Not available until the next release of testcontainers-go main
Testcontainers exposes the testcontainers.WithDockerfile
option to build a container from a Dockerfile.
The functional option receives a testcontainers.FromDockerfile
struct that is applied to the container request before starting the container. As a result, the container is built and started in one go.
df := testcontainers.FromDockerfile{
Context: ".",
Dockerfile: "Dockerfile",
Repo: "testcontainers",
Tag: "latest",
BuildArgs: map[string]*string{"ARG1": nil, "ARG2": nil},
}
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3", testcontainers.WithDockerfile(df))
WithNetwork¶
- Since testcontainers-go v0.27.0
By default, the container is started in the default Docker network. If you want to use an already existing Docker network you created in your code, you can use the network.WithNetwork(aliases []string, nw *testcontainers.DockerNetwork)
option, which receives an alias as parameter and your network, attaching the container to it, and setting the network alias for that network.
In the case you need to retrieve the network name, you can simply read it from the struct's Name
field. E.g. nw.Name
.
Warning
This option is not checking whether the network exists or not. If you use a network that doesn't exist, the container will start in the default Docker network, as in the default behavior.
WithNewNetwork¶
- Since testcontainers-go v0.27.0
If you want to attach your containers to a throw-away network, you can use the network.WithNewNetwork(ctx context.Context, aliases []string, opts ...network.NetworkCustomizer)
option, which receives an alias as parameter, creating the new network with a random name, attaching the container to it, and setting the network alias for that network.
In the case you need to retrieve the network name, you can use the Networks(ctx)
method of the Container
interface, right after it's running, which returns a slice of strings with the names of the networks where the container is attached.
Docker type modifiers¶
If you need an advanced configuration for the container, you can leverage the following Docker type modifiers:
testcontainers.WithConfigModifier
testcontainers.WithHostConfigModifier
testcontainers.WithEndpointSettingsModifier
Please read the Create containers: Advanced Settings documentation for more information.
Customising the ContainerRequest¶
This option will merge the customized request into the module's own ContainerRequest
.
ctr, err := mymodule.Run(ctx, "docker.io/myservice:1.2.3",
/* Other module options */
testcontainers.CustomizeRequest(testcontainers.GenericContainerRequest{
ContainerRequest: testcontainers.ContainerRequest{
Cmd: []string{"-c", "log_statement=all"},
},
}),
)
The above example is updating the predefined command of the image, appending them to the module's command.
Info
This can't be used to replace the command, only to append options.
WithProjectID¶
- Not available until the next release of testcontainers-go main
The WithProjectID
function sets the project ID for the Google Cloud container.
Examples¶
ctx := context.Background()
spannerContainer, err := tcspanner.Run(
ctx,
"gcr.io/cloud-spanner-emulator/emulator:1.4.0",
tcspanner.WithProjectID("spanner-project"),
)
defer func() {
if err := testcontainers.TerminateContainer(spannerContainer); err != nil {
log.Printf("failed to terminate container: %s", err)
}
}()
if err != nil {
log.Printf("failed to run container: %v", err)
return
}
projectID := spannerContainer.ProjectID()
const (
instanceID = "test-instance"
databaseName = "test-db"
)
options := []option.ClientOption{
option.WithEndpoint(spannerContainer.URI()),
option.WithGRPCDialOption(grpc.WithTransportCredentials(insecure.NewCredentials())),
option.WithoutAuthentication(),
internaloption.SkipDialSettingsValidation(),
}
instanceAdmin, err := instance.NewInstanceAdminClient(ctx, options...)
if err != nil {
log.Printf("failed to create instance admin client: %v", err)
return
}
defer instanceAdmin.Close()
c, err := database.NewDatabaseAdminClient(ctx, options...)
if err != nil {
log.Printf("failed to create admin client: %v", err)
return
}
defer c.Close()
It's important to set the option.WithEndpoint()
option using the container's URI, as shown in the Admin client example above.