php-sqlsrv/test/functional/pdo_sqlsrv/pdo_ae_bindColumn_pdoparam_float_bits.phpt

100 lines
3.9 KiB
Plaintext
Raw Normal View History

2018-02-27 22:38:49 +01:00
--TEST--
2018-03-03 01:34:47 +01:00
Test for retrieving encrypted data from float types columns using PDO::bindColumn
2018-02-27 22:38:49 +01:00
--DESCRIPTION--
2018-03-03 01:34:47 +01:00
Test conversion from float types column to output of PDO::PARAM types
2018-03-13 20:50:20 +01:00
With or without Always Encrypted, conversion works if:
2018-03-03 01:34:47 +01:00
1. From any float type column to PDO::PARAM_STR
2. From any float type column to PDO::PARAM_LOB
2018-02-27 22:38:49 +01:00
--SKIPIF--
<?php require('skipif_mid-refactor.inc'); ?>
--FILE--
<?php
require_once("MsCommon_mid-refactor.inc");
require_once("AEData.inc");
$dataType = "float";
$bits = array(1, 12, 24, 36, 53);
$inputValues = array(9223372036854775808.9223372036854775808, -9223372036854775808.9223372036854775808);
2018-03-03 01:34:47 +01:00
$numint = 19;
2018-02-27 22:38:49 +01:00
try {
$conn = connect("", array(), PDO::ERRMODE_SILENT);
2018-03-03 01:34:47 +01:00
foreach ($bits as $m) {
// compute the epsilon for comparing doubles
// when $m <= 24, the precision is 7 digits
// when $m > 24, the precision is 15 digits, but PHP float only supports up to 14 digits
$epsilon;
if ($m <= 24) {
$epsilon = pow(10, $numint - 7);
} else {
$epsilon = pow(10, $numint - 14);
}
$typeFull = "$dataType($m)";
echo "\nTesting $typeFull:\n";
2018-02-27 22:38:49 +01:00
2018-03-03 01:34:47 +01:00
//create and populate table containing float(m) columns
$tbname = "test_" . $dataType . $m;
$colMetaArr = array(new ColumnMeta($typeFull, "c_det"), new ColumnMeta($typeFull, "c_rand", null, "randomized"));
2018-02-27 22:38:49 +01:00
createTable($conn, $tbname, $colMetaArr);
insertRow($conn, $tbname, array("c_det" => $inputValues[0], "c_rand" => $inputValues[1]));
2018-03-03 01:34:47 +01:00
// fetchby specifying PDO::PARAM_ types with PDO::bindColumn
2018-02-27 22:38:49 +01:00
$query = "SELECT c_det, c_rand FROM $tbname";
foreach ($pdoParamTypes as $pdoParamType) {
$det = "";
$rand = "";
$stmt = $conn->prepare($query);
$stmt->execute();
$stmt->bindColumn('c_det', $det, constant($pdoParamType));
$stmt->bindColumn('c_rand', $rand, constant($pdoParamType));
$row = $stmt->fetch(PDO::FETCH_BOUND);
2018-03-03 01:34:47 +01:00
// check the case when fetching as PDO::PARAM_BOOL, PDO::PARAM_NULL or PDO::PARAM_INT
2018-03-13 20:50:20 +01:00
// with or without AE: should not work
2018-02-27 22:38:49 +01:00
if ($pdoParamType == "PDO::PARAM_BOOL" || $pdoParamType == "PDO::PARAM_NULL" || $pdoParamType == "PDO::PARAM_INT") {
if (!is_null($det) || !is_null($rand)) {
2018-03-03 01:34:47 +01:00
echo "Retriving $typeFull data as $pdoParamType should return NULL\n";
2018-02-27 22:38:49 +01:00
}
} else {
2021-07-29 00:45:04 +02:00
if (PHP_VERSION_ID >= 80100 && $pdoParamType == "PDO::PARAM_LOB") {
// Starting with PHP 8.1 fetching as PDO::PARAM_LOB will return a resource obj
$det = fread($det, 8192);
$rand = fread($rand, 8192);
}
2018-03-03 01:34:47 +01:00
if (abs($det - $inputValues[0]) < $epsilon && abs($rand - $inputValues[1]) < $epsilon) {
echo "****Retrieving $typeFull as $pdoParamType is supported****\n";
} else {
echo "Retrieving $typeFull as $pdoParamType fails\n";
}
2018-02-27 22:38:49 +01:00
}
}
dropTable($conn, $tbname);
}
unset($stmt);
unset($conn);
} catch (PDOException $e) {
echo $e->getMessage();
}
?>
--EXPECT--
Testing float(1):
2018-03-03 01:34:47 +01:00
****Retrieving float(1) as PDO::PARAM_STR is supported****
****Retrieving float(1) as PDO::PARAM_LOB is supported****
2018-02-27 22:38:49 +01:00
Testing float(12):
2018-03-03 01:34:47 +01:00
****Retrieving float(12) as PDO::PARAM_STR is supported****
****Retrieving float(12) as PDO::PARAM_LOB is supported****
2018-02-27 22:38:49 +01:00
Testing float(24):
2018-03-03 01:34:47 +01:00
****Retrieving float(24) as PDO::PARAM_STR is supported****
****Retrieving float(24) as PDO::PARAM_LOB is supported****
2018-02-27 22:38:49 +01:00
Testing float(36):
2018-03-03 01:34:47 +01:00
****Retrieving float(36) as PDO::PARAM_STR is supported****
****Retrieving float(36) as PDO::PARAM_LOB is supported****
2018-02-27 22:38:49 +01:00
Testing float(53):
2018-03-03 01:34:47 +01:00
****Retrieving float(53) as PDO::PARAM_STR is supported****
****Retrieving float(53) as PDO::PARAM_LOB is supported****