mirror of
https://github.com/danog/phpseclib.git
synced 2024-12-03 10:08:04 +01:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
c7c150bcd9
@ -16,6 +16,6 @@ class Math_BigInteger_BCMathTest extends Math_BigInteger_TestCase
|
|||||||
|
|
||||||
parent::setUpBeforeClass();
|
parent::setUpBeforeClass();
|
||||||
|
|
||||||
self::ensureModeConstant('MATH_BIGINTEGER_MODE', MATH_BIGINTEGER_MODE_BCMATH);
|
self::ensureConstant('MATH_BIGINTEGER_MODE', MATH_BIGINTEGER_MODE_BCMATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,6 +16,6 @@ class Math_BigInteger_GMPTest extends Math_BigInteger_TestCase
|
|||||||
|
|
||||||
parent::setUpBeforeClass();
|
parent::setUpBeforeClass();
|
||||||
|
|
||||||
self::ensureModeConstant('MATH_BIGINTEGER_MODE', MATH_BIGINTEGER_MODE_GMP);
|
self::ensureConstant('MATH_BIGINTEGER_MODE', MATH_BIGINTEGER_MODE_GMP);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
21
tests/Math/BigInteger/InternalOpenSSLTest.php
Normal file
21
tests/Math/BigInteger/InternalOpenSSLTest.php
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @author Andreas Fischer <bantu@phpbb.com>
|
||||||
|
* @copyright MMXIII Andreas Fischer
|
||||||
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
|
*/
|
||||||
|
|
||||||
|
class Math_BigInteger_InternalOpenSSLTest extends Math_BigInteger_TestCase
|
||||||
|
{
|
||||||
|
static public function setUpBeforeClass()
|
||||||
|
{
|
||||||
|
if (!function_exists('openssl_public_encrypt'))
|
||||||
|
{
|
||||||
|
self::markTestSkipped('openssl_public_encrypt() function is not available.');
|
||||||
|
}
|
||||||
|
|
||||||
|
parent::setUpBeforeClass();
|
||||||
|
|
||||||
|
self::ensureConstant('MATH_BIGINTEGER_MODE', MATH_BIGINTEGER_MODE_INTERNAL);
|
||||||
|
}
|
||||||
|
}
|
@ -11,6 +11,7 @@ class Math_BigInteger_InternalTest extends Math_BigInteger_TestCase
|
|||||||
{
|
{
|
||||||
parent::setUpBeforeClass();
|
parent::setUpBeforeClass();
|
||||||
|
|
||||||
self::ensureModeConstant('MATH_BIGINTEGER_MODE', MATH_BIGINTEGER_MODE_INTERNAL);
|
self::ensureConstant('MATH_BIGINTEGER_MODE', MATH_BIGINTEGER_MODE_INTERNAL);
|
||||||
|
self::ensureConstant('MATH_BIGINTEGER_OPENSSL_DISABLE', true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@ abstract class PhpseclibTestCase extends PHPUnit_Framework_TestCase
|
|||||||
*
|
*
|
||||||
* @return null
|
* @return null
|
||||||
*/
|
*/
|
||||||
static protected function ensureModeConstant($constant, $expected)
|
static protected function ensureConstant($constant, $expected)
|
||||||
{
|
{
|
||||||
if (defined($constant))
|
if (defined($constant))
|
||||||
{
|
{
|
||||||
@ -26,7 +26,7 @@ abstract class PhpseclibTestCase extends PHPUnit_Framework_TestCase
|
|||||||
if (!runkit_constant_redefine($constant, $expected))
|
if (!runkit_constant_redefine($constant, $expected))
|
||||||
{
|
{
|
||||||
self::markTestSkipped(sprintf(
|
self::markTestSkipped(sprintf(
|
||||||
"Failed to redefine mode constant %s to %s",
|
"Failed to redefine constant %s to %s",
|
||||||
$constant,
|
$constant,
|
||||||
$expected
|
$expected
|
||||||
));
|
));
|
||||||
@ -35,7 +35,7 @@ abstract class PhpseclibTestCase extends PHPUnit_Framework_TestCase
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
self::markTestSkipped(sprintf(
|
self::markTestSkipped(sprintf(
|
||||||
"Skipping test because mode constant %s is %s instead of %s",
|
"Skipping test because constant %s is %s instead of %s",
|
||||||
$constant,
|
$constant,
|
||||||
$value,
|
$value,
|
||||||
$expected
|
$expected
|
||||||
|
Loading…
Reference in New Issue
Block a user