diff options
author | Victor Shyba <victor.shyba@gmail.com> | 2016-08-19 17:07:04 -0300 |
---|---|---|
committer | Victor Shyba <victor.shyba@gmail.com> | 2016-08-22 12:36:16 -0300 |
commit | c8c82b6663d122b0933a8459c4710c914edf7f84 (patch) | |
tree | bd18e3b4d389e5a8ef0570f15eb91cbb8b8951d4 /testing | |
parent | 8e3d85950bb54b7818f0356387bba81769787f13 (diff) |
[test] sync without changes
Syncing without any changes was reported as slow. This benchmark will
help measure it.
Diffstat (limited to 'testing')
-rw-r--r-- | testing/tests/perf/test_sync.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/tests/perf/test_sync.py b/testing/tests/perf/test_sync.py index 146f1394..668ceae7 100644 --- a/testing/tests/perf/test_sync.py +++ b/testing/tests/perf/test_sync.py @@ -57,3 +57,15 @@ def create_download(downloads, size): test_download_20_500k = create_download(20, 500*1000) test_download_100_100k = create_download(100, 100*1000) test_download_1000_10k = create_download(1000, 10*1000) + + +@pytest.inlineCallbacks +@pytest.mark.benchmark(group="test_nothing_to_sync") +def test_nothing_to_sync(soledad_client, txbenchmark_with_setup): + def setup(): + clean_client = soledad_client() + return (clean_client,), {} + + def sync(clean_client): + return clean_client.sync() + yield txbenchmark_with_setup(setup, sync) |