Skip to content

Commit fe9406f

Browse files
committed
chore(NODE-6721): migrate singlebench tests
1 parent 827266c commit fe9406f

File tree

8 files changed

+187
-9
lines changed

8 files changed

+187
-9
lines changed

test/benchmarks/driver_bench/src/driver.mts

+3
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,9 @@ export function metrics(test_name: string, result: number, count: number) {
135135
* For use in setup/teardown mostly.
136136
*/
137137
export class DriverTester {
138+
readonly DB_NAME = DB_NAME;
139+
readonly COLLECTION_NAME = COLLECTION_NAME;
140+
138141
public client: mongodb.MongoClient;
139142
constructor() {
140143
this.client = new MongoClient(MONGODB_URI, MONGODB_CLIENT_OPTIONS);

test/benchmarks/driver_bench/src/main.mts

-9
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,6 @@ export const alphabetically = (a: unknown, b: unknown) => {
2828
return res < 0 ? -1 : res > 0 ? 1 : 0;
2929
};
3030

31-
export const alphabetically = (a: unknown, b: unknown) => {
32-
const res = `${a}`.localeCompare(`${b}`, 'en-US', {
33-
usage: 'sort',
34-
numeric: true,
35-
ignorePunctuation: false
36-
});
37-
return res < 0 ? -1 : res > 0 ? 1 : 0;
38-
};
39-
4031
/** Find every mjs file in the suites folder */
4132
async function getBenchmarks(): Promise<{
4233
tests: Record<string, Record<string, string>>;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { driver, type mongodb } from '../../driver.mjs';
2+
3+
export const taskSize = 16.22;
4+
5+
let collection: mongodb.Collection<{ _id: number }>;
6+
7+
export async function before() {
8+
await driver.drop();
9+
await driver.create();
10+
11+
const tweet = await driver.load('single_and_multi_document/tweet.json', 'json');
12+
await driver.insertManyOf(tweet, 10000, true);
13+
14+
collection = driver.client.db(driver.DB_NAME).collection(driver.COLLECTION_NAME);
15+
}
16+
17+
export async function run() {
18+
for (let _id = 0; _id < 10000; ++_id) {
19+
await collection.findOne({ _id });
20+
}
21+
}
22+
23+
export async function after() {
24+
await driver.drop();
25+
await driver.close();
26+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import { driver, type mongodb } from '../../driver.mjs';
2+
3+
export const taskSize = 27.31;
4+
5+
let collection: mongodb.Collection;
6+
let documents: Record<string, any>[];
7+
let largeDoc: Record<string, any>;
8+
9+
export async function before() {
10+
largeDoc = await driver.load('single_and_multi_document/large_doc.json', 'json');
11+
}
12+
13+
export async function beforeEach() {
14+
await driver.drop();
15+
await driver.create();
16+
17+
// Make new "documents" so the _id field is not carried over from the last run
18+
documents = Array.from({ length: 10 }, () => ({ ...largeDoc }));
19+
20+
collection = driver.collection;
21+
}
22+
23+
export async function run() {
24+
for (const doc of documents) {
25+
await collection.insertOne(doc);
26+
}
27+
}
28+
29+
export async function after() {
30+
await driver.drop();
31+
await driver.close();
32+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { driver, type mongodb } from '../../driver.mjs';
2+
3+
// { ping: 1 } is 15 bytes of BSON x 10,000 iterations
4+
export const taskSize = 0.15;
5+
6+
let db: mongodb.Db;
7+
8+
export async function before() {
9+
await driver.drop();
10+
await driver.create();
11+
12+
db = driver.db;
13+
}
14+
15+
export async function run() {
16+
for (let i = 0; i < 10000; ++i) {
17+
await db.command({ ping: 1 });
18+
}
19+
}
20+
21+
export async function after() {
22+
await driver.drop();
23+
await driver.close();
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
import assert from 'node:assert/strict';
2+
3+
const findPrimesBelow = 290_000;
4+
const expectedPrimes = 25_224;
5+
6+
// should never change
7+
export const taskSize = 1.00896;
8+
9+
// expected primes * 4 bytes (int32) in MB
10+
assert.equal(taskSize, expectedPrimes * 4 * 10e-6);
11+
12+
/** @see https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes */
13+
function sieveOfEratosthenes(n: number) {
14+
// Create a boolean array "prime[0..n]" and initialize
15+
// all entries as true. A value in prime[i] will
16+
// become false if i is Not a prime
17+
const prime = Array.from({ length: n + 1 }, () => true);
18+
19+
// We know 0 and 1 are not prime
20+
prime[0] = false;
21+
prime[1] = false;
22+
23+
for (let p = 2; p * p <= n; p++) {
24+
// If prime[p] is not changed, then it is a prime
25+
if (prime[p] === true) {
26+
// Update all multiples of p as false
27+
for (let i = p * p; i <= n; i += p) {
28+
prime[i] = false;
29+
}
30+
}
31+
}
32+
33+
// Collecting all prime numbers
34+
const primes = [];
35+
for (let i = 2; i <= n; i++) {
36+
if (prime[i] === true) {
37+
primes.push(i);
38+
}
39+
}
40+
41+
return primes;
42+
}
43+
44+
export async function run() {
45+
assert.equal(sieveOfEratosthenes(findPrimesBelow).length, expectedPrimes);
46+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { driver, type mongodb } from '../../driver.mjs';
2+
3+
// { hello: true } is 13 bytes of BSON x 10,000 iterations
4+
export const taskSize = 0.13;
5+
6+
let db: mongodb.Db;
7+
8+
export async function before() {
9+
await driver.drop();
10+
await driver.create();
11+
12+
db = driver.db;
13+
}
14+
15+
export async function run() {
16+
for (let i = 0; i < 10000; ++i) {
17+
await db.command({ hello: true });
18+
}
19+
}
20+
21+
export async function after() {
22+
await driver.drop();
23+
await driver.close();
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import { driver, type mongodb } from '../../driver.mjs';
2+
3+
export const taskSize = 2.75;
4+
5+
let collection: mongodb.Collection;
6+
let documents: Record<string, any>[];
7+
let smallDoc: Record<string, any>;
8+
9+
export async function before() {
10+
smallDoc = await driver.load('single_and_multi_document/small_doc.json', 'json');
11+
}
12+
13+
export async function beforeEach() {
14+
await driver.drop();
15+
await driver.create();
16+
17+
// Make new "documents" so the _id field is not carried over from the last run
18+
documents = Array.from({ length: 10000 }, () => ({ ...smallDoc }));
19+
20+
collection = driver.collection;
21+
}
22+
23+
export async function run() {
24+
for (const doc of documents) {
25+
await collection.insertOne(doc);
26+
}
27+
}
28+
29+
export async function after() {
30+
await driver.drop();
31+
await driver.close();
32+
}

0 commit comments

Comments
 (0)