sapling/eden/scm/tests/test-fb-hgext-patchrmdir.py
Durham Goode 2f5130c882 py3: fix extdiff
Summary:
extdiff uses shutil.rmtree which calls os.rmdir with new python 3
options. Since we pathc os.rmdir, we need to support those options.

Reviewed By: quark-zju

Differential Revision: D23350968

fbshipit-source-id: 081d179dcd67b51ffdeb6b85899adf4e574a8d0f
2020-08-27 19:15:22 -07:00

78 lines
1.6 KiB
Python

from __future__ import absolute_import, print_function
import os
import sys
from edenscm.hgext import patchrmdir
from edenscm.mercurial import util
from hghave import require
if not sys.platform.startswith("linux"):
sys.stderr.write("skipped: linux required\n")
sys.exit(80)
patchrmdir.uisetup(None)
testtmp = os.environ["TESTTMP"]
d1 = os.path.join(testtmp, "d1")
d2 = os.path.join(testtmp, "d1", "d2")
os.mkdir(d1)
os.mkdir(d2)
def tryfunc(func):
try:
func()
except Exception as ex:
# normalize the error message across platforms
if "Non-empty directory" not in str(ex):
ex = "*"
else:
ex = "Non-empty directory"
print(" error: %s" % ex)
else:
print(" success")
print("rmdir d1 - should fail with ENOTEMPTY")
tryfunc(lambda: os.rmdir(d1))
print("rmdir d1/d2 - should succeed")
tryfunc(lambda: os.rmdir(d2))
open(d2, "w").close()
print("rmdir d1 - should fail with ENOTEMPTY")
tryfunc(lambda: os.rmdir(d1))
os.unlink(d2)
print("rmdir d1 - should succeed")
tryfunc(lambda: os.rmdir(d1))
print("rmdir d1 - should fail with ENOENT")
tryfunc(lambda: os.rmdir(d1))
if sys.version_info[0] >= 3:
os.mkdir(d1)
print("rmdir d1 by file descriptor - should succeed")
fd = os.open(testtmp, os.O_RDONLY)
tryfunc(lambda: os.rmdir("d1", dir_fd=fd))
else:
# Fake it so the output matches
print("rmdir d1 by file descriptor - should succeed")
print(" success")
os.mkdir(d1)
os.mkdir(d2)
print("removedirs d2 (and d1) - should succeed")
tryfunc(lambda: util.removedirs(d2))
print("removedirs d1 - should fail with ENOENT")
tryfunc(lambda: util.removedirs(d1))