comparison tests/test-bundle2-remote-changegroup.t @ 36217:1ee1a42bfdae

tests: test using both versions of SSH protocol Now that the version 2 of the SSH protocol is usable in core, we can start actively testing it more widely outside of low-level protocol tests. We add #testcases variants to a handful of tests so we exercise both version 1 and version 2 of the SSH protocol when testing. This will allow us to more easily find regressions and variances as protocol 2 is developed. It will also make it easier to continue testing with protocol version 1 once version 2 is enabled by default. There are a handful of tests using ssh:// that should also gain test variances. One - test-push-race.t - already has a #testcases. This would require combinatorial cases. I didn't want to go down that rabbit hole, so that test is unchanged. Thinking aloud, there is probably an opportunity to automatically run tests with multiple server/protocol implementations. Ideally any test that performed server interaction would run with all supported server implementations and protocols so we could find variances between servers and protocols. But this has been a long-standing issue with our test harness. I don't think it is an easily solved problem. But it would be nice... Differential Revision: https://phab.mercurial-scm.org/D2206
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 12 Feb 2018 16:35:06 -0800
parents eb586ed5d8ce
children 5da299dabdc1
comparison
equal deleted inserted replaced
36216:7218e93ade47 36217:1ee1a42bfdae
1 #require killdaemons 1 #require killdaemons
2
3 #testcases sshv1 sshv2
4
5 #if sshv2
6 $ cat >> $HGRCPATH << EOF
7 > [experimental]
8 > sshpeer.advertise-v2 = true
9 > sshserver.support-v2 = true
10 > EOF
11 #endif
2 12
3 Create an extension to test bundle2 remote-changegroup parts 13 Create an extension to test bundle2 remote-changegroup parts
4 14
5 $ cat > bundle2.py << EOF 15 $ cat > bundle2.py << EOF
6 > """A small extension to test bundle2 remote-changegroup parts. 16 > """A small extension to test bundle2 remote-changegroup parts.