Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test getMore integration test using one connection pool #2878

Merged
merged 35 commits into from
Jun 29, 2023
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
913cb04
set pool size in client
chilagrow Jun 21, 2023
f916843
expose ClientOption to setup
chilagrow Jun 21, 2023
3e00842
rename and comment update
chilagrow Jun 23, 2023
04c75a6
use url.Values
chilagrow Jun 23, 2023
40a511f
tidy up
chilagrow Jun 26, 2023
2f1b735
add same client and different client connection tests
chilagrow Jun 26, 2023
5d0a147
update error message for same client tests
chilagrow Jun 26, 2023
9de04ca
skip test for feature not supported by FerretDB
chilagrow Jun 26, 2023
734d5bf
comment update
chilagrow Jun 26, 2023
962ed96
run subtests in parallel
chilagrow Jun 26, 2023
0a74652
merge
chilagrow Jun 27, 2023
b0e8761
test setup handles merging url with extra url.Values option
chilagrow Jun 27, 2023
733b144
use stresstest.Stress
chilagrow Jun 27, 2023
e6a30e5
add batchSize test for find and getMore
chilagrow Jun 27, 2023
c6811fe
add getMore test for using different client
chilagrow Jun 27, 2023
1b450c7
update test
chilagrow Jun 27, 2023
a21acef
Merge branch 'main' into issue-1807-analysis
chilagrow Jun 27, 2023
405e8c9
update commnet
chilagrow Jun 27, 2023
805fcb2
cleanup
chilagrow Jun 27, 2023
9e6b8e9
do not run session related tests in parallel
chilagrow Jun 27, 2023
1e1f975
refactor
chilagrow Jun 27, 2023
fe31dfd
fix
chilagrow Jun 27, 2023
baf6065
Merge branch 'main' into issue-1807-analysis
chilagrow Jun 27, 2023
aae64c8
separate mongodburi and setup listener from extra options
chilagrow Jun 28, 2023
a22d37c
refactoring func name
chilagrow Jun 28, 2023
1a65aac
update comments and rename
chilagrow Jun 28, 2023
0e7adb8
cleanup
chilagrow Jun 28, 2023
bb965f5
Merge branch 'main' into issue-1807-analysis
chilagrow Jun 28, 2023
a9ea919
Merge branch 'main' into issue-1807-analysis
AlekSi Jun 28, 2023
c2397d2
fix new linter
chilagrow Jun 28, 2023
d7d3b8e
Merge branch 'issue-1807-analysis' of github.com:chilagrow/FerretDB i…
chilagrow Jun 28, 2023
02f1d08
Merge branch 'main' into issue-1807-analysis
AlekSi Jun 28, 2023
d5df4e0
Tweak comment
AlekSi Jun 28, 2023
17db130
Simplify
AlekSi Jun 28, 2023
676af8a
Refactor
AlekSi Jun 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Tweak comment
  • Loading branch information
AlekSi committed Jun 28, 2023
commit d5df4e013837af622e456128815c4a3284442c7f
1 change: 1 addition & 0 deletions integration/commands_diagnostic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,7 @@ func TestCommandsDiagnosticWhatsMyURI(t *testing.T) {

// TestCommandWhatsMyURIConnection tests that integration test setup applies
// minPoolSize, maxPoolSize and maxIdleTimeMS correctly to the driver.
// It also tests that the driver behaves like we think it should.
func TestCommandWhatsMyURIConnection(t *testing.T) {
t.Parallel()

Expand Down