sapling/eden/scm/tests/test-automv-t.py
John Reese 9fd86a4fae apply upgraded black 21.4b2 formatting to fbsource
Summary:
This applies the formatting changes from black v21.4b2 to all covered
projects in fbsource. Most changes are to single line docstrings, as black
will now remove leading and trailing whitespace to match PEP8. Any other
formatting changes are likely due to files that landed without formatting,
or files that previously triggered errors in black.

Any changes to code should be AST identical. Any test failures are likely
due to bad tests, or testing against the output of pyfmt.

Reviewed By: thatch

Differential Revision: D28204910

fbshipit-source-id: 804725bcd14f763e90c5ddff1d0418117c15809a
2021-05-04 22:16:51 -07:00

312 lines
7.5 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
# Tests for the automv extension; detect moved files at commit time.
(
sh % "cat"
<< r"""
[extensions]
automv=
rebase=
"""
>> "$HGRCPATH"
)
# Setup repo
sh % "hg init repo"
sh % "cd repo"
# Test automv command for commit
sh % "printf 'foo\\nbar\\nbaz\\n'" > "a.txt"
sh % "hg add a.txt"
sh % "hg commit -m 'init repo with a'"
# mv/rm/add
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg add b.txt"
sh % "hg status -C" == r"""
A b.txt
R a.txt"""
sh % "hg commit -m msg" == "detected move of 1 files"
sh % "hg status --change . -C" == r"""
A b.txt
a.txt
R a.txt"""
sh % "hg up -r 0" == "1 files updated, 0 files merged, 1 files removed, 0 files unresolved"
# mv/rm/add/modif
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg add b.txt"
sh % "printf '\\n'" >> "b.txt"
sh % "hg status -C" == r"""
A b.txt
R a.txt"""
sh % "hg commit -m msg" == "detected move of 1 files"
sh % "hg status --change . -C" == r"""
A b.txt
a.txt
R a.txt"""
sh % "hg up -r 0" == "1 files updated, 0 files merged, 1 files removed, 0 files unresolved"
# mv/rm/add/modif
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg add b.txt"
sh % "printf '\\nfoo\\n'" >> "b.txt"
sh % "hg status -C" == r"""
A b.txt
R a.txt"""
sh % "hg commit -m msg"
sh % "hg status --change . -C" == r"""
A b.txt
R a.txt"""
sh % "hg up -r 0" == "1 files updated, 0 files merged, 1 files removed, 0 files unresolved"
# mv/rm/add/modif/changethreshold
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg add b.txt"
sh % "printf '\\nfoo\\n'" >> "b.txt"
sh % "hg status -C" == r"""
A b.txt
R a.txt"""
sh % "hg commit --config 'automv.similarity=60' -m msg" == "detected move of 1 files"
sh % "hg status --change . -C" == r"""
A b.txt
a.txt
R a.txt"""
sh % "hg up -r 0" == "1 files updated, 0 files merged, 1 files removed, 0 files unresolved"
# mv
sh % "mv a.txt b.txt"
sh % "hg status -C" == r"""
! a.txt
? b.txt"""
sh % "hg commit -m msg" == r"""
nothing changed (1 missing files, see 'hg status')
[1]"""
sh % "hg status -C" == r"""
! a.txt
? b.txt"""
sh % "hg revert -aqC"
sh % "rm b.txt"
# mv/rm/add/notincommitfiles
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg add b.txt"
sh % "echo bar" > "c.txt"
sh % "hg add c.txt"
sh % "hg status -C" == r"""
A b.txt
A c.txt
R a.txt"""
sh % "hg commit c.txt -m msg"
sh % "hg status --change . -C" == "A c.txt"
sh % "hg status -C" == r"""
A b.txt
R a.txt"""
sh % "hg up -r 0" == "0 files updated, 0 files merged, 1 files removed, 0 files unresolved"
sh % "hg rm a.txt"
sh % "echo bar" > "c.txt"
sh % "hg add c.txt"
sh % "hg commit -m msg" == "detected move of 1 files"
sh % "hg status --change . -C" == r"""
A b.txt
a.txt
A c.txt
R a.txt"""
sh % "hg up -r 0" == "1 files updated, 0 files merged, 2 files removed, 0 files unresolved"
# mv/rm/add/--no-automv
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg add b.txt"
sh % "hg status -C" == r"""
A b.txt
R a.txt"""
sh % "hg commit --no-automv -m msg"
sh % "hg status --change . -C" == r"""
A b.txt
R a.txt"""
sh % "hg up -r 0" == "1 files updated, 0 files merged, 1 files removed, 0 files unresolved"
# Test automv command for commit --amend
# mv/rm/add
sh % "echo c" > "c.txt"
sh % "hg add c.txt"
sh % "hg commit -m 'revision to amend to'"
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg add b.txt"
sh % "hg status -C" == r"""
A b.txt
R a.txt"""
sh % "hg commit --amend -m amended" == "detected move of 1 files"
sh % "hg status --change . -C" == r"""
A b.txt
a.txt
A c.txt
R a.txt"""
sh % "hg up -r 0" == "1 files updated, 0 files merged, 2 files removed, 0 files unresolved"
# mv/rm/add/modif
sh % "echo c" > "c.txt"
sh % "hg add c.txt"
sh % "hg commit -m 'revision to amend to'"
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg add b.txt"
sh % "printf '\\n'" >> "b.txt"
sh % "hg status -C" == r"""
A b.txt
R a.txt"""
sh % "hg commit --amend -m amended" == "detected move of 1 files"
sh % "hg status --change . -C" == r"""
A b.txt
a.txt
A c.txt
R a.txt"""
sh % "hg up -r 0" == "1 files updated, 0 files merged, 2 files removed, 0 files unresolved"
# mv/rm/add/modif
sh % "echo c" > "c.txt"
sh % "hg add c.txt"
sh % "hg commit -m 'revision to amend to'"
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg add b.txt"
sh % "printf '\\nfoo\\n'" >> "b.txt"
sh % "hg status -C" == r"""
A b.txt
R a.txt"""
sh % "hg commit --amend -m amended"
sh % "hg status --change . -C" == r"""
A b.txt
A c.txt
R a.txt"""
sh % "hg up -r 0" == "1 files updated, 0 files merged, 2 files removed, 0 files unresolved"
# mv/rm/add/modif/changethreshold
sh % "echo c" > "c.txt"
sh % "hg add c.txt"
sh % "hg commit -m 'revision to amend to'"
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg add b.txt"
sh % "printf '\\nfoo\\n'" >> "b.txt"
sh % "hg status -C" == r"""
A b.txt
R a.txt"""
sh % "hg commit --amend --config 'automv.similarity=60' -m amended" == "detected move of 1 files"
sh % "hg status --change . -C" == r"""
A b.txt
a.txt
A c.txt
R a.txt"""
sh % "hg up -r 0" == "1 files updated, 0 files merged, 2 files removed, 0 files unresolved"
# mv
sh % "echo c" > "c.txt"
sh % "hg add c.txt"
sh % "hg commit -m 'revision to amend to'"
sh % "mv a.txt b.txt"
sh % "hg status -C" == r"""
! a.txt
? b.txt"""
sh % "hg commit --amend -m amended"
sh % "hg status -C" == r"""
! a.txt
? b.txt"""
sh % "hg up -Cr 0" == "1 files updated, 0 files merged, 1 files removed, 0 files unresolved"
# mv/rm/add/notincommitfiles
sh % "echo c" > "c.txt"
sh % "hg add c.txt"
sh % "hg commit -m 'revision to amend to'"
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg add b.txt"
sh % "echo bar" > "d.txt"
sh % "hg add d.txt"
sh % "hg status -C" == r"""
A b.txt
A d.txt
R a.txt"""
sh % "hg commit --amend -m amended d.txt"
sh % "hg status --change . -C" == r"""
A c.txt
A d.txt"""
sh % "hg status -C" == r"""
A b.txt
R a.txt"""
sh % "hg commit --amend -m amended" == "detected move of 1 files"
sh % "hg status --change . -C" == r"""
A b.txt
a.txt
A c.txt
A d.txt
R a.txt"""
sh % "hg up -r 0" == "1 files updated, 0 files merged, 3 files removed, 0 files unresolved"
# mv/rm/add/--no-automv
sh % "echo c" > "c.txt"
sh % "hg add c.txt"
sh % "hg commit -m 'revision to amend to'"
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg add b.txt"
sh % "hg status -C" == r"""
A b.txt
R a.txt"""
sh % "hg commit --amend -m amended --no-automv"
sh % "hg status --change . -C" == r"""
A b.txt
A c.txt
R a.txt"""
sh % "hg up -r 0" == "1 files updated, 0 files merged, 2 files removed, 0 files unresolved"
# mv/rm/commit/add/amend
sh % "echo c" > "c.txt"
sh % "hg add c.txt"
sh % "hg commit -m 'revision to amend to'"
sh % "mv a.txt b.txt"
sh % "hg rm a.txt"
sh % "hg status -C" == r"""
R a.txt
? b.txt"""
sh % "hg commit -m 'removed a'"
sh % "hg add b.txt"
sh % "hg commit --amend -m amended"
sh % "hg status --change . -C" == r"""
A b.txt
R a.txt"""
# error conditions
(
sh % "cat"
<< r"""
[automv]
similarity=110
"""
>> "$HGRCPATH"
)
sh % "hg commit -m 'revision to amend to'" == r"""
abort: automv.similarity must be between 0 and 100
[255]"""