Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116718546
PhabricatorInfrastructureTestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jun 8, 19:26
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jun 10, 19:26 (2 d)
Engine
blob
Format
Raw Data
Handle
26566778
Attached To
rPH Phabricator
PhabricatorInfrastructureTestCase.php
View Options
<?php
final
class
PhabricatorInfrastructureTestCase
extends
PhabricatorTestCase
{
protected
function
getPhabricatorTestCaseConfiguration
()
{
return
array
(
self
::
PHABRICATOR_TESTCONFIG_BUILD_STORAGE_FIXTURES
=>
true
,
);
}
public
function
testApplicationsInstalled
()
{
$all
=
PhabricatorApplication
::
getAllApplications
();
$installed
=
PhabricatorApplication
::
getAllInstalledApplications
();
$this
->
assertEqual
(
count
(
$all
),
count
(
$installed
),
pht
(
'In test cases, all applications should default to installed.'
));
}
public
function
testRejectMySQLNonUTF8Queries
()
{
$table
=
new
HarbormasterScratchTable
();
$conn_r
=
$table
->
establishConnection
(
'w'
);
$snowman
=
"
\x
E2
\x
98
\x
83"
;
$invalid
=
"
\x
E6
\x
9D"
;
qsprintf
(
$conn_r
,
'SELECT %B'
,
$snowman
);
qsprintf
(
$conn_r
,
'SELECT %s'
,
$snowman
);
qsprintf
(
$conn_r
,
'SELECT %B'
,
$invalid
);
$caught
=
null
;
try
{
qsprintf
(
$conn_r
,
'SELECT %s'
,
$invalid
);
}
catch
(
AphrontCharacterSetQueryException
$ex
)
{
$caught
=
$ex
;
}
$this
->
assertTrue
(
$caught
instanceof
AphrontCharacterSetQueryException
);
}
}
Event Timeline
Log In to Comment