Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F7187903
ArcanistRepositoryAPIStateTestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
ArcanistRepositoryAPIStateTestCase.php
View Options
<?php
final
class
ArcanistRepositoryAPIStateTestCase
extends
ArcanistTestCase
{
public
function
testGitStateParsing
()
{
if
(
Filesystem
::
binaryExists
(
'git'
))
{
$this
->
parseState
(
'git_basic.git.tgz'
);
}
else
{
$this
->
assertSkipped
(
'Git is not installed'
);
}
}
public
function
testHgStateParsing
()
{
if
(
Filesystem
::
binaryExists
(
'hg'
))
{
$this
->
parseState
(
'hg_basic.hg.tgz'
);
}
else
{
$this
->
assertSkipped
(
'Mercurial is not installed'
);
}
}
public
function
testSvnStateParsing
()
{
if
(
Filesystem
::
binaryExists
(
'svn'
))
{
$this
->
parseState
(
'svn_basic.svn.tgz'
);
}
else
{
$this
->
assertSkipped
(
'Subversion is not installed'
);
}
}
private
function
parseState
(
$test
)
{
$dir
=
dirname
(
__FILE__
)
.
'/state/'
;
$fixture
=
PhutilDirectoryFixture
::
newFromArchive
(
$dir
.
'/'
.
$test
);
$fixture_path
=
$fixture
->
getPath
();
$working_copy
=
ArcanistWorkingCopyIdentity
::
newFromPath
(
$fixture_path
);
$configuration_manager
=
new
ArcanistConfigurationManager
();
$configuration_manager
->
setWorkingCopyIdentity
(
$working_copy
);
$api
=
ArcanistRepositoryAPI
::
newAPIFromConfigurationManager
(
$configuration_manager
);
$api
->
setBaseCommitArgumentRules
(
'arc:this'
);
if
(
$api
instanceof
ArcanistSubversionAPI
)
{
// Upgrade the repository so that the test will still pass if the local
// `svn` is newer than the `svn` which created the repository.
// NOTE: Some versions of Subversion (1.7.x?) exit with an error code on
// a no-op upgrade, although newer versions do not. We just ignore the
// error here; if it's because of an actual problem we'll hit an error
// shortly anyway.
$api
->
execManualLocal
(
'upgrade'
);
}
$this
->
assertCorrectState
(
$test
,
$api
);
}
private
function
assertCorrectState
(
$test
,
ArcanistRepositoryAPI
$api
)
{
$f_mod
=
ArcanistRepositoryAPI
::
FLAG_MODIFIED
;
$f_add
=
ArcanistRepositoryAPI
::
FLAG_ADDED
;
$f_del
=
ArcanistRepositoryAPI
::
FLAG_DELETED
;
$f_unt
=
ArcanistRepositoryAPI
::
FLAG_UNTRACKED
;
$f_con
=
ArcanistRepositoryAPI
::
FLAG_CONFLICT
;
$f_mis
=
ArcanistRepositoryAPI
::
FLAG_MISSING
;
$f_uns
=
ArcanistRepositoryAPI
::
FLAG_UNSTAGED
;
$f_unc
=
ArcanistRepositoryAPI
::
FLAG_UNCOMMITTED
;
$f_ext
=
ArcanistRepositoryAPI
::
FLAG_EXTERNALS
;
$f_obs
=
ArcanistRepositoryAPI
::
FLAG_OBSTRUCTED
;
$f_inc
=
ArcanistRepositoryAPI
::
FLAG_INCOMPLETE
;
switch
(
$test
)
{
case
'svn_basic.svn.tgz'
:
$expect
=
array
(
'ADDED'
=>
$f_add
,
'COPIED_TO'
=>
$f_add
,
'DELETED'
=>
$f_del
,
'MODIFIED'
=>
$f_mod
,
'MOVED'
=>
$f_del
,
'MOVED_TO'
=>
$f_add
,
'PROPCHANGE'
=>
$f_mod
,
'UNTRACKED'
=>
$f_unt
,
);
$this
->
assertEqual
(
$expect
,
$api
->
getUncommittedStatus
());
$this
->
assertEqual
(
$expect
,
$api
->
getCommitRangeStatus
());
break
;
case
'git_basic.git.tgz'
:
$expect_uncommitted
=
array
(
'UNCOMMITTED'
=>
$f_add
|
$f_unc
,
'UNSTAGED'
=>
$f_mod
|
$f_uns
|
$f_unc
,
'UNTRACKED'
=>
$f_unt
,
);
$this
->
assertEqual
(
$expect_uncommitted
,
$api
->
getUncommittedStatus
());
$expect_range
=
array
(
'ADDED'
=>
$f_add
,
'DELETED'
=>
$f_del
,
'MODIFIED'
=>
$f_mod
,
'UNCOMMITTED'
=>
$f_add
,
'UNSTAGED'
=>
$f_add
,
);
$this
->
assertEqual
(
$expect_range
,
$api
->
getCommitRangeStatus
());
break
;
case
'hg_basic.hg.tgz'
:
$expect_uncommitted
=
array
(
'UNCOMMITTED'
=>
$f_mod
|
$f_unc
,
'UNTRACKED'
=>
$f_unt
,
);
$this
->
assertEqual
(
$expect_uncommitted
,
$api
->
getUncommittedStatus
());
$expect_range
=
array
(
'ADDED'
=>
$f_add
,
'DELETED'
=>
$f_del
,
'MODIFIED'
=>
$f_mod
,
'UNCOMMITTED'
=>
$f_add
,
);
$this
->
assertEqual
(
$expect_range
,
$api
->
getCommitRangeStatus
());
break
;
default
:
throw
new
Exception
(
"No test cases for working copy '{$test}'!"
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jul 8, 07:42 (9 h, 46 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
810396
Default Alt Text
ArcanistRepositoryAPIStateTestCase.php (4 KB)
Attached To
Mode
R118 Arcanist - fork
Attached
Detach File
Event Timeline
Log In to Comment