mirror of
https://github.com/php/php-src.git
synced 2026-04-14 03:22:58 +02:00
This patch adds missing newlines, trims multiple redundant final newlines into a single one, and trims redundant leading newlines in all *.phpt sections. According to POSIX, a line is a sequence of zero or more non-' <newline>' characters plus a terminating '<newline>' character. [1] Files should normally have at least one final newline character. C89 [2] and later standards [3] mention a final newline: "A source file that is not empty shall end in a new-line character, which shall not be immediately preceded by a backslash character." Although it is not mandatory for all files to have a final newline fixed, a more consistent and homogeneous approach brings less of commit differences issues and a better development experience in certain text editors and IDEs. [1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206 [2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2 [3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
139 lines
3.8 KiB
PHP
139 lines
3.8 KiB
PHP
--TEST--
|
|
PDO PgSQL pgsqlCopyToArray and pgsqlCopyToFile
|
|
--SKIPIF--
|
|
<?php # vim:se ft=php:
|
|
if (!extension_loaded('pdo') || !extension_loaded('pdo_pgsql')) die('skip not loaded');
|
|
require dirname(__FILE__) . '/config.inc';
|
|
require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
|
|
PDOTest::skip();
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
|
|
$db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');
|
|
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
|
$db->setAttribute(PDO::ATTR_STRINGIFY_FETCHES, false);
|
|
|
|
$db->exec('CREATE TABLE test (a integer not null primary key, b text, c integer)');
|
|
|
|
$db->beginTransaction();
|
|
|
|
echo "Preparing test table for CopyTo tests\n";
|
|
$stmt = $db->prepare("INSERT INTO test (a, b, c) values (?, ?, ?)");
|
|
|
|
for($i=0;$i<3;$i++) {
|
|
$firstParameter = $i;
|
|
$secondParameter = "test insert {$i}";
|
|
$thirdParameter = NULL;
|
|
$stmt->bindValue(1, $firstParameter);
|
|
$stmt->bindValue(2, $secondParameter);
|
|
$stmt->bindValue(3, $thirdParameter);
|
|
$stmt->execute();
|
|
}
|
|
|
|
$db->commit();
|
|
|
|
echo "Testing pgsqlCopyToArray() with default parameters\n";
|
|
var_dump($db->pgsqlCopyToArray('test'));
|
|
echo "Testing pgsqlCopyToArray() with different field separator and not null indicator\n";
|
|
var_dump($db->pgsqlCopyToArray('test',";","NULL"));
|
|
echo "Testing pgsqlCopyToArray() with only selected fields\n";
|
|
var_dump($db->pgsqlCopyToArray('test',";","NULL",'a,c'));
|
|
|
|
echo "Testing pgsqlCopyToArray() with error\n";
|
|
try {
|
|
var_dump($db->pgsqlCopyToArray('test_error'));
|
|
} catch (Exception $e) {
|
|
echo "Exception: {$e->getMessage()}\n";
|
|
}
|
|
|
|
echo "Testing pgsqlCopyToFile() with default parameters\n";
|
|
|
|
$filename="test_pgsqlCopyToFile.csv";
|
|
var_dump($db->pgsqlCopyToFile('test',$filename));
|
|
echo file_get_contents($filename);
|
|
echo "Testing pgsqlCopyToFile() with different field separator and not null indicator\n";
|
|
var_dump($db->pgsqlCopyToFile('test',$filename,";","NULL"));
|
|
echo file_get_contents($filename);
|
|
echo "Testing pgsqlCopyToFile() with only selected fields\n";
|
|
var_dump($db->pgsqlCopyToFile('test',$filename,";","NULL",'a,c'));
|
|
echo file_get_contents($filename);
|
|
|
|
echo "Testing pgsqlCopyToFile() with error\n";
|
|
try {
|
|
var_dump($db->pgsqlCopyToFile('test_error',$filename));
|
|
} catch (Exception $e) {
|
|
echo "Exception: {$e->getMessage()}\n";
|
|
}
|
|
|
|
echo "Testing pgsqlCopyToFile() to unwritable file\n";
|
|
try {
|
|
var_dump($db->pgsqlCopyToFile('test', 'nonexistent/foo.csv'));
|
|
} catch (Exception $e) {
|
|
echo "Exception: {$e->getMessage()}\n";
|
|
}
|
|
|
|
if(isset($filename)) {
|
|
@unlink($filename);
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Preparing test table for CopyTo tests
|
|
Testing pgsqlCopyToArray() with default parameters
|
|
array(3) {
|
|
[0]=>
|
|
string(19) "0 test insert 0 \N
|
|
"
|
|
[1]=>
|
|
string(19) "1 test insert 1 \N
|
|
"
|
|
[2]=>
|
|
string(19) "2 test insert 2 \N
|
|
"
|
|
}
|
|
Testing pgsqlCopyToArray() with different field separator and not null indicator
|
|
array(3) {
|
|
[0]=>
|
|
string(21) "0;test insert 0;NULL
|
|
"
|
|
[1]=>
|
|
string(21) "1;test insert 1;NULL
|
|
"
|
|
[2]=>
|
|
string(21) "2;test insert 2;NULL
|
|
"
|
|
}
|
|
Testing pgsqlCopyToArray() with only selected fields
|
|
array(3) {
|
|
[0]=>
|
|
string(7) "0;NULL
|
|
"
|
|
[1]=>
|
|
string(7) "1;NULL
|
|
"
|
|
[2]=>
|
|
string(7) "2;NULL
|
|
"
|
|
}
|
|
Testing pgsqlCopyToArray() with error
|
|
Exception: SQLSTATE[42P01]: Undefined table: 7 %s: %s "test_error" %s
|
|
Testing pgsqlCopyToFile() with default parameters
|
|
bool(true)
|
|
0 test insert 0 \N
|
|
1 test insert 1 \N
|
|
2 test insert 2 \N
|
|
Testing pgsqlCopyToFile() with different field separator and not null indicator
|
|
bool(true)
|
|
0;test insert 0;NULL
|
|
1;test insert 1;NULL
|
|
2;test insert 2;NULL
|
|
Testing pgsqlCopyToFile() with only selected fields
|
|
bool(true)
|
|
0;NULL
|
|
1;NULL
|
|
2;NULL
|
|
Testing pgsqlCopyToFile() with error
|
|
Exception: SQLSTATE[42P01]: Undefined table: 7 %s: %s "test_error" %s
|
|
Testing pgsqlCopyToFile() to unwritable file
|
|
Exception: SQLSTATE[HY000]: General error: 7 Unable to open the file for writing
|