From daac6d056753614077941da0a392c086dadbe965 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sun, 20 Oct 2013 13:15:28 -0500 Subject: When copying a hash, pass the api through to the new object --- tests/primitives/test_hashes.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'tests/primitives/test_hashes.py') diff --git a/tests/primitives/test_hashes.py b/tests/primitives/test_hashes.py index 03de8916..d721f7af 100644 --- a/tests/primitives/test_hashes.py +++ b/tests/primitives/test_hashes.py @@ -17,6 +17,8 @@ import pytest import six +from cryptography.bindings import _default_api + from cryptography.primitives import hashes from .utils import generate_base_hash_test @@ -33,6 +35,15 @@ class TestBaseHash(object): assert isinstance(m.hexdigest(), str) +class TestDefaultAPISHA1(object): + def test_default_api_creation(self): + """ + This test assumes the presence of SHA1 in the default API. + """ + h = hashes.SHA1() + assert h._api == _default_api + + class TestSHA1(object): test_SHA1 = generate_base_hash_test( hashes.SHA1, -- cgit v1.2.3 From 7a2a19176716530e938e31e09eac2dde679031ab Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sun, 20 Oct 2013 13:45:23 -0500 Subject: add test to verify api is being copied in hash --- tests/primitives/test_hashes.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'tests/primitives/test_hashes.py') diff --git a/tests/primitives/test_hashes.py b/tests/primitives/test_hashes.py index d721f7af..07e2d8e7 100644 --- a/tests/primitives/test_hashes.py +++ b/tests/primitives/test_hashes.py @@ -13,6 +13,8 @@ from __future__ import absolute_import, division, print_function +import pretend + import pytest import six @@ -35,6 +37,15 @@ class TestBaseHash(object): assert isinstance(m.hexdigest(), str) +class TestCopyHash(object): + def test_copy_api_object(self): + pretend_api = pretend.stub(copy_hash_context=lambda a: "copiedctx") + pretend_ctx = pretend.stub() + h = hashes.SHA1(api=pretend_api, ctx=pretend_ctx) + assert h._api is pretend_api + assert h.copy()._api is h._api + + class TestDefaultAPISHA1(object): def test_default_api_creation(self): """ -- cgit v1.2.3 From 463db6846a94e29b7ef565d176457f329e6d6db6 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Tue, 22 Oct 2013 18:28:31 -0500 Subject: use is for identical object comparison --- tests/primitives/test_hashes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/primitives/test_hashes.py') diff --git a/tests/primitives/test_hashes.py b/tests/primitives/test_hashes.py index 07e2d8e7..46517701 100644 --- a/tests/primitives/test_hashes.py +++ b/tests/primitives/test_hashes.py @@ -52,7 +52,7 @@ class TestDefaultAPISHA1(object): This test assumes the presence of SHA1 in the default API. """ h = hashes.SHA1() - assert h._api == _default_api + assert h._api is _default_api class TestSHA1(object): -- cgit v1.2.3