2011-10-20 03:26:21 +02:00
|
|
|
<?php
|
|
|
|
|
2014-07-05 17:50:53 +02:00
|
|
|
final class PhabricatorInfrastructureTestCase extends PhabricatorTestCase {
|
2011-10-20 03:26:21 +02:00
|
|
|
|
2014-02-24 01:20:38 +01:00
|
|
|
protected function getPhabricatorTestCaseConfiguration() {
|
|
|
|
return array(
|
|
|
|
self::PHABRICATOR_TESTCONFIG_BUILD_STORAGE_FIXTURES => true,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-10-20 03:26:21 +02:00
|
|
|
/**
|
2014-07-05 17:50:53 +02:00
|
|
|
* This is more of an acceptance test case instead of a unit test. It verifies
|
2013-05-16 21:25:26 +02:00
|
|
|
* that all symbols can be loaded correctly. It can catch problems like
|
|
|
|
* missing methods in descendants of abstract base classes.
|
2011-10-20 03:26:21 +02:00
|
|
|
*/
|
|
|
|
public function testEverythingImplemented() {
|
2013-05-16 21:25:26 +02:00
|
|
|
id(new PhutilSymbolLoader())->selectAndLoadSymbols();
|
2014-03-09 04:11:32 +01:00
|
|
|
$this->assertTrue(true);
|
2011-10-20 03:26:21 +02:00
|
|
|
}
|
2013-05-16 21:25:26 +02:00
|
|
|
|
2014-07-05 17:50:53 +02:00
|
|
|
/**
|
|
|
|
* This is more of an acceptance test case instead of a unit test. It verifies
|
|
|
|
* that all the library map is up-to-date.
|
|
|
|
*/
|
|
|
|
public function testLibraryMap() {
|
2014-07-06 15:49:21 +02:00
|
|
|
$library = phutil_get_current_library_name();
|
|
|
|
$root = phutil_get_library_root($library);
|
2014-07-05 17:50:53 +02:00
|
|
|
|
|
|
|
$new_library_map = id(new PhutilLibraryMapBuilder($root))
|
|
|
|
->buildMap();
|
|
|
|
|
|
|
|
$bootloader = PhutilBootloader::getInstance();
|
2014-07-06 15:49:21 +02:00
|
|
|
$old_library_map = $bootloader->getLibraryMapWithoutExtensions($library);
|
2014-07-05 17:50:53 +02:00
|
|
|
unset($old_library_map[PhutilLibraryMapBuilder::LIBRARY_MAP_VERSION_KEY]);
|
|
|
|
|
|
|
|
$this->assertEqual(
|
|
|
|
$new_library_map,
|
|
|
|
$old_library_map,
|
|
|
|
'The library map does not appear to be up-to-date. Try '.
|
|
|
|
'rebuilding the map with `arc liberate`.');
|
|
|
|
}
|
|
|
|
|
2013-05-16 21:25:26 +02:00
|
|
|
public function testApplicationsInstalled() {
|
|
|
|
$all = PhabricatorApplication::getAllApplications();
|
|
|
|
$installed = PhabricatorApplication::getAllInstalledApplications();
|
|
|
|
|
|
|
|
$this->assertEqual(
|
|
|
|
count($all),
|
|
|
|
count($installed),
|
|
|
|
'In test cases, all applications should default to installed.');
|
|
|
|
}
|
|
|
|
|
2014-02-24 01:20:38 +01:00
|
|
|
public function testMySQLAgreesWithUsAboutBMP() {
|
|
|
|
// Build a string with every BMP character in it, then insert it into MySQL
|
|
|
|
// and read it back. We expect to get the same string out that we put in,
|
|
|
|
// demonstrating that strings which pass our BMP checks are also valid in
|
|
|
|
// MySQL and no silent data truncation will occur.
|
|
|
|
|
|
|
|
$buf = '';
|
|
|
|
|
|
|
|
for ($ii = 0x01; $ii <= 0x7F; $ii++) {
|
|
|
|
$buf .= chr($ii);
|
|
|
|
}
|
|
|
|
|
|
|
|
for ($ii = 0xC2; $ii <= 0xDF; $ii++) {
|
|
|
|
for ($jj = 0x80; $jj <= 0xBF; $jj++) {
|
|
|
|
$buf .= chr($ii).chr($jj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE: This is \xE0\xA0\xZZ.
|
|
|
|
for ($ii = 0xE0; $ii <= 0xE0; $ii++) {
|
|
|
|
for ($jj = 0xA0; $jj <= 0xBF; $jj++) {
|
|
|
|
for ($kk = 0x80; $kk <= 0xBF; $kk++) {
|
|
|
|
$buf .= chr($ii).chr($jj).chr($kk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE: This is \xE1\xZZ\xZZ through \xEF\xZZ\xZZ.
|
|
|
|
for ($ii = 0xE1; $ii <= 0xEF; $ii++) {
|
|
|
|
for ($jj = 0x80; $jj <= 0xBF; $jj++) {
|
|
|
|
for ($kk = 0x80; $kk <= 0xBF; $kk++) {
|
|
|
|
$buf .= chr($ii).chr($jj).chr($kk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->assertEqual(194431, strlen($buf));
|
2014-03-09 04:11:32 +01:00
|
|
|
$this->assertTrue(phutil_is_utf8_with_only_bmp_characters($buf));
|
2014-02-24 01:20:38 +01:00
|
|
|
|
|
|
|
$write = id(new HarbormasterScratchTable())
|
|
|
|
->setData('all.utf8.bmp')
|
|
|
|
->setBigData($buf)
|
|
|
|
->save();
|
|
|
|
|
|
|
|
$read = id(new HarbormasterScratchTable())->load($write->getID());
|
|
|
|
|
|
|
|
$this->assertEqual($buf, $read->getBigData());
|
|
|
|
}
|
2013-05-16 21:25:26 +02:00
|
|
|
|
2014-02-24 01:20:46 +01:00
|
|
|
public function testRejectMySQLBMPQueries() {
|
|
|
|
$table = new HarbormasterScratchTable();
|
|
|
|
$conn_r = $table->establishConnection('w');
|
|
|
|
|
|
|
|
$snowman = "\xE2\x98\x83";
|
|
|
|
$gclef = "\xF0\x9D\x84\x9E";
|
|
|
|
|
|
|
|
qsprintf($conn_r, 'SELECT %B', $snowman);
|
|
|
|
qsprintf($conn_r, 'SELECT %s', $snowman);
|
|
|
|
qsprintf($conn_r, 'SELECT %B', $gclef);
|
|
|
|
|
|
|
|
$caught = null;
|
|
|
|
try {
|
|
|
|
qsprintf($conn_r, 'SELECT %s', $gclef);
|
|
|
|
} catch (AphrontQueryCharacterSetException $ex) {
|
|
|
|
$caught = $ex;
|
|
|
|
}
|
|
|
|
|
2014-03-09 04:11:32 +01:00
|
|
|
$this->assertTrue($caught instanceof AphrontQueryCharacterSetException);
|
2014-02-24 01:20:46 +01:00
|
|
|
}
|
|
|
|
|
2011-10-20 03:26:21 +02:00
|
|
|
}
|