# HG changeset patch # User Gregory Szorc # Date 2017-09-28 10:17:30 # Node ID 880e47351d1af1606916c2a89a86e8016ec28259 # Parent b76937fafe8aad2c0e2bba23b1d129bdaa41e48e tests: add tests for clone bundles with --uncompressed Currently, --uncompressed will always clone from the origin server, even if a stream clone bundle is present. Let's add tests demonstrating this behavior. Differential Revision: https://phab.mercurial-scm.org/D832 diff --git a/tests/test-clonebundles.t b/tests/test-clonebundles.t --- a/tests/test-clonebundles.t +++ b/tests/test-clonebundles.t @@ -431,3 +431,73 @@ Test where attribute is missing from som finished applying clone bundle searching for changes no changes found + +Test interaction between clone bundles and --uncompressed + +A manifest with just a gzip bundle + + $ cat > server/.hg/clonebundles.manifest << EOF + > http://localhost:$HGPORT1/gz-a.hg BUNDLESPEC=gzip-v2 + > EOF + + $ hg clone -U --uncompressed http://localhost:$HGPORT uncompressed-gzip + streaming all changes + 4 files to transfer, 613 bytes of data + transferred 613 bytes in * seconds (*) (glob) + searching for changes + no changes found + +A manifest with a stream clone but no BUNDLESPEC + + $ cat > server/.hg/clonebundles.manifest << EOF + > http://localhost:$HGPORT1/packed.hg + > EOF + + $ hg clone -U --uncompressed http://localhost:$HGPORT uncompressed-no-bundlespec + streaming all changes + 4 files to transfer, 613 bytes of data + transferred 613 bytes in * seconds (*) (glob) + searching for changes + no changes found + +A manifest with a gzip bundle and a stream clone + + $ cat > server/.hg/clonebundles.manifest << EOF + > http://localhost:$HGPORT1/gz-a.hg BUNDLESPEC=gzip-v2 + > http://localhost:$HGPORT1/packed.hg BUNDLESPEC=none-packed1 + > EOF + + $ hg clone -U --uncompressed http://localhost:$HGPORT uncompressed-gzip-packed + streaming all changes + 4 files to transfer, 613 bytes of data + transferred 613 bytes in * seconds (*) (glob) + searching for changes + no changes found + +A manifest with a gzip bundle and stream clone with supported requirements + + $ cat > server/.hg/clonebundles.manifest << EOF + > http://localhost:$HGPORT1/gz-a.hg BUNDLESPEC=gzip-v2 + > http://localhost:$HGPORT1/packed.hg BUNDLESPEC=none-packed1;requirements%3Drevlogv1 + > EOF + + $ hg clone -U --uncompressed http://localhost:$HGPORT uncompressed-gzip-packed-requirements + streaming all changes + 4 files to transfer, 613 bytes of data + transferred 613 bytes in * seconds (*) (glob) + searching for changes + no changes found + +A manifest with a gzip bundle and a stream clone with unsupported requirements + + $ cat > server/.hg/clonebundles.manifest << EOF + > http://localhost:$HGPORT1/gz-a.hg BUNDLESPEC=gzip-v2 + > http://localhost:$HGPORT1/packed.hg BUNDLESPEC=none-packed1;requirements%3Drevlogv42 + > EOF + + $ hg clone -U --uncompressed http://localhost:$HGPORT uncompressed-gzip-packed-unsupported-requirements + streaming all changes + 4 files to transfer, 613 bytes of data + transferred 613 bytes in * seconds (*) (glob) + searching for changes + no changes found