Contains reusable logic to check Oomnitza begin criteria for objects
Project description
Package contains reusable logic to check Oomnitza begin criteria for objects.
The check_rules handler used to check that the given document corresponds to the given rules, e.g. matches them.
given_result = check_rules(
{
"rules": [],
"groupOp": "and",
"groups": [
{
"groupOp": "and",
"rules": [
{
"op": "cn",
"data": "CC1UH",
"field": "ASSETS.serial_number",
}
],
"groups": [],
},
],
},
document={
"equipment_id": "ad2c2ab54adb481c8436d6238838813a",
"assigned_to": "2e84e8e99431411a84f2339bd02cacb0",
"serial_number": "C02CC1UHMD6T1",
"model": "MacBookPro16,1",
},
changed_values=None,
object_type="dontcare",
)
assert given_result, "serial number matches"
The check_rule_by_op handler used to check that the given values satisfy the specified operator, e.g. equal, begins_with, less_or_equal, etc.
assert check_rule_by_op(Op.LESS_OR_EQUAL, "1", "2")
assert check_rule_by_op(Op.HAS_BEEN_CHANGED, "before", "after")
assert not check_rule_by_op(Op.ENDS_WITH, "aaa", "b")
Development
Install package with or without test dependencies.
python3 -m venv .venv
source .venv/bin/activate
pip install oomnitza_rule_checker
pip install -e '.[tests]'
Feel free to write additional tests to cover the new changes and run test suite.
pytest
Distribution
Build and upload the package to the PyPi repository.
python setup.py sdist register upload
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for oomnitza_rule_checker-0.3.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8728e1d4a7957521460e869cd3ee846974578687379f1ec3db0982e8b640f7ac |
|
MD5 | 7d907924245ec6febc069389e3ef901a |
|
BLAKE2b-256 | 6cd0a3fc9b7c753faee7061419c7a05b3fc5e3062c4ba5314b8aa58af7544818 |
Close
Hashes for oomnitza_rule_checker-0.3.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | af41848f40467cddec348ff4c0f9a6ea7f99593ecca54e88c9b158f369657f02 |
|
MD5 | 991e8846e7bb5ce7aa27c7eb39f90a7f |
|
BLAKE2b-256 | 96be96f4b65eb86b8dc56730d8897a9fffffa82185f857dfb5300d5ce188f9f3 |