-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat(NODE-3793): Remove offensive language from code and tests #3082
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
5139f70
Update db.ts
ljhaywar c9d33db
Fix read_preference
ljhaywar 23a0f37
Fix commands.ts
ljhaywar c2ff540
Lint
ljhaywar 41a6a32
connection.ts
ljhaywar 2fc0e31
collection.ts
ljhaywar 2a16323
Fixes for test and internal symbols
ljhaywar e7513bb
Code review: delete skipped test
ljhaywar b6d150e
Code review: Deprecate slaveOk to readPreference
ljhaywar 09fc78d
Lint
ljhaywar 1a9fec2
Add unit tests for db
ljhaywar 3a132d5
Add tests for read_preference
ljhaywar be52e88
Get rid of "only"s
ljhaywar 97a3865
Code review
ljhaywar 04c5f90
Duh
ljhaywar 1b523f1
vacation brain
ljhaywar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import { expect } from 'chai'; | ||
|
||
import { MongoClient } from '../../src'; | ||
import { Db, DbOptions } from '../../src/db'; | ||
import { ReadPreference } from '../../src/read_preference'; | ||
|
||
describe('class Db', function () { | ||
describe('secondaryOk', function () { | ||
const client = new MongoClient('mongodb://localhost:27017'); | ||
const legacy_secondary_ok = 'slaveOk'; | ||
const secondary_ok = 'secondaryOk'; | ||
|
||
it('should be false when readPreference is Primary', function () { | ||
const options: DbOptions = { readPreference: ReadPreference.PRIMARY }; | ||
const mydb = new Db(client, 'mydb', options); | ||
|
||
expect(mydb).property(secondary_ok).to.be.false; | ||
expect(mydb).property(legacy_secondary_ok).to.be.false; | ||
}); | ||
|
||
it('should be true when readPreference is Primary Preferred', function () { | ||
const options: DbOptions = { readPreference: ReadPreference.PRIMARY_PREFERRED }; | ||
const mydb = new Db(client, 'mydb', options); | ||
|
||
expect(mydb).property(secondary_ok).to.be.true; | ||
expect(mydb).property(legacy_secondary_ok).to.be.true; | ||
}); | ||
|
||
it('should be true when readPreference is Secondary', function () { | ||
const options: DbOptions = { readPreference: ReadPreference.SECONDARY }; | ||
const mydb = new Db(client, 'mydb', options); | ||
|
||
expect(mydb).property(secondary_ok).to.be.true; | ||
expect(mydb).property(legacy_secondary_ok).to.be.true; | ||
}); | ||
|
||
it('should be true when readPreference is Secondary Preferred', function () { | ||
const options: DbOptions = { readPreference: ReadPreference.SECONDARY_PREFERRED }; | ||
const mydb = new Db(client, 'mydb', options); | ||
|
||
expect(mydb).property(secondary_ok).to.be.true; | ||
expect(mydb).property(legacy_secondary_ok).to.be.true; | ||
}); | ||
|
||
it('should be true when readPreference is Nearest', function () { | ||
const options: DbOptions = { readPreference: ReadPreference.NEAREST }; | ||
const mydb = new Db(client, 'mydb', options); | ||
|
||
expect(mydb).property(secondary_ok).to.be.true; | ||
expect(mydb).property(legacy_secondary_ok).to.be.true; | ||
}); | ||
}); | ||
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.