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, Jul 4, 10:35 AM
Unknown Object (File)
Thu, Jul 4, 7:45 AM
Unknown Object (File)
Wed, Jul 3, 3:45 AM
Unknown Object (File)
Wed, Jul 3, 1:01 AM
Unknown Object (File)
Tue, Jul 2, 11:42 PM
Unknown Object (File)
Mon, Jul 1, 1:19 AM
Unknown Object (File)
Thu, Jun 27, 11:33 PM
Unknown Object (File)
Wed, Jun 26, 7:13 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