Categorygithub.com/ajeetdsouza/testcontainers-aerospike-go

# README

testcontainers-aerospike-go

Go Reference Go Report Card

Go library for Aerospike integration testing via Testcontainers.

Install

Use go get to install the latest version of the library.

go get -u github.com/ajeetdsouza/testcontainers-aerospike-go@latest

Usage

import (
    "context"
    "testing"

    "github.com/stretchr/testify/require"
    aero "github.com/aerospike/aerospike-client-go/v6"
    aeroTest "github.com/ajeetdsouza/testcontainers-aerospike-go"
)

func TestAerospike(t *testing.T) {
    aeroClient := setupAerospike(t)
    // your code here
}

func setupAerospike(t *testing.T) *aero.Client {
    ctx := context.Background()

    container, err := aeroTest.RunContainer(ctx)
    require.NoError(t, err)
    t.Cleanup(func() {
        err := container.Terminate(ctx)
        require.NoError(t, err)
    })

    host, err := container.Host(ctx)
    require.NoError(t, err)
    port, err := container.ServicePort(ctx)
    require.NoError(t, err)

    client, err := aero.NewClient(host, port)
    require.NoError(t, err)

    return client
}

# Functions

RunContainer creates an instance of the Aerospike container type.
WithImage sets the image for the Aerospike container.
WithNamespace sets the default namespace that is created when Aerospike starts.

# Structs

No description provided by the author