1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
package main
import (
"context"
"crypto/sha256"
"fmt"
log "github.com/sirupsen/logrus"
"github.com/stretchr/testify/require"
"os"
"strconv"
"testing"
"time"
)
type TestStorageWrapper struct {
DbName string
Storage *MongoStorage
Context context.Context
}
func NewTestStorageWrapper(t *testing.T) *TestStorageWrapper {
mongoHost, ok := os.LookupEnv("MONGO_HOST")
if !ok {
mongoHost = "localhost"
}
mongoPort, ok := os.LookupEnv("MONGO_PORT")
if !ok {
mongoPort = "27017"
}
port, err := strconv.Atoi(mongoPort)
require.NoError(t, err, "invalid port")
uniqueDatabaseName := sha256.Sum256([]byte(time.Now().String()))
dbName := fmt.Sprintf("%x", uniqueDatabaseName[:31])
log.WithField("dbName", dbName).Info("creating new storage")
storage := NewMongoStorage(mongoHost, port, dbName)
ctx, _ := context.WithTimeout(context.Background(), 10*time.Second)
err = storage.Connect(ctx)
require.NoError(t, err, "failed to connect to database")
return &TestStorageWrapper{
DbName: dbName,
Storage: storage,
Context: ctx,
}
}
func (tsw TestStorageWrapper) AddCollection(collectionName string) {
tsw.Storage.collections[collectionName] = tsw.Storage.client.Database(tsw.DbName).Collection(collectionName)
}
func (tsw TestStorageWrapper) Destroy(t *testing.T) {
err := tsw.Storage.client.Disconnect(tsw.Context)
require.NoError(t, err, "failed to disconnect to database")
}
|