tests/mockblackbox.py
author Matt Harbison <matt_harbison@yahoo.com>
Tue, 25 Sep 2018 21:16:12 -0400
changeset 39909 5fe0b880200e
parent 37123 a8a902d7176e
child 43076 2372284d9457
permissions -rw-r--r--
py3: convert os.readlink() path to native strings on Windows Windows insisted that it needs to be str. I skipped the stuff in the posix module, and left `tests/f` and `run-tests.py` alone for now.

from __future__ import absolute_import
from mercurial.utils import (
    procutil,
)

# XXX: we should probably offer a devel option to do this in blackbox directly
def getuser():
    return b'bob'
def getpid():
    return 5000

# mock the date and user apis so the output is always the same
def uisetup(ui):
    procutil.getuser = getuser
    procutil.getpid = getpid