forked from ravendb/ravendb-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocuments_load_test.go
86 lines (68 loc) · 1.84 KB
/
documents_load_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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package tests
import (
"testing"
"github.com/stretchr/testify/assert"
)
// Note: client/documents/LoadTest.java
type Foo struct {
Name string
}
type Bar struct {
FooId string
FooIDs []string
Name string
}
func documentsLoadTestLoadWithIncludes(t *testing.T, driver *RavenTestDriver) {
var err error
store := driver.getDocumentStoreMust(t)
defer store.Close()
barId := ""
{
session := openSessionMust(t, store)
foo := &Foo{}
foo.Name = "Beginning"
err = session.Store(foo)
assert.NoError(t, err)
fooId := session.Advanced().GetDocumentID(foo)
bar := &Bar{}
bar.Name = "End"
bar.FooId = fooId
session.Store(bar)
barId = session.Advanced().GetDocumentID(bar)
err = session.SaveChanges()
assert.NoError(t, err)
session.Close()
}
{
newSession := openSessionMust(t, store)
// Note: in Java it's fooId, we must match Go naming with FooId
bars := map[string]*Bar{}
err = newSession.Include("FooId").LoadMulti(bars, []string{barId})
assert.NoError(t, err)
assert.NotNil(t, bars)
assert.Equal(t, len(bars), 1)
for _, v := range bars {
assert.NotNil(t, v)
}
numOfRequests := newSession.Advanced().GetNumberOfRequests()
bar := bars[barId]
var foo *Foo
err = newSession.Load(&foo, bar.FooId)
assert.NoError(t, err)
assert.NotNil(t, foo)
assert.Equal(t, foo.Name, "Beginning")
assert.Equal(t, newSession.Advanced().GetNumberOfRequests(), numOfRequests)
newSession.Close()
}
}
func documentsLoadTestLoadWithIncludesAndMissingDocument(t *testing.T, driver *RavenTestDriver) {
// TODO: is @Disabled
}
func TestDocumentsLoad(t *testing.T) {
driver := createTestDriver(t)
destroy := func() { destroyDriver(t, driver) }
defer recoverTest(t, destroy)
// matches order of Java tests
documentsLoadTestLoadWithIncludes(t, driver)
documentsLoadTestLoadWithIncludesAndMissingDocument(t, driver)
}