Compare data structures containing matching CIDs of different versions and encoding
Project description
pytest-cid
Compare data structures containing matching CIDs of different versions and encodings
A simple wrapper around py-cid
for easily writing tests
involving CIDs in datastructures.
Table of Contents
Install
Install with pip:
pip install pytest-cid
Usage
Basic usage example:
>>> import pytest_cid >>> cid_1 = "zb2rhfE3SX3q7Ha6UErfMqQReKsmLn73BvdDRagHDM6X1eRFN" >>> cid_2 = "bafkreid7qoywk77r7rj3slobqfekdvs57qwuwh5d2z3sqsw52iabe3mqne" >>> assert pytest_cid.match(cid_1) == cid_2 >>> assert pytest_cid.normalize(cid_1) == pytest_cid.normalize(cid_2) >>> cid_struct_1 = { ... "Hash": "QmQcCtMgLVwvMQGu6mvsRYLjwqrZJcYtH4mboM9urWW9vX", ... "Name": "fsdfgh", "Size": "16" ... } >>> cid_struct_2 = { ... "Hash": "f0170122021b377e527deaa9698a451fa07232d7cd9494f6553252f325559d9053b565b38", ... "Name": "fsdfgh", "Size": "16" ... } >>> assert pytest_cid.match(cid_struct_1) == cid_struct_2 >>> assert pytest_cid.match(cid_struct_1) != cid_1
Documentation
FIXME (Usage example covers the whole API as of 1.0.0)
Contribute
IRC/Matrix
Join us on Matrix or on IRC on #py-ipfs on chat.freenode.org if you have any suggestions, questions or just want to chat about IPFS and/or Python with us.
- Please note however that, at the time of writing, the default
matrix.org
server is severely overloaded and your messages may only arrive with extreme delay; using a different homeserver is hence highly recommended.
Bug reports
You can submit bug reports using the GitHub issue tracker.
Pull requests
Pull requests are welcome. Before submitting a new pull request, please make sure that your code passes both the code formatting check:
$ tox -e styleck
And the unit tests:
$ tox
Please make sure to include new unit tests for new features or changes in behavior.
License
Distributed under the terms of the Mozilla Public License 2.0 license, “pytest-cid” is free and open source software. Details may be found in the LICENSE file in this repository.
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
Hashes for pytest_cid-1.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6eb2259740c937c735bfa2327f84cee86f7838b531a0eda15fbf159852e1f72 |
|
MD5 | c36b0b04e24c6280532335381b1ce673 |
|
BLAKE2-256 | f6110b9804d1fd02335805a2564b490e04e785321b6e6fab93ec7d2d2ae59d4a |