Skip to content

Commit 9d3babd

Browse files
author
Josh Holbrook
committed
Run SQL server tests on Azure SQL Edge
1 parent 57aead3 commit 9d3babd

File tree

2 files changed

+37
-6
lines changed

2 files changed

+37
-6
lines changed

database/sqlserver/sqlserver_test.go

+36-6
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ import (
66
sqldriver "database/sql/driver"
77
"fmt"
88
"log"
9+
"runtime"
910
"strings"
1011
"testing"
1112
"time"
1213

1314
"github.com/dhui/dktest"
15+
"github.com/docker/go-connections/nat"
1416
"github.com/golang-migrate/migrate/v4"
1517

1618
dt "github.com/golang-migrate/migrate/v4/database/testing"
@@ -23,14 +25,27 @@ const defaultPort = 1433
2325
const saPassword = "Root1234"
2426

2527
var (
26-
opts = dktest.Options{
27-
Env: map[string]string{"ACCEPT_EULA": "Y", "SA_PASSWORD": saPassword, "MSSQL_PID": "Express"},
28+
sqlEdgeOpts = dktest.Options{
29+
Env: map[string]string{"ACCEPT_EULA": "Y", "MSSQL_SA_PASSWORD": saPassword},
30+
PortBindings: map[nat.Port][]nat.PortBinding{
31+
nat.Port(fmt.Sprintf("%d/tcp", defaultPort)): {
32+
nat.PortBinding{
33+
HostIP: "0.0.0.0",
34+
HostPort: "0/tcp",
35+
},
36+
},
37+
},
38+
PortRequired: true, ReadyFunc: isReady, PullTimeout: 2 * time.Minute,
39+
}
40+
sqlServerOpts = dktest.Options{
41+
Env: map[string]string{"ACCEPT_EULA": "Y", "MSSQL_SA_PASSWORD": saPassword, "MSSQL_PID": "Express"},
2842
PortRequired: true, ReadyFunc: isReady, PullTimeout: 2 * time.Minute,
2943
}
3044
// Container versions: https://mcr.microsoft.com/v2/mssql/server/tags/list
3145
specs = []dktesting.ContainerSpec{
32-
{ImageName: "mcr.microsoft.com/mssql/server:2017-latest", Options: opts},
33-
{ImageName: "mcr.microsoft.com/mssql/server:2019-latest", Options: opts},
46+
{ImageName: "mcr.microsoft.com/azure-sql-edge:latest", Options: sqlEdgeOpts},
47+
{ImageName: "mcr.microsoft.com/mssql/server:2017-latest", Options: sqlServerOpts},
48+
{ImageName: "mcr.microsoft.com/mssql/server:2019-latest", Options: sqlServerOpts},
3449
}
3550
)
3651

@@ -74,8 +89,15 @@ func isReady(ctx context.Context, c dktest.ContainerInfo) bool {
7489
return true
7590
}
7691

92+
func SkipIfUnsupportedArch(t *testing.T, c dktest.ContainerInfo) {
93+
if strings.Contains(c.ImageName, "mssql") && !strings.HasPrefix(runtime.GOARCH, "amd") {
94+
t.Skip(fmt.Sprintf("Image %s is not supported on arch %s", c.ImageName, runtime.GOARCH))
95+
}
96+
}
97+
7798
func Test(t *testing.T) {
7899
dktesting.ParallelTest(t, specs, func(t *testing.T, c dktest.ContainerInfo) {
100+
SkipIfUnsupportedArch(t, c)
79101
ip, port, err := c.Port(defaultPort)
80102
if err != nil {
81103
t.Fatal(err)
@@ -100,6 +122,7 @@ func Test(t *testing.T) {
100122

101123
func TestMigrate(t *testing.T) {
102124
dktesting.ParallelTest(t, specs, func(t *testing.T, c dktest.ContainerInfo) {
125+
SkipIfUnsupportedArch(t, c)
103126
ip, port, err := c.Port(defaultPort)
104127
if err != nil {
105128
t.Fatal(err)
@@ -128,7 +151,8 @@ func TestMigrate(t *testing.T) {
128151

129152
func TestMultiStatement(t *testing.T) {
130153
dktesting.ParallelTest(t, specs, func(t *testing.T, c dktest.ContainerInfo) {
131-
ip, port, err := c.FirstPort()
154+
SkipIfUnsupportedArch(t, c)
155+
ip, port, err := c.Port(defaultPort)
132156
if err != nil {
133157
t.Fatal(err)
134158
}
@@ -161,12 +185,14 @@ func TestMultiStatement(t *testing.T) {
161185

162186
func TestErrorParsing(t *testing.T) {
163187
dktesting.ParallelTest(t, specs, func(t *testing.T, c dktest.ContainerInfo) {
164-
ip, port, err := c.FirstPort()
188+
SkipIfUnsupportedArch(t, c)
189+
ip, port, err := c.Port(defaultPort)
165190
if err != nil {
166191
t.Fatal(err)
167192
}
168193

169194
addr := msConnectionString(ip, port)
195+
170196
p := &SQLServer{}
171197
d, err := p.Open(addr)
172198
if err != nil {
@@ -191,6 +217,7 @@ func TestErrorParsing(t *testing.T) {
191217

192218
func TestLockWorks(t *testing.T) {
193219
dktesting.ParallelTest(t, specs, func(t *testing.T, c dktest.ContainerInfo) {
220+
SkipIfUnsupportedArch(t, c)
194221
ip, port, err := c.Port(defaultPort)
195222
if err != nil {
196223
t.Fatal(err)
@@ -229,6 +256,7 @@ func TestLockWorks(t *testing.T) {
229256

230257
func TestMsiTrue(t *testing.T) {
231258
dktesting.ParallelTest(t, specs, func(t *testing.T, c dktest.ContainerInfo) {
259+
SkipIfUnsupportedArch(t, c)
232260
ip, port, err := c.Port(defaultPort)
233261
if err != nil {
234262
t.Fatal(err)
@@ -245,6 +273,7 @@ func TestMsiTrue(t *testing.T) {
245273

246274
func TestOpenWithPasswordAndMSI(t *testing.T) {
247275
dktesting.ParallelTest(t, specs, func(t *testing.T, c dktest.ContainerInfo) {
276+
SkipIfUnsupportedArch(t, c)
248277
ip, port, err := c.Port(defaultPort)
249278
if err != nil {
250279
t.Fatal(err)
@@ -276,6 +305,7 @@ func TestOpenWithPasswordAndMSI(t *testing.T) {
276305

277306
func TestMsiFalse(t *testing.T) {
278307
dktesting.ParallelTest(t, specs, func(t *testing.T, c dktest.ContainerInfo) {
308+
SkipIfUnsupportedArch(t, c)
279309
ip, port, err := c.Port(defaultPort)
280310
if err != nil {
281311
t.Fatal(err)

go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ require (
1818
github.com/denisenkom/go-mssqldb v0.10.0
1919
github.com/dhui/dktest v0.3.9
2020
github.com/docker/docker v20.10.12+incompatible
21+
github.com/docker/go-connections v0.4.0 // indirect
2122
github.com/edsrzf/mmap-go v0.0.0-20170320065105-0bce6a688712 // indirect
2223
github.com/envoyproxy/go-control-plane v0.10.1 // indirect
2324
github.com/envoyproxy/protoc-gen-validate v0.6.2 // indirect

0 commit comments

Comments
 (0)