Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

services/horizon: Add unit test for new --ledgerbackend flag #5382

Merged
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 76 additions & 2 deletions services/horizon/cmd/db_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ package cmd
import (
"testing"

"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"

horizon "github.com/stellar/go/services/horizon/internal"
"github.com/stellar/go/services/horizon/internal/db2/history"
"github.com/stellar/go/services/horizon/internal/ingest"
"github.com/stellar/go/support/db/dbtest"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
)

func TestDBCommandsTestSuite(t *testing.T) {
Expand Down Expand Up @@ -96,3 +97,76 @@ func (s *DBCommandsTestSuite) TestUsesParallelJobSizeWhenSetForBuffered() {
require.NoError(s.T(), RootCmd.Execute())
require.Equal(s.T(), parallelJobSize, uint32(5))
}

func (s *DBCommandsTestSuite) TestDbReingestAndFillGapsCmds() {
tests := []struct {
name string
args []string
ledgerBackend ingest.LedgerBackendType
expectError bool
errorMessage string
}{
{
name: "default ledgerbackend",
args: []string{"1", "100"},
expectError: false,
},
{
name: "captive-core ledgerbackend",
args: []string{"1", "100", "--ledgerbackend", "captive-core"},
expectError: false,
},
{
name: "invalid ledgerbackend",
args: []string{"1", "100", "--ledgerbackend", "unknown"},
expectError: true,
errorMessage: "invalid ledger backend: unknown, must be 'captive-core' or 'datastore'",
},
{
name: "datastore ledgerbackend without config",
args: []string{"1", "100", "--ledgerbackend", "datastore"},
expectError: true,
errorMessage: "datastore config file is required for datastore backend type",
},
{
name: "datastore ledgerbackend missing config file",
args: []string{"1", "100", "--ledgerbackend", "datastore", "--datastore-config", "invalid.config.toml"},
expectError: true,
errorMessage: "failed to load config file",
},
{
name: "datastore ledgerbackend",
args: []string{"1", "100", "--ledgerbackend", "datastore", "--datastore-config", "../config.storagebackend.toml"},
expectError: false,
},
}

commands := []struct {
cmd []string
name string
}{
{[]string{"db", "reingest", "range"}, "TestDbReingestRangeCmd"},
{[]string{"db", "fill-gaps"}, "TestDbFillGapsCmd"},
}

for _, command := range commands {
for _, tt := range tests {
s.T().Run(tt.name+"_"+command.name, func(t *testing.T) {
args := append(command.cmd, tt.args...)
RootCmd.SetArgs(append([]string{
"--db-url", s.dsn,
"--network", "testnet",
urvisavla marked this conversation as resolved.
Show resolved Hide resolved
"--stellar-core-binary-path", "/test/core/bin/path",
}, args...))

if tt.expectError {
err := RootCmd.Execute()
require.Error(t, err)
require.Contains(t, err.Error(), tt.errorMessage)
} else {
require.NoError(t, RootCmd.Execute())
}
})
}
}
}
Loading