Skip to content

Commit

Permalink
Testing: Refactor software tests into dedicated directory tests
Browse files Browse the repository at this point in the history
git mv src/crate/client/test* tests/client/
git mv src/crate/testing/test* tests/testing/
  • Loading branch information
amotl committed Oct 31, 2024
1 parent bbc7b68 commit a28ab96
Show file tree
Hide file tree
Showing 30 changed files with 146 additions and 148 deletions.
24 changes: 15 additions & 9 deletions DEVELOP.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,34 +26,40 @@ see, for example, `useful command-line options for zope-testrunner`_.

Run all tests::

./bin/test -vvvv
bin/test

Run specific tests::

./bin/test -vvvv -t test_score
# Select modules.
bin/test -t test_cursor
bin/test -t client
bin/test -t testing

# Select doctests.
bin/test -t http.rst

Ignore specific test directories::

./bin/test -vvvv --ignore_dir=testing
bin/test --ignore_dir=testing

The ``LayerTest`` test cases have quite some overhead. Omitting them will save
a few cycles (~70 seconds runtime)::

./bin/test -t '!LayerTest'
bin/test -t '!LayerTest'

Invoke all tests without integration tests (~15 seconds runtime)::
Invoke all tests without integration tests (~10 seconds runtime)::

./bin/test --layer '!crate.testing.layer.crate' --test '!LayerTest'
bin/test --layer '!crate.testing.layer.crate' --test '!LayerTest'

Yet ~130 test cases, but only ~5 seconds runtime::
Yet ~60 test cases, but only ~1 second runtime::

./bin/test --layer '!crate.testing.layer.crate' --test '!LayerTest' \
bin/test --layer '!crate.testing.layer.crate' --test '!LayerTest' \
-t '!test_client_threaded' -t '!test_no_retry_on_read_timeout' \
-t '!test_wait_for_http' -t '!test_table_clustered_by'

To inspect the whole list of test cases, run::

./bin/test --list-tests
bin/test --list-tests

You can run the tests against multiple Python interpreters with `tox`_::

Expand Down
6 changes: 3 additions & 3 deletions bin/test
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ sys.argv[0] = os.path.abspath(sys.argv[0])

if __name__ == '__main__':
zope.testrunner.run([
'-vvv', '--auto-color',
'--test-path', join(base, 'src')],
)
'-vvvv', '--auto-color',
'--path', join(base, 'tests'),
])
2 changes: 1 addition & 1 deletion docs/by-example/connection.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ connect()
This section sets up a connection object, and inspects some of its attributes.

>>> from crate.client import connect
>>> from crate.client.test_util import ClientMocked
>>> from crate.testing.util import ClientMocked

>>> connection = connect(client=ClientMocked())
>>> connection.lowest_server_version.version
Expand Down
2 changes: 1 addition & 1 deletion docs/by-example/cursor.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ up the response for subsequent cursor operations.
>>> from crate.client import connect
>>> from crate.client.converter import DefaultTypeConverter
>>> from crate.client.cursor import Cursor
>>> from crate.client.test_util import ClientMocked
>>> from crate.testing.util import ClientMocked

>>> connection = connect(client=ClientMocked())
>>> cursor = connection.cursor()
Expand Down
69 changes: 0 additions & 69 deletions src/crate/client/test_util.py

This file was deleted.

81 changes: 65 additions & 16 deletions src/crate/testing/util.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,69 @@
class ExtraAssertions:
# -*- coding: utf-8; -*-
#
# Licensed to CRATE Technology GmbH ("Crate") under one or more contributor
# license agreements. See the NOTICE file distributed with this work for
# additional information regarding copyright ownership. Crate licenses
# this file to you under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. You may
# obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# However, if you have executed another commercial license agreement
# with Crate these terms will supersede the license and you may use the
# software solely pursuant to the terms of the relevant commercial agreement.
import unittest


class ClientMocked(object):

active_servers = ["http://localhost:4200"]

def __init__(self):
self.response = {}
self._server_infos = ("http://localhost:4200", "my server", "2.0.0")

def sql(self, stmt=None, parameters=None, bulk_parameters=None):
return self.response

def server_infos(self, server):
return self._server_infos

def set_next_response(self, response):
self.response = response

def set_next_server_infos(self, server, server_name, version):
self._server_infos = (server, server_name, version)

Check warning on line 42 in src/crate/testing/util.py

View check run for this annotation

Codecov / codecov/patch

src/crate/testing/util.py#L42

Added line #L42 was not covered by tests

def close(self):
pass


class ParametrizedTestCase(unittest.TestCase):
"""
Additional assert methods for unittest.
TestCase classes that want to be parametrized should
inherit from this class.
- https://github.com/python/cpython/issues/71339
- https://bugs.python.org/issue14819
- https://bugs.python.org/file43047/extra_assertions.patch
https://eli.thegreenplace.net/2011/08/02/python-unit-testing-parametrized-test-cases
"""
def __init__(self, methodName="runTest", param=None):
super(ParametrizedTestCase, self).__init__(methodName)
self.param = param

Check warning on line 57 in src/crate/testing/util.py

View check run for this annotation

Codecov / codecov/patch

src/crate/testing/util.py#L56-L57

Added lines #L56 - L57 were not covered by tests

def assertIsSubclass(self, cls, superclass, msg=None):
try:
r = issubclass(cls, superclass)
except TypeError:
if not isinstance(cls, type):
self.fail(self._formatMessage(msg,
'%r is not a class' % (cls,)))
raise
if not r:
self.fail(self._formatMessage(msg,
'%r is not a subclass of %r' % (cls, superclass)))
@staticmethod
def parametrize(testcase_klass, param=None):
""" Create a suite containing all tests taken from the given
subclass, passing them the parameter 'param'.
"""
testloader = unittest.TestLoader()
testnames = testloader.getTestCaseNames(testcase_klass)
suite = unittest.TestSuite()
for name in testnames:
suite.addTest(testcase_klass(name, param=param))
return suite

Check warning on line 69 in src/crate/testing/util.py

View check run for this annotation

Codecov / codecov/patch

src/crate/testing/util.py#L64-L69

Added lines #L64 - L69 were not covered by tests
Empty file added tests/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added tests/client/__init__.py
Empty file.
34 changes: 12 additions & 22 deletions src/crate/client/test_support.py → tests/client/layer.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@

import stopit

from crate.testing.layer import CrateLayer
from crate.testing.settings import \
crate_host, crate_path, crate_port, \
crate_transport_port, docs_path, localhost
from crate.client import connect
from crate.testing.layer import CrateLayer
from .settings import \
assets_path, crate_host, crate_path, crate_port, \
crate_transport_port, localhost


makeSuite = unittest.TestLoader().loadTestsFromTestCase
Expand Down Expand Up @@ -104,15 +104,15 @@ def setUpCrateLayerBaseline(test):
with connect(crate_host) as conn:
cursor = conn.cursor()

with open(docs_path('testing/testdata/mappings/locations.sql')) as s:
with open(assets_path('mappings/locations.sql')) as s:
stmt = s.read()
cursor.execute(stmt)
stmt = ("select count(*) from information_schema.tables "
"where table_name = 'locations'")
cursor.execute(stmt)
assert cursor.fetchall()[0][0] == 1

data_path = docs_path('testing/testdata/data/test_a.json')
data_path = assets_path('import/test_a.json')
# load testing data into crate
cursor.execute("copy locations from ?", (data_path,))
# refresh location table so imported data is visible immediately
Expand Down Expand Up @@ -145,10 +145,8 @@ def tearDownDropEntitiesBaseline(test):
class HttpsTestServerLayer:
PORT = 65534
HOST = "localhost"
CERT_FILE = os.path.abspath(os.path.join(os.path.dirname(__file__),
"pki/server_valid.pem"))
CACERT_FILE = os.path.abspath(os.path.join(os.path.dirname(__file__),
"pki/cacert_valid.pem"))
CERT_FILE = assets_path("pki/server_valid.pem")
CACERT_FILE = assets_path("pki/cacert_valid.pem")

__name__ = "httpsserver"
__bases__ = tuple()
Expand Down Expand Up @@ -237,18 +235,10 @@ def setUpWithHttps(test):
test.globs['pprint'] = pprint
test.globs['print'] = cprint

test.globs['cacert_valid'] = os.path.abspath(
os.path.join(os.path.dirname(__file__), "pki/cacert_valid.pem")
)
test.globs['cacert_invalid'] = os.path.abspath(
os.path.join(os.path.dirname(__file__), "pki/cacert_invalid.pem")
)
test.globs['clientcert_valid'] = os.path.abspath(
os.path.join(os.path.dirname(__file__), "pki/client_valid.pem")
)
test.globs['clientcert_invalid'] = os.path.abspath(
os.path.join(os.path.dirname(__file__), "pki/client_invalid.pem")
)
test.globs['cacert_valid'] = assets_path("pki/cacert_valid.pem")
test.globs['cacert_invalid'] = assets_path("pki/cacert_invalid.pem")
test.globs['clientcert_valid'] = assets_path("pki/client_valid.pem")
test.globs['clientcert_invalid'] = assets_path("pki/client_invalid.pem")


def _execute_statements(statements, on_error="ignore"):
Expand Down
23 changes: 8 additions & 15 deletions src/crate/testing/settings.py → tests/client/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,20 @@
# software solely pursuant to the terms of the relevant commercial agreement.
from __future__ import absolute_import

import os
from pathlib import Path


def docs_path(*parts):
return os.path.abspath(
os.path.join(
os.path.dirname(os.path.dirname(__file__)), *parts
)
)
def assets_path(*parts) -> str:
return str((project_root() / "tests" / "assets").joinpath(*parts).absolute())


def project_root(*parts):
return os.path.abspath(
os.path.join(docs_path("..", ".."), *parts)
)
def crate_path() -> str:
return str(project_root() / "parts" / "crate")


def crate_path(*parts):
return os.path.abspath(
project_root("parts", "crate", *parts)
)
def project_root() -> Path:
return Path(__file__).parent.parent.parent



crate_port = 44209
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

from urllib3 import Timeout

from .connection import Connection
from .http import Client
from crate.client.connection import Connection
from crate.client.http import Client
from crate.client import connect
from unittest import TestCase

from ..testing.settings import crate_host
from .settings import crate_host


class ConnectionTest(TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from crate.client import connect
from crate.client.converter import DataType, DefaultTypeConverter
from crate.client.http import Client
from crate.client.test_util import ClientMocked
from crate.testing.util import ClientMocked


class CursorTest(TestCase):
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/crate/client/test_http.py → tests/client/test_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
import uuid
import certifi

from .http import Client, CrateJsonEncoder, _get_socket_opts, _remove_certs_for_non_https
from .exceptions import ConnectionError, ProgrammingError, IntegrityError
from crate.client.http import Client, CrateJsonEncoder, _get_socket_opts, _remove_certs_for_non_https
from crate.client.exceptions import ConnectionError, ProgrammingError, IntegrityError

REQUEST = 'crate.client.http.Server.request'
CA_CERT_PATH = certifi.where()
Expand Down
8 changes: 4 additions & 4 deletions src/crate/client/tests.py → tests/client/tests.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import doctest
import unittest

from crate.client.test_connection import ConnectionTest
from crate.client.test_cursor import CursorTest
from crate.client.test_http import HttpClientTest, KeepAliveClientTest, ThreadSafeHttpClientTest, ParamsTest, \
from .test_connection import ConnectionTest
from .test_cursor import CursorTest
from .test_http import HttpClientTest, KeepAliveClientTest, ThreadSafeHttpClientTest, ParamsTest, \
RetryOnTimeoutServerTest, RequestsCaBundleTest, TestUsernameSentAsHeader, TestCrateJsonEncoder, \
TestDefaultSchemaHeader
from crate.client.test_support import makeSuite, setUpWithHttps, HttpsTestServerLayer, setUpCrateLayerBaseline, \
from .layer import makeSuite, setUpWithHttps, HttpsTestServerLayer, setUpCrateLayerBaseline, \
tearDownDropEntitiesBaseline, ensure_cratedb_layer


Expand Down
Empty file added tests/testing/__init__.py
Empty file.
Loading

0 comments on commit a28ab96

Please sign in to comment.