Page MenuHomePhabricator

[services] Tests - Backup - Add attachments for backups
ClosedPublic

Authored by karol on Jul 26 2022, 2:34 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Nov 7, 4:44 AM
Unknown Object (File)
Thu, Oct 31, 4:31 PM
Unknown Object (File)
Sun, Oct 27, 3:42 AM
Unknown Object (File)
Sun, Oct 20, 6:37 PM
Unknown Object (File)
Oct 6 2024, 9:09 AM
Unknown Object (File)
Oct 6 2024, 9:07 AM
Unknown Object (File)
Oct 6 2024, 8:41 AM
Unknown Object (File)
Oct 6 2024, 8:11 AM

Details

Summary

Depends on D4637

Adding a piece of test for "add attachments for backup" functionality.

Test Plan
cd services
yarn run-performance-tests backup 1

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

karol edited the test plan for this revision. (Show Details)
karol added reviewers: tomek, varun.
karol added inline comments.
services/commtest/tests/backup_performance_test.rs
95 ↗(On Diff #14924)

This should go in a previous diff

tomek added inline comments.
services/commtest/tests/backup_performance_test.rs
95 ↗(On Diff #14924)

Are you going to move it to the previous diff?

108 ↗(On Diff #14924)

When we're not using index, we can simply iterate without using enumeration

112–117 ↗(On Diff #14924)

I don't think early exit is beneficial in this case. The "else" is just a single instruction, so maybe put it in if then?

This revision is now accepted and ready to land.Jul 26 2022, 5:20 AM
services/commtest/tests/backup_performance_test.rs
95 ↗(On Diff #14924)

yes, the change's coming

112–117 ↗(On Diff #14924)

ok

karol edited the summary of this revision. (Show Details)

address feedback