Documentation
¶
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type InbucketContainer ¶
type InbucketContainer struct {
testcontainers.Container
}
InbucketContainer represents the Inbucket container type used in the module
func Run ¶ added in v0.32.0
func Run(ctx context.Context, img string, opts ...testcontainers.ContainerCustomizer) (*InbucketContainer, error)
Run creates an instance of the Inbucket container type
Example ¶
package main
import (
"context"
"fmt"
"log"
"github.com/testcontainers/testcontainers-go"
"github.com/testcontainers/testcontainers-go/modules/inbucket"
)
func main() {
// runInbucketContainer {
ctx := context.Background()
inbucketContainer, err := inbucket.Run(ctx, "inbucket/inbucket:sha-2d409bb")
defer func() {
if err := testcontainers.TerminateContainer(inbucketContainer); err != nil {
log.Printf("failed to terminate container: %s", err)
}
}()
if err != nil {
log.Printf("failed to start container: %s", err)
return
}
// }
state, err := inbucketContainer.State(ctx)
if err != nil {
log.Printf("failed to get container state: %s", err)
return
}
fmt.Println(state.Running)
}
Output: true
func RunContainer
deprecated
func RunContainer(ctx context.Context, opts ...testcontainers.ContainerCustomizer) (*InbucketContainer, error)
Deprecated: use Run instead RunContainer creates an instance of the Inbucket container type
func (*InbucketContainer) SmtpConnection ¶
func (c *InbucketContainer) SmtpConnection(ctx context.Context) (string, error)
SmtpConnection returns the connection string for the smtp server, using the default 2500 port, and obtaining the host and exposed port from the container.
func (*InbucketContainer) WebInterface ¶
func (c *InbucketContainer) WebInterface(ctx context.Context) (string, error)
WebInterface returns the connection string for the web interface server, using the default 9000 port, and obtaining the host and exposed port from the container.
Click to show internal directories.
Click to hide internal directories.