sapling/tests/test-hgsubversion-push-dirs.py
Jun Wu 584656dff3 codemod: join the auto-formatter party
Summary:
Turned on the auto formatter. Ran `arc lint --apply-patches --take BLACK **/*.py`.
Then run `arc lint` again so some other autofixers like spellchecker etc. looked
at the code base. Manually accept the changes whenever they make sense, or use
a workaround (ex. changing "dict()" to "dict constructor") where autofix is false
positive. Disabled linters on files that are hard (i18n/polib.py) to fix, or less
interesting to fix (hgsubversion tests), or cannot be fixed without breaking
OSS build (FBPYTHON4).

Conflicted linters (test-check-module-imports.t, part of test-check-code.t,
test-check-pyflakes.t) are removed or disabled.

Duplicated linters (test-check-pyflakes.t, test-check-pylint.t) are removed.

An issue of the auto-formatter is lines are no longer guarnateed to be <= 80
chars. But that seems less important comparing with the benefit auto-formatter
provides.

As we're here, also remove test-check-py3-compat.t, as it is currently broken
if `PYTHON3=/bin/python3` is set.

Reviewed By: wez, phillco, simpkins, pkaush, singhsrb

Differential Revision: D8173629

fbshipit-source-id: 90e248ae0c5e6eaadbe25520a6ee42d32005621b
2018-05-25 22:17:29 -07:00

138 lines
4.3 KiB
Python

# no-check-code -- see T24862348
import test_hgsubversion_util
class TestPushDirectories(test_hgsubversion_util.TestBase):
stupid_mode_tests = True
obsolete_mode_tests = True
def test_push_dirs(self):
repo_path = self.load_and_fetch("emptyrepo.svndump")[1]
changes = [
# Single file in single directory
("d1/a", "d1/a", "a\n"),
# Two files in one directory
("d2/a", "d2/a", "a\n"),
("d2/b", "d2/b", "a\n"),
# Single file in empty directory hierarchy
("d31/d32/d33/d34/a", "d31/d32/d33/d34/a", "a\n"),
("d31/d32/a", "d31/d32/a", "a\n"),
]
self.commitchanges(changes)
self.pushrevisions()
self.assertEqual(
test_hgsubversion_util.svnls(repo_path, "trunk"),
[
"d1",
"d1/a",
"d2",
"d2/a",
"d2/b",
"d31",
"d31/d32",
"d31/d32/a",
"d31/d32/d33",
"d31/d32/d33/d34",
"d31/d32/d33/d34/a",
],
)
# Add one revision with changed files only, no directory addition
# or deletion.
changes = [("d1/a", "d1/a", "aa\n"), ("d2/a", "d2/a", "aa\n")]
self.commitchanges(changes)
self.pushrevisions()
changes = [
# Remove single file in single directory
("d1/a", None, None),
# Remove one file out of two
("d2/a", None, None),
# Removing this file should remove one empty parent dir too
("d31/d32/d33/d34/a", None, None),
]
self.commitchanges(changes)
self.pushrevisions()
self.assertEqual(
test_hgsubversion_util.svnls(repo_path, "trunk"),
["d2", "d2/b", "d31", "d31/d32", "d31/d32/a"],
)
def test_push_new_dir_project_root_not_repo_root(self):
repo_path = self.load_and_fetch(
"fetch_missing_files_subdir.svndump", subdir="foo"
)[1]
changes = [("magic_new/a", "magic_new/a", "ohai")]
self.commitchanges(changes)
self.pushrevisions()
self.assertEqual(
test_hgsubversion_util.svnls(repo_path, "foo/trunk"),
[
"bar",
"bar/alpha",
"bar/beta",
"bar/delta",
"bar/gamma",
"foo",
"magic_new",
"magic_new/a",
],
)
def test_push_new_file_existing_dir_root_not_repo_root(self):
repo_path = self.load_and_fetch(
"empty_dir_in_trunk_not_repo_root.svndump", subdir="project"
)[1]
changes = [("narf/a", "narf/a", "ohai")]
self.commitchanges(changes)
self.assertEqual(
test_hgsubversion_util.svnls(repo_path, "project/trunk"), ["a", "narf"]
)
self.pushrevisions()
self.assertEqual(
test_hgsubversion_util.svnls(repo_path, "project/trunk"),
["a", "narf", "narf/a"],
)
changes = [("narf/a", None, None)]
self.commitchanges(changes)
self.pushrevisions()
self.assertEqual(
test_hgsubversion_util.svnls(repo_path, "project/trunk"), ["a"]
)
def test_push_single_dir_change_in_subdir(self):
# Tests simple pushing from default branch to a single dir repo
# Changes a file in a subdir (regression).
repo, repo_path = self.load_and_fetch(
"branch_from_tag.svndump", layout="single", subdir="tags"
)
changes = [
("tag_r3/alpha", "tag_r3/alpha", "foo"),
("tag_r3/new", "tag_r3/new", "foo"),
("new_dir/new", "new_dir/new", "foo"),
]
self.commitchanges(changes)
self.pushrevisions()
self.assertEqual(
test_hgsubversion_util.svnls(repo_path, "tags"),
[
"copied_tag",
"copied_tag/alpha",
"copied_tag/beta",
"new_dir",
"new_dir/new",
"tag_r3",
"tag_r3/alpha",
"tag_r3/beta",
"tag_r3/new",
],
)
if __name__ == "__main__":
import silenttestrunner
silenttestrunner.main(__name__)