sapling/tests/test-rebase-issue-noparam-single-rev-t.py
Jun Wu 0c36fd8b5e tests: translate some .t tests to Python
Summary:
Those tests were converted using:

  echo *.t | xargs -P20 -n1 python -m testutil.dott.translate --black --verify

They run 5x faster (via run-tests.py), and 10x faster (via python directly).

run-tests.py on old .t files, 652 CPU seconds:

  % time ./run-tests.py `cat list-t.txt`  --noprogress
  .................................................................................................................................
  # Ran 129 tests, 0 skipped, 0 failed.
  ./run-tests.py `cat list-t.txt` --noprogress  505.30s user 146.37s system 1451% cpu 44.899 total

run-tests.py on new py tests, 135 CPU seconds:

  % time ./run-tests.py `cat list-py.txt` --noprogress
  .............................................................................................................................
  # Ran 125 tests, 0 skipped, 0 failed.
  ./run-tests.py `cat list-py.txt` --noprogress  55.73s user 78.80s system 744% cpu 18.061 total

vanilla python on new tests, 59 CPU seconds:

  % time (for i in `cat list-py.txt`; do python $i; done;)
  ( for i in `cat list-py.txt`; do; python $i; done; )  41.61s user 17.47s system 90% cpu 1:05.31 total

The new tests also have auto fix ability. `python test-foo-t.py --fix` will
autofix the code.

Reviewed By: xavierd

Differential Revision: D16172902

fbshipit-source-id: dda53990a7dfff5ac214c1237e4206a4d67e8e48
2019-07-17 21:11:32 -07:00

125 lines
2.4 KiB
Python

# Copyright (c) Facebook, Inc. and its affiliates.
# Copyright (c) Mercurial Contributors.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
from __future__ import absolute_import
from testutil.dott import feature, sh, testtmp # noqa: F401
# TODO: Make this test compatibile with obsstore enabled.
sh % "setconfig 'experimental.evolution='"
sh % "cat" << r"""
[extensions]
rebase=
[phases]
publish=False
""" >> "$HGRCPATH"
sh % "hg init a"
sh % "cd a"
sh % "echo c1" > "c1"
sh % "hg ci -Am c1" == "adding c1"
sh % "echo c2" > "c2"
sh % "hg ci -Am c2" == "adding c2"
sh % "echo l1" > "l1"
sh % "hg ci -Am l1" == "adding l1"
sh % "hg up -q -C 1"
sh % "echo r1" > "r1"
sh % "hg ci -Am r1" == "adding r1"
sh % "echo r2" > "r2"
sh % "hg ci -Am r2" == "adding r2"
sh % "tglog" == r"""
@ 4: 225af64d03e6 'r2'
|
o 3: 8d0a8c99b309 'r1'
|
| o 2: 87c180a611f2 'l1'
|/
o 1: 56daeba07f4b 'c2'
|
o 0: e8faad3d03ff 'c1'"""
# Rebase with no arguments - single revision in source branch:
sh % "hg up -q -C 2"
sh % "hg rebase" == r"""
rebasing 2:87c180a611f2 "l1"
saved backup bundle to $TESTTMP/a/.hg/strip-backup/87c180a611f2-a5be192d-rebase.hg"""
sh % "tglog" == r"""
@ 4: b1152cc99655 'l1'
|
o 3: 225af64d03e6 'r2'
|
o 2: 8d0a8c99b309 'r1'
|
o 1: 56daeba07f4b 'c2'
|
o 0: e8faad3d03ff 'c1'"""
sh % "cd .."
sh % "hg init b"
sh % "cd b"
sh % "echo c1" > "c1"
sh % "hg ci -Am c1" == "adding c1"
sh % "echo c2" > "c2"
sh % "hg ci -Am c2" == "adding c2"
sh % "echo l1" > "l1"
sh % "hg ci -Am l1" == "adding l1"
sh % "echo l2" > "l2"
sh % "hg ci -Am l2" == "adding l2"
sh % "hg up -q -C 1"
sh % "echo r1" > "r1"
sh % "hg ci -Am r1" == "adding r1"
sh % "tglog" == r"""
@ 4: 8d0a8c99b309 'r1'
|
| o 3: 1ac923b736ef 'l2'
| |
| o 2: 87c180a611f2 'l1'
|/
o 1: 56daeba07f4b 'c2'
|
o 0: e8faad3d03ff 'c1'"""
# Rebase with no arguments - single revision in target branch:
sh % "hg up -q -C 3"
sh % "hg rebase" == r"""
rebasing 2:87c180a611f2 "l1"
rebasing 3:1ac923b736ef "l2"
saved backup bundle to $TESTTMP/b/.hg/strip-backup/87c180a611f2-b980535c-rebase.hg"""
sh % "tglog" == r"""
@ 4: 023181307ed0 'l2'
|
o 3: 913ab52b43b4 'l1'
|
o 2: 8d0a8c99b309 'r1'
|
o 1: 56daeba07f4b 'c2'
|
o 0: e8faad3d03ff 'c1'"""
sh % "cd .."