rana-cli/tests/utils.py

101 lines
2.7 KiB
Python
Raw Normal View History

2015-08-12 01:59:29 +00:00
# -*- coding: utf-8 -*-
import logging
2015-11-20 07:34:32 +00:00
import sys
2015-08-12 01:59:29 +00:00
2015-09-30 04:15:46 +00:00
from wakatime.compat import u
2015-08-12 21:21:32 +00:00
try:
2015-09-07 01:22:05 +00:00
import mock
2015-08-12 21:21:32 +00:00
except ImportError:
2015-09-07 01:22:05 +00:00
import unittest.mock as mock
2015-08-12 01:59:29 +00:00
try:
# Python 2.6
import unittest2 as unittest
except ImportError:
# Python >= 2.7
import unittest
class TestCase(unittest.TestCase):
2015-08-12 21:21:32 +00:00
patch_these = []
2015-08-12 01:59:29 +00:00
def setUp(self):
# disable logging while testing
logging.disable(logging.CRITICAL)
2015-08-12 21:21:32 +00:00
self.patched = {}
if hasattr(self, 'patch_these'):
for patch_this in self.patch_these:
namespace = patch_this[0] if isinstance(patch_this, (list, set)) else patch_this
2015-09-07 01:22:05 +00:00
patcher = mock.patch(namespace)
2015-08-12 21:21:32 +00:00
mocked = patcher.start()
2015-09-16 19:57:49 +00:00
mocked.reset_mock()
2015-08-12 21:21:32 +00:00
self.patched[namespace] = mocked
if isinstance(patch_this, (list, set)) and len(patch_this) > 0:
retval = patch_this[1]
if callable(retval):
retval = retval()
mocked.return_value = retval
def tearDown(self):
2015-09-07 01:22:05 +00:00
mock.patch.stopall()
2015-09-30 04:15:46 +00:00
def normalize_list(self, items):
return sorted([u(x) for x in items])
def assertListsEqual(self, first_list, second_list):
self.assertEquals(self.normalize_list(first_list), self.normalize_list(second_list))
2015-11-20 07:34:32 +00:00
2015-11-20 07:44:39 +00:00
@property
2015-11-20 07:34:32 +00:00
def isPy35(self):
return (sys.version_info[0] == 3 and sys.version_info[1] == 5)
try:
# Python >= 3
from tempfile import TemporaryDirectory
except ImportError:
# Python < 3
import shutil
import tempfile
class TemporaryDirectory(object):
"""Context manager for tempfile.mkdtemp().
Adds the ability to use with a `with` statement.
"""
def __enter__(self):
self.name = tempfile.mkdtemp()
return self.name
def __exit__(self, exc_type, exc_value, traceback):
shutil.rmtree(self.name)
2016-08-31 14:25:49 +00:00
class DynamicIterable(object):
def __init__(self, data, max_calls=None, raise_on_calls=None):
self.called = 0
self.max_calls = max_calls
self.raise_on_calls = raise_on_calls
self.index = 0
self.data = data
def __iter__(self):
return self
def __next__(self):
if self.raise_on_calls and self.called < len(self.raise_on_calls) and self.raise_on_calls[self.called]:
raise self.raise_on_calls[self.called]
if self.index >= len(self.data):
self.called += 1
self.index = 0
raise StopIteration
val = self.data[self.index]
self.index += 1
if not self.max_calls or self.called <= self.max_calls:
return val
return None
def next(self):
return self.__next__()