Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2892305
PhabricatorInfrastructureTestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
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
=
"\xE2\x98\x83"
;
$invalid
=
"\xE6\x9D"
;
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
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 16:36 (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1126535
Default Alt Text
PhabricatorInfrastructureTestCase.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment