mirror of
https://github.com/martinvonz/jj.git
synced 2024-12-26 14:00:51 +00:00
revsets: add a public_heads() revset function
This commit is contained in:
parent
3a65c1d2ab
commit
b52cfc156c
2 changed files with 55 additions and 0 deletions
|
@ -102,6 +102,7 @@ pub enum RevsetExpression {
|
|||
Parents(Box<RevsetExpression>),
|
||||
Ancestors(Box<RevsetExpression>),
|
||||
AllHeads,
|
||||
PublicHeads,
|
||||
NonObsoleteHeads(Box<RevsetExpression>),
|
||||
Description {
|
||||
needle: String,
|
||||
|
@ -257,6 +258,16 @@ fn parse_function_expression(
|
|||
})
|
||||
}
|
||||
}
|
||||
"public_heads" => {
|
||||
if arg_count == 0 {
|
||||
Ok(RevsetExpression::PublicHeads)
|
||||
} else {
|
||||
Err(RevsetParseError::InvalidFunctionArguments {
|
||||
name,
|
||||
message: "Expected 0 arguments".to_string(),
|
||||
})
|
||||
}
|
||||
}
|
||||
"description" => {
|
||||
if !(1..=2).contains(&arg_count) {
|
||||
return Err(RevsetParseError::InvalidFunctionArguments {
|
||||
|
@ -585,6 +596,16 @@ pub fn evaluate_expression<'revset, 'repo: 'revset>(
|
|||
let base_set = evaluate_expression(repo, base_expression.as_ref())?;
|
||||
Ok(non_obsolete_heads(repo, base_set))
|
||||
}
|
||||
RevsetExpression::PublicHeads => {
|
||||
let index = repo.index();
|
||||
let heads = repo.view().public_heads();
|
||||
let mut index_entries: Vec<_> = heads
|
||||
.iter()
|
||||
.map(|id| index.entry_by_id(id).unwrap())
|
||||
.collect();
|
||||
index_entries.sort_by_key(|b| Reverse(b.position()));
|
||||
Ok(Box::new(EagerRevset { index_entries }))
|
||||
}
|
||||
RevsetExpression::Description {
|
||||
needle,
|
||||
base_expression,
|
||||
|
|
|
@ -519,6 +519,40 @@ fn test_evaluate_expression_all_heads(use_git: bool) {
|
|||
tx.discard();
|
||||
}
|
||||
|
||||
#[test_case(false ; "local store")]
|
||||
#[test_case(true ; "git store")]
|
||||
fn test_evaluate_expression_public_heads(use_git: bool) {
|
||||
let settings = testutils::user_settings();
|
||||
let (_temp_dir, repo) = testutils::init_repo(&settings, use_git);
|
||||
|
||||
let mut tx = repo.start_transaction("test");
|
||||
let mut_repo = tx.mut_repo();
|
||||
|
||||
let commit1 = testutils::create_random_commit(&settings, &repo).write_to_repo(mut_repo);
|
||||
let commit2 = testutils::create_random_commit(&settings, &repo).write_to_repo(mut_repo);
|
||||
|
||||
// Can get public heads with root commit as only public head
|
||||
assert_eq!(
|
||||
resolve_commit_ids(mut_repo.as_repo_ref(), "public_heads()"),
|
||||
// TODO: This should include the root commit
|
||||
vec![]
|
||||
);
|
||||
// Can get public heads with a single public head
|
||||
mut_repo.add_public_head(&commit1);
|
||||
assert_eq!(
|
||||
resolve_commit_ids(mut_repo.as_repo_ref(), "public_heads()"),
|
||||
vec![commit1.id().clone()]
|
||||
);
|
||||
// Can get public heads with multiple public head
|
||||
mut_repo.add_public_head(&commit2);
|
||||
assert_eq!(
|
||||
resolve_commit_ids(mut_repo.as_repo_ref(), "public_heads()"),
|
||||
vec![commit2.id().clone(), commit1.id().clone()]
|
||||
);
|
||||
|
||||
tx.discard();
|
||||
}
|
||||
|
||||
#[test_case(false ; "local store")]
|
||||
#[test_case(true ; "git store")]
|
||||
fn test_evaluate_expression_obsolete(use_git: bool) {
|
||||
|
|
Loading…
Reference in a new issue