58 lines
2.1 KiB
Go
58 lines
2.1 KiB
Go
// Copyright 2024 Dolthub, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
driver "github.com/dolthub/doltgresql/integration-tests/go-sql-server-driver/driver"
|
|
)
|
|
|
|
// newPorts returns a DynamicResources bound to the global port pool for use in
|
|
// standalone Go tests.
|
|
func newPorts(t *testing.T) *DynamicResources {
|
|
ports := &DynamicResources{}
|
|
ports.global = &GlobalPorts
|
|
ports.t = t
|
|
return ports
|
|
}
|
|
|
|
// StartServer is the doltgres convenience wrapper used by standalone Go tests
|
|
// to start a server for the database |dbName| in the store |rs|. The doltgres
|
|
// server runs from the store directory (the data-dir) and serves |dbName| as a
|
|
// database. The returned server's DBName is set to |dbName| so connections
|
|
// target it by default.
|
|
func StartServer(t *testing.T, rs driver.RepoStore, dbName string, s *driver.Server, ports *DynamicResources) *driver.SqlServer {
|
|
server := MakeServer(t, rs, rs.Dir, s, ports)
|
|
if server != nil {
|
|
server.DBName = dbName
|
|
}
|
|
return server
|
|
}
|
|
|
|
// RunServerUntilEndOfTest runs a server until the end of the test. Because we
|
|
// do not return the server for doing things like making connections to it,
|
|
// this is only useful for asserting the behavior of other commands which
|
|
// interact with the server.
|
|
func RunServerUntilEndOfTest(t *testing.T, rs driver.RepoStore, s *driver.Server, ports *DynamicResources) {
|
|
server := MakeServer(t, rs, rs.Dir, s, ports)
|
|
require.NotNil(t, server)
|
|
db, err := server.DB(driver.Connection{})
|
|
require.NoError(t, err)
|
|
require.NoError(t, db.Close())
|
|
}
|