aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHilmar R <u02@u29lx193>2021-02-28 21:06:16 +0100
committerHilmar R <u02@u29lx193>2021-03-01 18:48:11 +0100
commitc26dede97f626b52b7bf8962ed55d1dbda86abe8 (patch)
tree3c8c9bc97aa09f7ce9afe9bf467cf87bbf2c7d0b /tests
parentea3390d626f85b7293a750958bfd1b5460958365 (diff)
downloadvolse-hubzilla-c26dede97f626b52b7bf8962ed55d1dbda86abe8.tar.gz
volse-hubzilla-c26dede97f626b52b7bf8962ed55d1dbda86abe8.tar.bz2
volse-hubzilla-c26dede97f626b52b7bf8962ed55d1dbda86abe8.zip
get dev
Diffstat (limited to 'tests')
-rw-r--r--[-rwxr-xr-x]tests/travis/gen_apidocs.sh0
-rw-r--r--[-rwxr-xr-x]tests/travis/prepare.sh0
-rw-r--r--[-rwxr-xr-x]tests/travis/prepare_mysql.sh0
-rw-r--r--[-rwxr-xr-x]tests/travis/prepare_pgsql.sh0
-rw-r--r--tests/unit/Lib/KeyutilsTest.php93
-rw-r--r--tests/unit/Web/HttpSigTest.php6
6 files changed, 96 insertions, 3 deletions
diff --git a/tests/travis/gen_apidocs.sh b/tests/travis/gen_apidocs.sh
index e5938e1e8..e5938e1e8 100755..100644
--- a/tests/travis/gen_apidocs.sh
+++ b/tests/travis/gen_apidocs.sh
diff --git a/tests/travis/prepare.sh b/tests/travis/prepare.sh
index 267b4ec46..267b4ec46 100755..100644
--- a/tests/travis/prepare.sh
+++ b/tests/travis/prepare.sh
diff --git a/tests/travis/prepare_mysql.sh b/tests/travis/prepare_mysql.sh
index 5b1c96d78..5b1c96d78 100755..100644
--- a/tests/travis/prepare_mysql.sh
+++ b/tests/travis/prepare_mysql.sh
diff --git a/tests/travis/prepare_pgsql.sh b/tests/travis/prepare_pgsql.sh
index c6b12e4d6..c6b12e4d6 100755..100644
--- a/tests/travis/prepare_pgsql.sh
+++ b/tests/travis/prepare_pgsql.sh
diff --git a/tests/unit/Lib/KeyutilsTest.php b/tests/unit/Lib/KeyutilsTest.php
new file mode 100644
index 000000000..d1b0b5ab8
--- /dev/null
+++ b/tests/unit/Lib/KeyutilsTest.php
@@ -0,0 +1,93 @@
+<?php
+/*
+ * Copyright (c) 2016-2017 Hubzilla
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+namespace Zotlabs\Tests\Unit\Lib;
+
+use phpseclib\Crypt\RSA;
+use phpseclib\Math\BigInteger;
+use Zotlabs\Tests\Unit\UnitTestCase;
+use Zotlabs\Lib\Keyutils;
+
+/**
+ * @brief Unit Test case for Keyutils class.
+ *
+ * @covers Zotlabs\Lib\Keyutils
+ */
+
+class KeyutilsTest extends UnitTestCase {
+
+ protected function getPubPKCS1() {
+ $key = '-----BEGIN RSA PUBLIC KEY-----
+MIIBCgKCAQEArXcEXQSkk25bwDxq5Ym85/OwernfOz0hgve46Jm1KXCF0+yeje8J
+BDbQTsMgkF+G8eP1er3oz3E0qlIFpYrza5o6kaaLETSroTyZR5QW5S21r/QJHE+4
+F08bw1zp9hrlvoOCE/g/W0mr3asO/x7LrQRKOETlZ/U6HGexTdYLyKlXJtB+VKjI
+XKAHxfVLRW2AvnFj+deowS1OhTN8ECpz88xG9wnh5agoq7Uol0WZNNm0p4oR6+cd
+zTPx/mBwcOoSqHLlO7ZACbx/VyD5G7mQKWfGP4b96D8FcUO74531my+aKIpLF4Io
+1JN4R4a4P8tZ8BkCnMvpuq9TF1s6vEthYQIDAQAB
+-----END RSA PUBLIC KEY-----';
+ return str_replace(["\r", "\n"], "\r\n", $key);
+ }
+
+ protected function getPubPKCS8() {
+ $key = '-----BEGIN PUBLIC KEY-----
+MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDUKfOIkFX/Zcv6bmaTIYO6OO2g
+XQOne+iPfXo6YDdrtvvQNZwW5P/fptrgBzmUBkpuc/sEEKpMV2bGhBLsWSlPBYHe
+2ewwLwyzbnuHvGhc1PzwMNQ7R60ubVDQT6sBVigYGZIDBgUPjAXeqmg5qgWWh04H
+8Zf/YxyoGEovWDMxGQIDAQAB
+-----END PUBLIC KEY-----';
+ return str_replace(["\r", "\n"], "\r\n", $key);
+ }
+
+ public function testMeToPem() {
+ Keyutils::pemToMe($this->getPubPKCS8(), $m, $e);
+ $gen_key = Keyutils::meToPem($m, $e);
+ self::assertEquals($this->getPubPKCS8(), $gen_key);
+ }
+
+ public function testRsaToPem() {
+ $rsa = new RSA();
+ $rsa->setPublicKey($this->getPubPKCS8());
+ $key = $rsa->getPublicKey(RSA::PUBLIC_FORMAT_PKCS1);
+ $gen_key = Keyutils::rsaToPem($key);
+ self::assertEquals($gen_key, $this->getPubPKCS8());
+ }
+
+ public function testPemToRsa() {
+ $rsa = new RSA();
+ $rsa->setPublicKey($this->getPubPKCS1());
+ $key = $rsa->getPublicKey(RSA::PUBLIC_FORMAT_PKCS8);
+ $gen_key = Keyutils::pemToRsa($key);
+ self::assertEquals($gen_key, $this->getPubPKCS1());
+ }
+
+ public function testPemToMe() {
+ Keyutils::pemToMe($this->getPubPKCS8(), $m, $e);
+ $gen_key = new RSA();
+ $gen_key->loadKey([
+ 'e' => new BigInteger($e, 256),
+ 'n' => new BigInteger($m, 256)
+ ]);
+ self::assertEquals($gen_key->getPublicKey(), $this->getPubPKCS8());
+ }
+
+}
diff --git a/tests/unit/Web/HttpSigTest.php b/tests/unit/Web/HttpSigTest.php
index bd11b96c8..5524e0510 100644
--- a/tests/unit/Web/HttpSigTest.php
+++ b/tests/unit/Web/HttpSigTest.php
@@ -71,7 +71,7 @@ class HttpSigTest extends UnitTestCase {
}
/**
- * @uses ::crypto_unencapsulate
+ * @uses ::Crypto::unencapsulate
*/
function testDecrypt_sigheader() {
$header = 'Header: iv="value_iv" key="value_key" alg="value_alg" data="value_data"';
@@ -86,7 +86,7 @@ class HttpSigTest extends UnitTestCase {
$this->assertSame($result, HTTPSig::decrypt_sigheader($header, 'site private key'));
}
/**
- * @uses ::crypto_unencapsulate
+ * @uses ::Crypto::unencapsulate
*/
function testDecrypt_sigheaderUseSitePrivateKey() {
// Create a stub for global function get_config() with expectation
@@ -95,7 +95,7 @@ class HttpSigTest extends UnitTestCase {
$header = 'Header: iv="value_iv" key="value_key" alg="value_alg" data="value_data"';
$result = [
- 'encrypted' => true,
+ 'encrypted' => true,
'iv' => 'value_iv',
'key' => 'value_key',
'alg' => 'value_alg',