This repository has been archived on 2025-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-02-05/src/tests/test_openclpow.py

30 lines
824 B
Python
Raw Normal View History

2021-01-16 19:58:40 +01:00
"""
Tests for openclpow module
"""
2021-07-29 21:16:37 +02:00
2021-01-16 19:58:40 +01:00
import unittest
2021-07-29 21:16:37 +02:00
from pybitmessage import openclpow, proofofwork
2021-01-16 19:58:40 +01:00
class TestOpenClPow(unittest.TestCase):
2021-01-16 19:58:40 +01:00
"""
Main opencl test case
"""
@classmethod
def setUpClass(cls):
openclpow.initCL()
@unittest.skipUnless(openclpow.enabledGpus, "No GPUs found / enabled")
2021-01-16 19:58:40 +01:00
def test_openclpow(self):
"""Check the working of openclpow module"""
target_ = 54227212183
initialHash = (
"3758f55b5a8d902fd3597e4ce6a2d3f23daff735f65d9698c270987f4e67ad590"
"b93f3ffeba0ef2fd08a8dc2f87b68ae5a0dc819ab57f22ad2c4c9c8618a43b3"
).decode("hex")
2021-01-16 19:58:40 +01:00
nonce = openclpow.do_opencl_pow(initialHash.encode("hex"), target_)
2021-07-29 21:16:37 +02:00
self.assertLess(
nonce - proofofwork.trial_value(nonce, initialHash), target_)