Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tests for opencas.py #27

Merged
merged 2 commits into from
May 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ Module.symvers
Module.markers
*.mod.c
modules.order
__pycache__/
*.py[cod]
*$py.class
Empty file.
15 changes: 15 additions & 0 deletions test/utils_tests/opencas-py-tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#
# Copyright(c) 2012-2019 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause-Clear
#

import sys


def pytest_configure(config):
jfckm marked this conversation as resolved.
Show resolved Hide resolved
try:
import helpers
except ImportError:
raise Exception("Couldn't import helpers")

sys.path.append(helpers.find_repo_root() + "/utils")
122 changes: 122 additions & 0 deletions test/utils_tests/opencas-py-tests/helpers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
#
# Copyright(c) 2012-2019 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause-Clear
#

import mock
import re
import os
from io import StringIO
from textwrap import dedent


def find_repo_root():
jfckm marked this conversation as resolved.
Show resolved Hide resolved
path = os.getcwd()

while os.path.realpath(path) != "/":
if ".git" in os.listdir(path):
return path

path = os.path.dirname(path)

raise Exception(
"Couldn't find repository root - unable to locate opencas.py"
)


def get_process_mock(return_value, stdout, stderr):
process_mock = mock.Mock()
attrs = {
"wait.return_value": return_value,
"communicate.return_value": (stdout, stderr),
}
process_mock.configure_mock(**attrs)

return process_mock


def get_mock_os_exists(existing_files):
return lambda x: x in existing_files


def get_hashed_config_list(conf):
"""
Convert list of config lines to list of config lines hashes,
drop empty lines
"""
hashed_conf = [get_conf_line_hash(x) for x in conf]

return [x for x in hashed_conf if x]


def get_conf_line_hash(line):
"""
Removes whitespace, lowercases, comments and sorts cache params if present.
Returns empty line for comment-only lines

We don't care about order of params and kinds of whitespace in config lines
so normalize it to compare. We do care about case in paths, but to simplify
testing we pretend we don't.
"""

def sort_cache_params(params):
return ",".join(sorted(params.split(",")))

line = line.split("#")[0]

cache_params_pattern = re.compile(r"(.*?\s)(\S+=\S+)")
match = cache_params_pattern.search(line)
if match:
sorted_params = sort_cache_params(match.group(2))
line = match.group(1) + sorted_params

return "".join(line.lower().split())


class MockConfigFile(object):
def __init__(self, buffer=""):
self.set_contents(buffer)

def __enter__(self):
return self.buffer

def __exit__(self, *args, **kwargs):
self.set_contents(self.buffer.getvalue())

def __call__(self, path, mode):
if mode == "w":
self.buffer = StringIO()

return self

def read(self):
return self.buffer.read()

def write(self, str):
return self.buffer.write(str)

def close(self):
self.set_contents(self.buffer.getvalue())

def readline(self):
return self.buffer.readline()

def __next__(self):
return self.buffer.__next__()

def __iter__(self):
return self

def set_contents(self, buffer):
self.buffer = StringIO(dedent(buffer).strip())


class CopyableMock(mock.Mock):
def __init__(self, *args, **kwargs):
super(CopyableMock, self).__init__(*args, **kwargs)
self.copies = []

def __deepcopy__(self, memo):
copy = mock.Mock(spec=self)
self.copies += [copy]
return copy
Loading