Skip to content

Commit 1be6d58

Browse files
authored
chore: make tests more splittable (#9638)
* chore: make tests more splittable * enable splitting by putting modules into separate files
1 parent 61c0d8b commit 1be6d58

21 files changed

+103
-25
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 0);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 9);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 10);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 11);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 12);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 13);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 14);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 15);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 16);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 17);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 18);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 1);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 19);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 2);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 3);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 4);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 5);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 6);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 7);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { runTestGroup } from './mutating-has-many-test-infra';
2+
3+
runTestGroup(20, 8);

tests/main/tests/integration/relationships/collection/mutating-has-many-test.ts tests/main/tests/integration/relationships/collection/mutating-has-many-test-infra.ts

+43-25
Original file line numberDiff line numberDiff line change
@@ -395,34 +395,52 @@ function getMutations(): Mutation[] {
395395
];
396396
}
397397

398-
module('Integration | Relationships | Collection | Mutation', function (hooks) {
399-
setupRenderingTest(hooks);
400-
401-
hooks.beforeEach(function () {
402-
this.owner.register('model:user', User);
398+
const STATES: Array<{
399+
startingState: { name: string; cb: (store: Store) => User };
400+
mutation: Mutation;
401+
}> = [];
402+
403+
getStartingState().forEach((startingState) => {
404+
getMutations().forEach((mutation) => {
405+
STATES.push({
406+
startingState,
407+
mutation,
408+
});
403409
});
410+
});
411+
412+
export function runTestGroup(splitNum: number, offset: number) {
413+
STATES.forEach(({ startingState, mutation }, index) => {
414+
// Run only every Nth test, offset by 0
415+
if (index % splitNum !== offset) {
416+
return;
417+
}
418+
419+
module(
420+
`Integration | Relationships | Collection | Mutation > Starting state: ${startingState.name} > Mutation: ${mutation.name}`,
421+
function (hooks) {
422+
setupRenderingTest(hooks);
423+
424+
hooks.beforeEach(function () {
425+
this.owner.register('model:user', User);
426+
});
404427

405-
getStartingState().forEach((startingState) => {
406-
module(`Starting state: ${startingState.name}`, function () {
407-
getMutations().forEach((mutation) => {
408-
module(`Mutation: ${mutation.name}`, function () {
409-
getMutations().forEach((mutation2) => {
410-
test(`followed by Mutation: ${mutation2.name}`, async function (assert) {
411-
const store = this.owner.lookup('service:store') as Store;
412-
const user = startingState.cb(store);
413-
const rc = await reactiveContext.call(this, user, {
414-
identity: null,
415-
type: 'user',
416-
fields: [{ name: 'friends', kind: 'hasMany', type: 'user', options: { async: false, inverse: null } }],
417-
});
418-
rc.reset();
419-
420-
await applyMutation(assert, store, user, mutation, rc);
421-
await applyMutation(assert, store, user, mutation2, rc);
428+
getMutations().forEach((mutation2) => {
429+
test(`followed by Mutation: ${mutation2.name}`, async function (assert) {
430+
const store = this.owner.lookup('service:store') as Store;
431+
const user = startingState.cb(store);
432+
const rc = await reactiveContext.call(this, user, {
433+
identity: null,
434+
type: 'user',
435+
fields: [{ name: 'friends', kind: 'hasMany', type: 'user', options: { async: false, inverse: null } }],
422436
});
437+
rc.reset();
438+
439+
await applyMutation(assert, store, user, mutation, rc);
440+
await applyMutation(assert, store, user, mutation2, rc);
423441
});
424442
});
425-
});
426-
});
443+
}
444+
);
427445
});
428-
});
446+
}

0 commit comments

Comments
 (0)