DB tests: Test whether we can insert and read UTF8 data.
This commit is contained in:
parent
7b20212c0a
commit
f8d3b7cb6f
1 changed files with 13 additions and 0 deletions
|
@ -145,4 +145,17 @@ class Test_DB extends PHPUnit_Framework_TestCase {
|
|||
$this->assertEquals(1, $result->numRows());
|
||||
|
||||
}
|
||||
|
||||
public function testUtf8Data() {
|
||||
$table = "*PREFIX*{$this->table2}";
|
||||
$conn = OC_DB::getConnection();
|
||||
$data = array(
|
||||
'uri' => 'uri_1',
|
||||
'fullname' => "Ћö雙喜\xE2\x80\xA2",
|
||||
'carddata' => 'This is a vCard',
|
||||
);
|
||||
$conn->insert($table, $data);
|
||||
$row = $conn->fetchAssoc("SELECT * FROM $table");
|
||||
$this->assertSame($data['fullname'], $row['fullname']);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue