-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patherror_test.go
More file actions
146 lines (112 loc) · 4.7 KB
/
error_test.go
File metadata and controls
146 lines (112 loc) · 4.7 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package gomongo_test
import (
"context"
"fmt"
"testing"
"github.com/bytebase/gomongo"
"github.com/bytebase/gomongo/internal/testutil"
"github.com/stretchr/testify/require"
)
func TestParseError(t *testing.T) {
testutil.RunOnAllDBs(t, func(t *testing.T, db testutil.TestDB) {
dbName := fmt.Sprintf("testdb_parse_error_%s", db.Name)
defer testutil.CleanupDatabase(t, db.Client, dbName)
gc := gomongo.NewClient(db.Client)
ctx := context.Background()
_, err := gc.Execute(ctx, dbName, "db.users.find({ name: })")
require.Error(t, err)
var parseErr *gomongo.ParseError
require.ErrorAs(t, err, &parseErr)
})
}
func TestUnsupportedOperation(t *testing.T) {
testutil.RunOnAllDBs(t, func(t *testing.T, db testutil.TestDB) {
dbName := fmt.Sprintf("testdb_unsup_op_%s", db.Name)
defer testutil.CleanupDatabase(t, db.Client, dbName)
gc := gomongo.NewClient(db.Client)
ctx := context.Background()
// createSearchIndex is NOT in the registry - should return UnsupportedOperationError
_, err := gc.Execute(ctx, dbName, `db.movies.createSearchIndex({ name: "default", definition: { mappings: { dynamic: true } } })`)
require.Error(t, err)
var unsupportedErr *gomongo.UnsupportedOperationError
require.ErrorAs(t, err, &unsupportedErr)
require.Equal(t, "createSearchIndex()", unsupportedErr.Operation)
})
}
func TestUnsupportedOptionError(t *testing.T) {
testutil.RunOnAllDBs(t, func(t *testing.T, db testutil.TestDB) {
dbName := fmt.Sprintf("testdb_unsup_opt_err_%s", db.Name)
defer testutil.CleanupDatabase(t, db.Client, dbName)
ctx := context.Background()
gc := gomongo.NewClient(db.Client)
// find() with unsupported option 'collation'
_, err := gc.Execute(ctx, dbName, `db.users.find({}, {}, { collation: { locale: "en" } })`)
var optErr *gomongo.UnsupportedOptionError
require.ErrorAs(t, err, &optErr)
require.Equal(t, "find()", optErr.Method)
require.Equal(t, "collation", optErr.Option)
})
}
func TestFindOneUnsupportedOption(t *testing.T) {
testutil.RunOnAllDBs(t, func(t *testing.T, db testutil.TestDB) {
dbName := fmt.Sprintf("testdb_findone_unsup_opt_%s", db.Name)
defer testutil.CleanupDatabase(t, db.Client, dbName)
ctx := context.Background()
gc := gomongo.NewClient(db.Client)
_, err := gc.Execute(ctx, dbName, `db.users.findOne({}, {}, { collation: { locale: "en" } })`)
var optErr *gomongo.UnsupportedOptionError
require.ErrorAs(t, err, &optErr)
require.Equal(t, "findOne()", optErr.Method)
require.Equal(t, "collation", optErr.Option)
})
}
func TestAggregateUnsupportedOption(t *testing.T) {
testutil.RunOnAllDBs(t, func(t *testing.T, db testutil.TestDB) {
dbName := fmt.Sprintf("testdb_agg_unsup_opt_%s", db.Name)
defer testutil.CleanupDatabase(t, db.Client, dbName)
ctx := context.Background()
gc := gomongo.NewClient(db.Client)
_, err := gc.Execute(ctx, dbName, `db.users.aggregate([], { allowDiskUse: true })`)
var optErr *gomongo.UnsupportedOptionError
require.ErrorAs(t, err, &optErr)
require.Equal(t, "aggregate()", optErr.Method)
require.Equal(t, "allowDiskUse", optErr.Option)
})
}
func TestCountDocumentsUnsupportedOption(t *testing.T) {
testutil.RunOnAllDBs(t, func(t *testing.T, db testutil.TestDB) {
dbName := fmt.Sprintf("testdb_count_unsup_%s", db.Name)
defer testutil.CleanupDatabase(t, db.Client, dbName)
ctx := context.Background()
gc := gomongo.NewClient(db.Client)
_, err := gc.Execute(ctx, dbName, `db.users.countDocuments({}, { collation: { locale: "en" } })`)
var optErr *gomongo.UnsupportedOptionError
require.ErrorAs(t, err, &optErr)
require.Equal(t, "countDocuments()", optErr.Method)
})
}
func TestDistinctUnsupportedOption(t *testing.T) {
testutil.RunOnAllDBs(t, func(t *testing.T, db testutil.TestDB) {
dbName := fmt.Sprintf("testdb_distinct_unsup_%s", db.Name)
defer testutil.CleanupDatabase(t, db.Client, dbName)
ctx := context.Background()
gc := gomongo.NewClient(db.Client)
_, err := gc.Execute(ctx, dbName, `db.users.distinct("city", {}, { collation: { locale: "en" } })`)
var optErr *gomongo.UnsupportedOptionError
require.ErrorAs(t, err, &optErr)
require.Equal(t, "distinct()", optErr.Method)
})
}
func TestEstimatedDocumentCountUnsupportedOption(t *testing.T) {
testutil.RunOnAllDBs(t, func(t *testing.T, db testutil.TestDB) {
dbName := fmt.Sprintf("testdb_est_count_unsup_%s", db.Name)
defer testutil.CleanupDatabase(t, db.Client, dbName)
ctx := context.Background()
gc := gomongo.NewClient(db.Client)
_, err := gc.Execute(ctx, dbName, `db.users.estimatedDocumentCount({ comment: "test" })`)
var optErr *gomongo.UnsupportedOptionError
require.ErrorAs(t, err, &optErr)
require.Equal(t, "estimatedDocumentCount()", optErr.Method)
require.Equal(t, "comment", optErr.Option)
})
}