tests/mocktime.py
author Yuya Nishihara <yuya@tcha.org>
Tue, 06 Mar 2018 02:43:17 -0600
changeset 36797 d4c760c997cd
parent 34316 12b355964de8
child 43076 2372284d9457
permissions -rw-r--r--
py3: drop encoding.strio() Its buffered nature makes TextIOWrapper unsuitable for temporarily wrapping bytes I/O.

from __future__ import absolute_import

import os
import time

class mocktime(object):
    def __init__(self, increment):
        self.time = 0
        self.increment = [float(s) for s in increment.split()]
        self.pos = 0

    def __call__(self):
        self.time += self.increment[self.pos % len(self.increment)]
        self.pos += 1
        return self.time

def uisetup(ui):
    time.time = mocktime(os.environ.get('MOCKTIME', '0.1'))