-
Notifications
You must be signed in to change notification settings - Fork 27
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
Basic Testing for Discojs #697
base: develop
Are you sure you want to change the base?
Changes from all commits
1e400d6
6f6746e
4d2bd7f
225af6c
26ddd82
0fd7983
536bb53
cef523b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,6 +1,6 @@ | ||||||
import { expect } from "chai"; | ||||||
import { Map, Range, Set } from "immutable"; | ||||||
|
||||||
import { mock, instance } from 'ts-mockito'; | ||||||
import { Model, WeightsContainer } from "./index.js"; | ||||||
import { | ||||||
Aggregator, | ||||||
|
@@ -20,10 +20,53 @@ AGGREGATORS.forEach(([name, Aggregator]) => | |||||
describe(`${name} implements Aggregator contract`, () => { | ||||||
it("starts at round zero", () => { | ||||||
const aggregator = new Aggregator(); | ||||||
|
||||||
expect(aggregator.round).to.equal(0); | ||||||
}); | ||||||
|
||||||
it("starts with no contributions", () => { | ||||||
const aggregator = new Aggregator(); | ||||||
|
||||||
expect(aggregator.size).to.equal(0); | ||||||
}) | ||||||
|
||||||
it("model correctly initialized", () => { | ||||||
const aggregator = new Aggregator(); | ||||||
|
||||||
const model = mock(Model); | ||||||
|
||||||
aggregator.setModel(instance(model)); | ||||||
expect(aggregator.model).to.equal(instance(model)); | ||||||
}); | ||||||
|
||||||
it("is full when created with no nodes", () => { | ||||||
const aggregator = new Aggregator(); | ||||||
|
||||||
expect(aggregator.isFull()); | ||||||
}); | ||||||
|
||||||
it("is not full when created with more than no nodes and empty", () => { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
const aggregator = new Aggregator(); | ||||||
aggregator.setNodes(Set.of("client 0")); | ||||||
|
||||||
expect(aggregator.isFull()).to.be.false; | ||||||
}); | ||||||
|
||||||
|
||||||
Comment on lines
+54
to
+55
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. too much whitespaces
Suggested change
|
||||||
|
||||||
it("is full when enough contributions", () => { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
const aggregator = new Aggregator(); | ||||||
aggregator.setNodes(Set.of("client 0", "client 1", "client 2")); | ||||||
|
||||||
for (let i = 0; i < 3; i++) | ||||||
for (let r = 0; r < aggregator.communicationRounds; r++) | ||||||
aggregator.add(`client ${i}`, WeightsContainer.of([i]), 0, r); | ||||||
|
||||||
expect(aggregator.isFull()).to.be.true; | ||||||
}); | ||||||
|
||||||
|
||||||
Comment on lines
+67
to
+68
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. whitespaces
Suggested change
|
||||||
|
||||||
it("moves forward with enough contributions", async () => { | ||||||
const aggregator = new Aggregator(); | ||||||
aggregator.setNodes(Set.of("client 0", "client 1", "client 2")); | ||||||
|
@@ -35,10 +78,36 @@ AGGREGATORS.forEach(([name, Aggregator]) => | |||||
aggregator.add(`client ${i}`, WeightsContainer.of([i]), 0, r); | ||||||
|
||||||
await results; // nothing to test | ||||||
|
||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ws |
||||||
expect(aggregator.round).to.equal(1); | ||||||
}); | ||||||
|
||||||
it("does not move forward with not enough contributions", async () => { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. double negation are hard on my brain. it also feels as a duplicate of the previous one. you can merge the two and check that it didn't advance with only two clients contributions but does with three. |
||||||
const aggregator = new Aggregator(); | ||||||
aggregator.setNodes(Set.of("client 0", "client 1", "client 2")); | ||||||
|
||||||
const results = aggregator.receiveResult(); | ||||||
|
||||||
for (let i = 0; i < 2; i++) | ||||||
for (let r = 0; r < aggregator.communicationRounds; r++) | ||||||
aggregator.add(`client ${i}`, WeightsContainer.of([i]), 0, r); | ||||||
|
||||||
await results; | ||||||
|
||||||
expect(aggregator.round).to.equal(0); | ||||||
}); | ||||||
|
||||||
it("Adding at the wrong round does not count", () => { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. reads more nicely. also, you can keep the test itself smaller by not having three clients but only one. less code == faster to understand => less bug.
Suggested change
|
||||||
const aggregator = new Aggregator(); | ||||||
aggregator.setNodes(Set.of("client 0", "client 1", "client 2")); | ||||||
|
||||||
for (let i = 0; i < 3; i++) | ||||||
for (let r = 0; r < aggregator.communicationRounds; r++) | ||||||
aggregator.add(`client ${i}`, WeightsContainer.of([i]), aggregator.round+1, r); | ||||||
|
||||||
expect(aggregator.size).to.equal(0); | ||||||
}); | ||||||
|
||||||
it("gives same results on each node", async () => { | ||||||
const network = setupNetwork(Aggregator); | ||||||
|
||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -4,33 +4,68 @@ import { WeightsContainer, aggregation } from './index.js' | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
describe('weights aggregation', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
it('avg of weights with two operands', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const actual = aggregation.avg([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const expected = aggregation.avg([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
WeightsContainer.of([1, 2, 3, -1], [-5, 6]), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
WeightsContainer.of([2, 3, 7, 1], [-10, 5]), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
WeightsContainer.of([3, 1, 5, 3], [-15, 19]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const expected = WeightsContainer.of([2, 2, 5, 1], [-10, 10]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const actual = WeightsContainer.of([2, 2, 5, 1], [-10, 10]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert.isTrue(actual.equals(expected)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert.isTrue(expected.equals(actual)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
it('sum of weights with two operands', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const actual = aggregation.sum([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const expected = aggregation.sum([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[[3, -4], [9]], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[[2, 13], [0]] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const expected = WeightsContainer.of([5, 9], [9]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const actual = WeightsContainer.of([5, 9], [9]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert.isTrue(actual.equals(expected)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert.isTrue(expected.equals(actual)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
it('diff of weights with two operands', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const actual = aggregation.diff([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const expected = aggregation.diff([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[[3, -4, 5], [9, 1]], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[[2, 13, 4], [0, 1]] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const expected = WeightsContainer.of([1, -17, 1], [9, 0]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const actual = WeightsContainer.of([1, -17, 1], [9, 0]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert.isTrue(actual.equals(expected)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert.isTrue(expected.equals(actual)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
it('avg of weights with no operands throws an error', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert.throws(() => aggregation.avg([])) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
it('sum of weights with no operands throws an error', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert.throws(() => aggregation.sum([])) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
it('diff of weights with no operands throws an error', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert.throws(() => aggregation.diff([])) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
it('avg of weights with different dimensions throws an error', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert.throws(() => aggregation.avg([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[[3, -4], [9]], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[[2, 13, 4], [0, 1]] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
])) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
it('sum of weights with different dimensions throws an error', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert.throws(() => aggregation.sum([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[[3, -4], [9]], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[[2, 13, 4], [0, 1]] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
])) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
it('diff of weights with different dimensions throws an error', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert.throws(() => aggregation.diff([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[[3, -4], [9]], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[[2, 13, 4], [0, 1]] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
])) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+37
to
+68
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is a bench test, you can simplify it by using a while at it, should it fail? an addition without value can be zero, a multiplication can be one; why is this test needed?
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,8 @@ | |
"webapp" | ||
], | ||
"dependencies": { | ||
"immutable": "4" | ||
"immutable": "4", | ||
"ts-mockito": "^2.6.1" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the root package.json is hardly ever changed, especially for dev deps used in a single package. I use it for syncing version of dependencies that are needed across many packages. |
||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "7", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's not needed (and is being shown as very red in my
git diff
).we don't enforce a formatter yet but I'm all for slowly moving to prettier (that is, when you add changes, prettify it around, but not the whole file if you only changed a line). I'm hopeful that the transition will be smoother this way.