File: pdo_mysql_commit.phpt

package info (click to toggle)
php8.4 8.4.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208,108 kB
  • sloc: ansic: 1,060,628; php: 35,345; sh: 11,866; cpp: 7,201; pascal: 4,913; javascript: 3,091; asm: 2,810; yacc: 2,411; makefile: 689; xml: 446; python: 301; awk: 148
file content (96 lines) | stat: -rw-r--r-- 3,610 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
--TEST--
MySQL PDO->commit()
--EXTENSIONS--
pdo_mysql
--SKIPIF--
<?php
require_once __DIR__ . '/inc/mysql_pdo_test.inc';
MySQLPDOTest::skip();
MySQLPDOTest::skipNotTransactionalEngine();
--FILE--
<?php
    require_once __DIR__ . '/inc/mysql_pdo_test.inc';
    $db = MySQLPDOTest::factory();

    $table = 'pdo_mysql_commit';
    MySQLPDOTest::createTestTable($table, $db, MySQLPDOTest::detect_transactional_mysql_engine($db));

    $table2 = 'pdo_mysql_commit_2';
    try {
        if (true !== ($tmp = $db->beginTransaction())) {
            printf("[001] Expecting true, got %s/%s\n", gettype($tmp), $tmp);
        }

        // DDL will issue an implicit commit
        $db->exec(sprintf('CREATE TABLE %s (id INT) ENGINE=%s', $table2, MySQLPDOTest::detect_transactional_mysql_engine($db)));
        try {
            $db->commit();
            $failed = false;
        } catch (PDOException $e) {
            $failed = true;
        }
        if (!$failed) {
            printf("[002] Commit should have failed\n");
        }

        // pdo_transaction_transitions should check this as well...
        // ... just to be sure the most basic stuff really works we check it again...
        if (true !== ($tmp = $db->getAttribute(PDO::ATTR_AUTOCOMMIT)))
            printf("[003] According to the manual we should be back to autocommit mode, got %s/%s\n",
                gettype($tmp), var_export($tmp, true));

        if (true !== ($tmp = $db->beginTransaction()))
            printf("[004] Expecting true, got %s/%s\n", gettype($tmp), $tmp);

        $db->exec("INSERT INTO {$table} (id, label) VALUES (100, 'z')");

        if (true !== ($tmp = $db->commit()))
            printf("[005] No commit allowed? [%s] %s\n",
                $db->errorCode(), implode(' ', $db->errorInfo()));

        // a weak test without unicode etc. - lets leave that to dedicated tests
        $stmt = $db->query("SELECT id, label FROM {$table} WHERE id = 100");
        $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
        if (!isset($rows[0]['label']) || ($rows[0]['label'] != 'z')) {
            printf("[006] Record data is strange, dumping rows\n");
            var_dump($rows);
        }

        // Ok, lets check MyISAM resp. any other non-transactional engine
        // pdo_mysql_begin_transaction has more on this, quick check only
        $db = MySQLPDOTest::factory();
        MySQLPDOTest::createTestTable($table, $db, 'MyISAM');

        if (true !== ($tmp = $db->beginTransaction()))
            printf("[007] Expecting true, got %s/%s\n", gettype($tmp), $tmp);

        $db->exec("INSERT INTO {$table} (id, label) VALUES (100, 'z')");
        if (true !== ($tmp = $db->commit()))
            printf("[008] No commit allowed? [%s] %s\n",
                $db->errorCode(), implode(' ', $db->errorInfo()));

        // a weak test without unicode etc. - lets leave that to dedicated tests
        $stmt = $db->query("SELECT id, label FROM {$table} WHERE id = 100");
        $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
        if (!isset($rows[0]['label']) || ($rows[0]['label'] != 'z')) {
            printf("[009] Record data is strange, dumping rows\n");
            var_dump($rows);
        }

    } catch (PDOException $e) {
        printf("[002] %s, [%s] %s\n",
            $e->getMessage(),
            $db->errorCode(), implode(' ', $db->errorInfo()));
    }

    print "done!";
?>
--CLEAN--
<?php
require_once __DIR__ . '/inc/mysql_pdo_test.inc';
$db = MySQLPDOTest::factory();
$db->exec('DROP TABLE IF EXISTS pdo_mysql_commit');
$db->exec('DROP TABLE IF EXISTS pdo_mysql_commit_2');
?>
--EXPECT--
done!