diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-01-06 16:34:38 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-01-06 16:34:38 +0000 |
commit | e3d30763dabdf12f961ed3d1d7cf4eaee44c65a9 (patch) | |
tree | ed3d493e8423ad9ccbde5e8e199e65164820e70f /tests/unit/Web | |
parent | 6252340804bee66736e49de4bdc08755510f1c70 (diff) | |
download | volse-hubzilla-e3d30763dabdf12f961ed3d1d7cf4eaee44c65a9.tar.gz volse-hubzilla-e3d30763dabdf12f961ed3d1d7cf4eaee44c65a9.tar.bz2 volse-hubzilla-e3d30763dabdf12f961ed3d1d7cf4eaee44c65a9.zip |
tests: Integrate the DB in "unit" tests.
Diffstat (limited to 'tests/unit/Web')
-rw-r--r-- | tests/unit/Web/HttpSigTest.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/unit/Web/HttpSigTest.php b/tests/unit/Web/HttpSigTest.php index 5524e0510..0a22b543a 100644 --- a/tests/unit/Web/HttpSigTest.php +++ b/tests/unit/Web/HttpSigTest.php @@ -70,9 +70,6 @@ class HttpSigTest extends UnitTestCase { ); } - /** - * @uses ::Crypto::unencapsulate - */ function testDecrypt_sigheader() { $header = 'Header: iv="value_iv" key="value_key" alg="value_alg" data="value_data"'; $result = [ @@ -85,9 +82,7 @@ class HttpSigTest extends UnitTestCase { $this->assertSame($result, HTTPSig::decrypt_sigheader($header, 'site private key')); } - /** - * @uses ::Crypto::unencapsulate - */ + function testDecrypt_sigheaderUseSitePrivateKey() { // Create a stub for global function get_config() with expectation $t = $this->getFunctionMock('Zotlabs\Web', 'get_config'); |