sapling/eden/scm/tests/test-convert-authormap-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

68 lines
1.6 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
(
sh % "cat"
<< r"""
[extensions]
convert=
"""
>> "$HGRCPATH"
)
# Prepare orig repo
sh % "hg init orig"
sh % "cd orig"
sh % "echo foo" > "foo"
sh % "'HGUSER=user name' hg ci -qAm foo"
sh % "cd .."
# Explicit --authors
sh % "cat" << r"""
user name = Long User Name
# comment
this line is ignored
""" > "authormap.txt"
sh % "hg convert --authors authormap.txt orig new" == r"""
initializing destination new repository
ignoring bad line in author map file authormap.txt: this line is ignored
scanning source...
sorting...
converting...
0 foo
writing author map file $TESTTMP/new/.hg/authormap"""
sh % "cat new/.hg/authormap" == "user name=Long User Name"
sh % "hg -Rnew log" == r"""
commit: d89716e88087
user: Long User Name
date: Thu Jan 01 00:00:00 1970 +0000
summary: foo"""
sh % "rm -rf new"
# Implicit .hg/authormap
sh % "hg init new"
sh % "mv authormap.txt new/.hg/authormap"
sh % "hg convert orig new" == r"""
ignoring bad line in author map file $TESTTMP/new/.hg/authormap: this line is ignored
scanning source...
sorting...
converting...
0 foo"""
sh % "hg -Rnew log" == r"""
commit: d89716e88087
user: Long User Name
date: Thu Jan 01 00:00:00 1970 +0000
summary: foo"""