-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongo_repository_test.go
66 lines (52 loc) · 1.76 KB
/
mongo_repository_test.go
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
58
59
60
61
62
63
64
65
66
package grok_test
import (
"context"
"reflect"
"testing"
"github.com/google/uuid"
"github.com/recoli-tech/grok"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/suite"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo"
)
type RepositoryTestSuite struct {
suite.Suite
assert *assert.Assertions
settings *grok.Settings
client *mongo.Client
collection *mongo.Collection
repository *grok.MongoRepository
}
type MongoTestDocument struct {
ID primitive.ObjectID `bson:"_id,omitempty"`
Value string `bson:"value"`
}
func TestRepositoryTestSuite(t *testing.T) {
suite.Run(t, new(RepositoryTestSuite))
}
func (s *RepositoryTestSuite) SetupTest() {
s.assert = assert.New(s.T())
s.settings = new(grok.Settings)
err := grok.FromYAML("tests/config.yaml", s.settings)
s.assert.NoError(err)
s.client = grok.NewMongoConnection(s.settings.Mongo.ConnectionString)
s.collection = s.client.Database(s.settings.Mongo.Database).Collection("grok")
s.repository = grok.NewMongoRepository("ID", reflect.TypeOf(MongoTestDocument{}), s.collection)
}
func (s *RepositoryTestSuite) TestRepository() {
doc := &MongoTestDocument{
Value: uuid.New().String(),
}
result, err := s.repository.Insert(context.Background(), doc)
s.assert.NoError(err)
s.assert.IsType(&MongoTestDocument{}, result)
s.assert.False(result.(*MongoTestDocument).ID.IsZero())
oldValue := doc.Value
result.(*MongoTestDocument).Value = uuid.New().String()
err = s.repository.Update(context.Background(), result.(*MongoTestDocument).ID, doc)
s.assert.NoError(err)
result2, err := s.repository.FindByID(context.Background(), result.(*MongoTestDocument).ID)
s.assert.NoError(err)
s.assert.NotEqual(oldValue, result2.(*MongoTestDocument).Value)
}