2022-11-27 02:57:50 +03:00
|
|
|
// Copyright 2021 The Jujutsu Authors
|
2021-04-05 08:56:10 +03:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2022-10-23 07:14:00 +03:00
|
|
|
use std::path::Path;
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
use jujutsu_lib::backend::{CommitId, MillisSinceEpoch, Signature, Timestamp};
|
2021-05-15 19:16:31 +03:00
|
|
|
use jujutsu_lib::commit_builder::CommitBuilder;
|
2022-11-08 15:35:16 +03:00
|
|
|
use jujutsu_lib::git;
|
2022-10-23 07:56:54 +03:00
|
|
|
use jujutsu_lib::matchers::{FilesMatcher, Matcher};
|
2021-11-26 10:18:43 +03:00
|
|
|
use jujutsu_lib::op_store::{RefTarget, WorkspaceId};
|
2021-05-15 19:16:31 +03:00
|
|
|
use jujutsu_lib::repo::RepoRef;
|
2022-09-13 09:39:06 +03:00
|
|
|
use jujutsu_lib::repo_path::RepoPath;
|
2022-10-23 06:41:50 +03:00
|
|
|
use jujutsu_lib::revset::{
|
2022-11-25 06:53:01 +03:00
|
|
|
self, optimize, parse, resolve_symbol, RevsetAliasesMap, RevsetError, RevsetExpression,
|
|
|
|
RevsetWorkspaceContext,
|
2022-10-23 06:41:50 +03:00
|
|
|
};
|
2022-10-23 09:51:44 +03:00
|
|
|
use jujutsu_lib::workspace::Workspace;
|
2021-04-05 08:56:10 +03:00
|
|
|
use test_case::test_case;
|
2022-10-29 19:56:47 +03:00
|
|
|
use testutils::{create_random_commit, CommitGraphBuilder, TestRepo, TestWorkspace};
|
2021-04-05 08:56:10 +03:00
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-05 08:56:10 +03:00
|
|
|
fn test_resolve_symbol_root(use_git: bool) {
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-05 08:56:10 +03:00
|
|
|
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo.as_repo_ref(), "root", None),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![repo.store().root_commit_id().clone()])
|
2021-04-05 08:56:10 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_resolve_symbol_commit_id() {
|
|
|
|
let settings = testutils::user_settings();
|
|
|
|
// Test only with git so we can get predictable commit ids
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(true);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-05 08:56:10 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-05 08:56:10 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
let signature = Signature {
|
|
|
|
name: "test".to_string(),
|
|
|
|
email: "test".to_string(),
|
|
|
|
timestamp: Timestamp {
|
|
|
|
timestamp: MillisSinceEpoch(0),
|
|
|
|
tz_offset: 0,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut commits = vec![];
|
|
|
|
for i in &[1, 167, 895] {
|
2022-09-19 07:59:49 +03:00
|
|
|
let commit = CommitBuilder::for_new_commit(
|
|
|
|
&settings,
|
|
|
|
vec![repo.store().root_commit_id().clone()],
|
|
|
|
repo.store().empty_tree_id().clone(),
|
|
|
|
)
|
2022-12-15 05:30:06 +03:00
|
|
|
.set_description(format!("test {i}"))
|
2022-09-19 07:59:49 +03:00
|
|
|
.set_author(signature.clone())
|
|
|
|
.set_committer(signature.clone())
|
|
|
|
.write_to_repo(mut_repo);
|
2021-04-05 08:56:10 +03:00
|
|
|
commits.push(commit);
|
|
|
|
}
|
2021-07-31 00:35:08 +03:00
|
|
|
let repo = tx.commit();
|
2021-04-05 08:56:10 +03:00
|
|
|
|
|
|
|
// Test the test setup
|
|
|
|
assert_eq!(
|
|
|
|
commits[0].id().hex(),
|
|
|
|
"0454de3cae04c46cda37ba2e8873b4c17ff51dcb"
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
commits[1].id().hex(),
|
|
|
|
"045f56cd1b17e8abde86771e2705395dcde6a957"
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
commits[2].id().hex(),
|
|
|
|
"0468f7da8de2ce442f512aacf83411d26cd2e0cf"
|
|
|
|
);
|
|
|
|
|
|
|
|
// Test lookup by full commit id
|
2021-07-31 00:35:08 +03:00
|
|
|
let repo_ref = repo.as_repo_ref();
|
2021-04-05 08:56:10 +03:00
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "0454de3cae04c46cda37ba2e8873b4c17ff51dcb", None),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![commits[0].id().clone()])
|
2021-04-05 08:56:10 +03:00
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "045f56cd1b17e8abde86771e2705395dcde6a957", None),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![commits[1].id().clone()])
|
2021-04-05 08:56:10 +03:00
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "0468f7da8de2ce442f512aacf83411d26cd2e0cf", None),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![commits[2].id().clone()])
|
2021-04-05 08:56:10 +03:00
|
|
|
);
|
|
|
|
|
2022-11-20 06:06:09 +03:00
|
|
|
// Test empty commit id
|
|
|
|
assert_eq!(
|
|
|
|
resolve_symbol(repo_ref, "", None),
|
2022-11-28 13:48:24 +03:00
|
|
|
Err(RevsetError::AmbiguousIdPrefix("".to_string()))
|
2022-11-20 06:06:09 +03:00
|
|
|
);
|
|
|
|
|
2021-04-05 08:56:10 +03:00
|
|
|
// Test commit id prefix
|
2021-05-30 20:26:23 +03:00
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "046", None),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![commits[2].id().clone()])
|
|
|
|
);
|
2021-04-05 08:56:10 +03:00
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "04", None),
|
2022-11-28 13:48:24 +03:00
|
|
|
Err(RevsetError::AmbiguousIdPrefix("04".to_string()))
|
2021-04-05 08:56:10 +03:00
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "", None),
|
2022-11-28 13:48:24 +03:00
|
|
|
Err(RevsetError::AmbiguousIdPrefix("".to_string()))
|
2021-04-05 08:56:10 +03:00
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "040", None),
|
2021-04-05 08:56:10 +03:00
|
|
|
Err(RevsetError::NoSuchRevision("040".to_string()))
|
|
|
|
);
|
|
|
|
|
2021-04-10 09:51:37 +03:00
|
|
|
// Test non-hex string
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "foo", None),
|
2021-04-10 09:51:37 +03:00
|
|
|
Err(RevsetError::NoSuchRevision("foo".to_string()))
|
|
|
|
);
|
2022-11-07 10:29:35 +03:00
|
|
|
|
|
|
|
// Test present() suppresses only NoSuchRevision error
|
|
|
|
assert_eq!(resolve_commit_ids(repo_ref, "present(foo)"), []);
|
|
|
|
assert_eq!(
|
2022-11-25 06:53:01 +03:00
|
|
|
optimize(parse("present(04)", &RevsetAliasesMap::new(), None).unwrap())
|
2022-11-07 10:29:35 +03:00
|
|
|
.evaluate(repo_ref, None)
|
|
|
|
.map(|_| ()),
|
2022-11-28 13:48:24 +03:00
|
|
|
Err(RevsetError::AmbiguousIdPrefix("04".to_string()))
|
2022-11-07 10:29:35 +03:00
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(repo_ref, "present(046)"),
|
|
|
|
vec![commits[2].id().clone()]
|
|
|
|
);
|
2021-04-05 08:56:10 +03:00
|
|
|
}
|
|
|
|
|
2021-05-30 09:52:50 +03:00
|
|
|
#[test]
|
|
|
|
fn test_resolve_symbol_change_id() {
|
2022-11-13 09:29:06 +03:00
|
|
|
let settings = testutils::user_settings();
|
2021-05-30 09:52:50 +03:00
|
|
|
// Test only with git so we can get predictable change ids
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(true);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-05-30 09:52:50 +03:00
|
|
|
|
|
|
|
let git_repo = repo.store().git_repo().unwrap();
|
|
|
|
// Add some commits that will end up having change ids with common prefixes
|
|
|
|
let empty_tree_id = git_repo.treebuilder(None).unwrap().write().unwrap();
|
|
|
|
let git_author = git2::Signature::new(
|
|
|
|
"git author",
|
|
|
|
"git.author@example.com",
|
|
|
|
&git2::Time::new(1000, 60),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
let git_committer = git2::Signature::new(
|
|
|
|
"git committer",
|
|
|
|
"git.committer@example.com",
|
|
|
|
&git2::Time::new(2000, -480),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
let git_tree = git_repo.find_tree(empty_tree_id).unwrap();
|
|
|
|
let mut git_commit_ids = vec![];
|
2022-11-27 12:39:35 +03:00
|
|
|
for i in &[133, 664, 840, 5085] {
|
2021-05-30 09:52:50 +03:00
|
|
|
let git_commit_id = git_repo
|
|
|
|
.commit(
|
2022-12-15 05:30:06 +03:00
|
|
|
Some(&format!("refs/heads/branch{i}")),
|
2021-05-30 09:52:50 +03:00
|
|
|
&git_author,
|
|
|
|
&git_committer,
|
2022-12-15 05:30:06 +03:00
|
|
|
&format!("test {i}"),
|
2021-05-30 09:52:50 +03:00
|
|
|
&git_tree,
|
|
|
|
&[],
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
git_commit_ids.push(git_commit_id);
|
|
|
|
}
|
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-05-30 09:52:50 +03:00
|
|
|
git::import_refs(tx.mut_repo(), &git_repo).unwrap();
|
|
|
|
let repo = tx.commit();
|
|
|
|
|
|
|
|
// Test the test setup
|
|
|
|
assert_eq!(
|
2021-11-18 01:20:54 +03:00
|
|
|
hex::encode(git_commit_ids[0]),
|
2021-05-30 09:52:50 +03:00
|
|
|
// "04e12a5467bba790efb88a9870894ec208b16bf1" reversed
|
|
|
|
"8fd68d104372910e19511df709e5dde62a548720"
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2021-11-18 01:20:54 +03:00
|
|
|
hex::encode(git_commit_ids[1]),
|
2021-05-30 09:52:50 +03:00
|
|
|
// "040b3ba3a51d8edbc4c5855cbd09de71d4c29cca" reversed
|
|
|
|
"5339432b8e7b90bd3aa1a323db71b8a5c5dcd020"
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2021-11-18 01:20:54 +03:00
|
|
|
hex::encode(git_commit_ids[2]),
|
2021-05-30 09:52:50 +03:00
|
|
|
// "04e1c7082e4e34f3f371d8a1a46770b861b9b547" reversed
|
|
|
|
"e2ad9d861d0ee625851b8ecfcf2c727410e38720"
|
|
|
|
);
|
2022-11-27 12:39:35 +03:00
|
|
|
assert_eq!(
|
|
|
|
hex::encode(git_commit_ids[3]),
|
|
|
|
// "911d7e52fd5ba04b8f289e14c3d30b52d38c0020" reversed
|
|
|
|
"040031cb4ad0cbc3287914f1d205dabf4a7eb889"
|
|
|
|
);
|
2021-05-30 09:52:50 +03:00
|
|
|
|
|
|
|
// Test lookup by full change id
|
|
|
|
let repo_ref = repo.as_repo_ref();
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "04e12a5467bba790efb88a9870894ec2", None),
|
2021-05-30 09:52:50 +03:00
|
|
|
Ok(vec![CommitId::from_hex(
|
|
|
|
"8fd68d104372910e19511df709e5dde62a548720"
|
|
|
|
)])
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "040b3ba3a51d8edbc4c5855cbd09de71", None),
|
2021-05-30 09:52:50 +03:00
|
|
|
Ok(vec![CommitId::from_hex(
|
|
|
|
"5339432b8e7b90bd3aa1a323db71b8a5c5dcd020"
|
|
|
|
)])
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "04e1c7082e4e34f3f371d8a1a46770b8", None),
|
2021-05-30 09:52:50 +03:00
|
|
|
Ok(vec![CommitId::from_hex(
|
|
|
|
"e2ad9d861d0ee625851b8ecfcf2c727410e38720"
|
|
|
|
)])
|
|
|
|
);
|
|
|
|
|
|
|
|
// Test change id prefix
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "04e12", None),
|
2021-05-30 09:52:50 +03:00
|
|
|
Ok(vec![CommitId::from_hex(
|
|
|
|
"8fd68d104372910e19511df709e5dde62a548720"
|
|
|
|
)])
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "04e1c", None),
|
2021-05-30 09:52:50 +03:00
|
|
|
Ok(vec![CommitId::from_hex(
|
|
|
|
"e2ad9d861d0ee625851b8ecfcf2c727410e38720"
|
|
|
|
)])
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "04e1", None),
|
2022-11-28 13:48:24 +03:00
|
|
|
Err(RevsetError::AmbiguousIdPrefix("04e1".to_string()))
|
2021-05-30 09:52:50 +03:00
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "", None),
|
2022-11-28 13:48:24 +03:00
|
|
|
Err(RevsetError::AmbiguousIdPrefix("".to_string()))
|
2021-05-30 09:52:50 +03:00
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "04e13", None),
|
2021-05-30 09:52:50 +03:00
|
|
|
Err(RevsetError::NoSuchRevision("04e13".to_string()))
|
2022-11-27 12:39:35 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
// Test commit/changed id conflicts.
|
|
|
|
assert_eq!(
|
|
|
|
resolve_symbol(repo_ref, "040b", None),
|
|
|
|
Ok(vec![CommitId::from_hex(
|
|
|
|
"5339432b8e7b90bd3aa1a323db71b8a5c5dcd020"
|
|
|
|
)])
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_symbol(repo_ref, "040", None),
|
2022-11-28 13:48:24 +03:00
|
|
|
Err(RevsetError::AmbiguousIdPrefix("040".to_string()))
|
2021-05-30 09:52:50 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
// Test non-hex string
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(repo_ref, "foo", None),
|
2021-05-30 09:52:50 +03:00
|
|
|
Err(RevsetError::NoSuchRevision("foo".to_string()))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-05 08:56:10 +03:00
|
|
|
fn test_resolve_symbol_checkout(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-05 08:56:10 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-05 08:56:10 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit1 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit2 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
2021-04-05 08:56:10 +03:00
|
|
|
|
2022-02-02 19:15:25 +03:00
|
|
|
let ws1 = WorkspaceId::new("ws1".to_string());
|
|
|
|
let ws2 = WorkspaceId::new("ws2".to_string());
|
|
|
|
|
|
|
|
// With no workspaces, no variation can be resolved
|
|
|
|
assert_eq!(
|
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "@", None),
|
|
|
|
Err(RevsetError::NoSuchRevision("@".to_string()))
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "@", Some(&ws1)),
|
|
|
|
Err(RevsetError::NoSuchRevision("@".to_string()))
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "ws1@", Some(&ws1)),
|
|
|
|
Err(RevsetError::NoSuchRevision("ws1@".to_string()))
|
|
|
|
);
|
|
|
|
|
|
|
|
// Add some workspaces
|
2022-10-21 02:33:14 +03:00
|
|
|
mut_repo
|
|
|
|
.set_wc_commit(ws1.clone(), commit1.id().clone())
|
|
|
|
.unwrap();
|
|
|
|
mut_repo.set_wc_commit(ws2, commit2.id().clone()).unwrap();
|
2022-02-02 19:15:25 +03:00
|
|
|
// @ cannot be resolved without a default workspace ID
|
|
|
|
assert_eq!(
|
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "@", None),
|
|
|
|
Err(RevsetError::NoSuchRevision("@".to_string()))
|
|
|
|
);
|
|
|
|
// Can resolve "@" shorthand with a default workspace ID
|
2021-04-05 08:56:10 +03:00
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "@", Some(&ws1)),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![commit1.id().clone()])
|
2021-04-05 08:56:10 +03:00
|
|
|
);
|
2022-02-02 19:15:25 +03:00
|
|
|
// Can resolve an explicit checkout
|
2021-04-05 08:56:10 +03:00
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "ws2@", Some(&ws1)),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![commit2.id().clone()])
|
2021-04-05 08:56:10 +03:00
|
|
|
);
|
|
|
|
}
|
2021-04-10 09:40:52 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_resolve_symbol_git_refs() {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(true);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-10 09:40:52 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-10 09:40:52 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
|
|
|
// Create some commits and refs to work with and so the repo is not empty
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit1 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit2 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit3 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit4 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit5 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/heads/branch1".to_string(),
|
|
|
|
RefTarget::Normal(commit1.id().clone()),
|
|
|
|
);
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/heads/branch2".to_string(),
|
|
|
|
RefTarget::Normal(commit2.id().clone()),
|
|
|
|
);
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/heads/conflicted".to_string(),
|
|
|
|
RefTarget::Conflict {
|
|
|
|
removes: vec![commit2.id().clone()],
|
|
|
|
adds: vec![commit1.id().clone(), commit3.id().clone()],
|
|
|
|
},
|
|
|
|
);
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/tags/tag1".to_string(),
|
|
|
|
RefTarget::Normal(commit2.id().clone()),
|
|
|
|
);
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-04-10 09:40:52 +03:00
|
|
|
"refs/tags/remotes/origin/branch1".to_string(),
|
2021-07-11 20:58:01 +03:00
|
|
|
RefTarget::Normal(commit3.id().clone()),
|
2021-04-10 09:40:52 +03:00
|
|
|
);
|
|
|
|
|
2022-09-09 20:31:43 +03:00
|
|
|
// Nonexistent ref
|
2021-04-10 09:40:52 +03:00
|
|
|
assert_eq!(
|
2022-09-09 20:31:43 +03:00
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "nonexistent", None),
|
|
|
|
Err(RevsetError::NoSuchRevision("nonexistent".to_string()))
|
2021-04-10 09:40:52 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
// Full ref
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/heads/branch".to_string(),
|
|
|
|
RefTarget::Normal(commit4.id().clone()),
|
|
|
|
);
|
2021-04-10 09:40:52 +03:00
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "refs/heads/branch", None),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![commit4.id().clone()])
|
2021-04-10 09:40:52 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
// Qualified with only heads/
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/heads/branch".to_string(),
|
|
|
|
RefTarget::Normal(commit5.id().clone()),
|
|
|
|
);
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/tags/branch".to_string(),
|
|
|
|
RefTarget::Normal(commit4.id().clone()),
|
|
|
|
);
|
2021-04-10 09:40:52 +03:00
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "heads/branch", None),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![commit5.id().clone()])
|
2021-04-10 09:40:52 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
// Unqualified branch name
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/heads/branch".to_string(),
|
|
|
|
RefTarget::Normal(commit3.id().clone()),
|
|
|
|
);
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/tags/branch".to_string(),
|
|
|
|
RefTarget::Normal(commit4.id().clone()),
|
|
|
|
);
|
2021-04-10 09:40:52 +03:00
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "branch", None),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![commit3.id().clone()])
|
2021-04-10 09:40:52 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
// Unqualified tag name
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/tags/tag".to_string(),
|
|
|
|
RefTarget::Normal(commit4.id().clone()),
|
|
|
|
);
|
2021-04-10 09:40:52 +03:00
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "tag", None),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![commit4.id().clone()])
|
2021-04-10 09:40:52 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
// Unqualified remote-tracking branch name
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-04-10 09:40:52 +03:00
|
|
|
"refs/remotes/origin/remote-branch".to_string(),
|
2021-07-11 20:58:01 +03:00
|
|
|
RefTarget::Normal(commit2.id().clone()),
|
2021-04-10 09:40:52 +03:00
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "origin/remote-branch", None),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![commit2.id().clone()])
|
2021-04-10 09:40:52 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
// Cannot shadow checkout ("@") or root symbols
|
2022-02-06 02:02:16 +03:00
|
|
|
let ws_id = WorkspaceId::default();
|
2022-10-21 02:33:14 +03:00
|
|
|
mut_repo
|
|
|
|
.set_wc_commit(ws_id.clone(), commit1.id().clone())
|
|
|
|
.unwrap();
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref("@".to_string(), RefTarget::Normal(commit2.id().clone()));
|
|
|
|
mut_repo.set_git_ref("root".to_string(), RefTarget::Normal(commit3.id().clone()));
|
2021-04-10 09:40:52 +03:00
|
|
|
assert_eq!(
|
2022-02-06 02:02:16 +03:00
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "@", Some(&ws_id)),
|
2022-09-19 00:46:12 +03:00
|
|
|
Ok(vec![mut_repo
|
|
|
|
.view()
|
|
|
|
.get_wc_commit_id(&ws_id)
|
|
|
|
.unwrap()
|
|
|
|
.clone()])
|
2021-04-10 09:40:52 +03:00
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "root", None),
|
2021-05-30 20:26:23 +03:00
|
|
|
Ok(vec![mut_repo.store().root_commit().id().clone()])
|
2021-04-10 09:40:52 +03:00
|
|
|
);
|
|
|
|
|
2021-07-11 20:58:01 +03:00
|
|
|
// Conflicted ref resolves to its "adds"
|
|
|
|
assert_eq!(
|
2022-02-02 19:15:25 +03:00
|
|
|
resolve_symbol(mut_repo.as_repo_ref(), "refs/heads/conflicted", None),
|
2021-07-11 20:58:01 +03:00
|
|
|
Ok(vec![commit1.id().clone(), commit3.id().clone()])
|
|
|
|
);
|
2021-04-10 09:40:52 +03:00
|
|
|
}
|
2021-04-10 20:18:30 +03:00
|
|
|
|
|
|
|
fn resolve_commit_ids(repo: RepoRef, revset_str: &str) -> Vec<CommitId> {
|
2022-11-25 06:53:01 +03:00
|
|
|
let expression = optimize(parse(revset_str, &RevsetAliasesMap::new(), None).unwrap());
|
2021-05-28 18:37:06 +03:00
|
|
|
expression
|
2022-02-02 19:15:25 +03:00
|
|
|
.evaluate(repo, None)
|
|
|
|
.unwrap()
|
|
|
|
.iter()
|
|
|
|
.commit_ids()
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn resolve_commit_ids_in_workspace(
|
|
|
|
repo: RepoRef,
|
|
|
|
revset_str: &str,
|
2022-10-23 09:51:44 +03:00
|
|
|
workspace: &Workspace,
|
2022-10-23 07:14:00 +03:00
|
|
|
cwd: Option<&Path>,
|
2022-02-02 19:15:25 +03:00
|
|
|
) -> Vec<CommitId> {
|
2022-10-23 09:51:44 +03:00
|
|
|
let workspace_ctx = RevsetWorkspaceContext {
|
2022-10-23 07:14:00 +03:00
|
|
|
cwd: cwd.unwrap_or_else(|| workspace.workspace_root()),
|
2022-10-23 09:51:44 +03:00
|
|
|
workspace_id: workspace.workspace_id(),
|
2022-10-23 07:14:00 +03:00
|
|
|
workspace_root: workspace.workspace_root(),
|
2022-10-23 09:51:44 +03:00
|
|
|
};
|
2022-11-25 06:53:01 +03:00
|
|
|
let expression =
|
|
|
|
optimize(parse(revset_str, &RevsetAliasesMap::new(), Some(&workspace_ctx)).unwrap());
|
2022-02-02 19:15:25 +03:00
|
|
|
expression
|
2022-10-23 06:41:50 +03:00
|
|
|
.evaluate(repo, Some(&workspace_ctx))
|
2021-04-10 20:18:30 +03:00
|
|
|
.unwrap()
|
|
|
|
.iter()
|
2021-10-06 23:53:38 +03:00
|
|
|
.commit_ids()
|
2021-04-10 20:18:30 +03:00
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-10 20:18:30 +03:00
|
|
|
fn test_evaluate_expression_root_and_checkout(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-10-23 09:51:44 +03:00
|
|
|
let test_workspace = TestWorkspace::init(&settings, use_git);
|
|
|
|
let repo = &test_workspace.repo;
|
2021-04-10 20:18:30 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-10 20:18:30 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
|
|
|
let root_commit = repo.store().root_commit();
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit1 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
2021-04-10 20:18:30 +03:00
|
|
|
|
|
|
|
// Can find the root commit
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "root"),
|
|
|
|
vec![root_commit.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Can find the current checkout
|
2022-10-21 02:33:14 +03:00
|
|
|
mut_repo
|
|
|
|
.set_wc_commit(WorkspaceId::default(), commit1.id().clone())
|
|
|
|
.unwrap();
|
2021-04-10 20:18:30 +03:00
|
|
|
assert_eq!(
|
2022-10-23 07:14:00 +03:00
|
|
|
resolve_commit_ids_in_workspace(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
"@",
|
|
|
|
&test_workspace.workspace,
|
|
|
|
None,
|
|
|
|
),
|
2021-04-10 20:18:30 +03:00
|
|
|
vec![commit1.id().clone()]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-10-10 22:30:00 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2022-04-13 23:27:00 +03:00
|
|
|
fn test_evaluate_expression_heads(use_git: bool) {
|
2021-10-10 22:30:00 +03:00
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-10-10 22:30:00 +03:00
|
|
|
|
|
|
|
let root_commit = repo.store().root_commit();
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-10-10 22:30:00 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit3 = graph_builder.commit_with_parents(&[&commit2]);
|
|
|
|
|
|
|
|
// Heads of an empty set is an empty set
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "heads(none())"),
|
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Heads of the root is the root
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "heads(root)"),
|
|
|
|
vec![root_commit.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Heads of a single commit is that commit
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("heads({})", commit2.id().hex())
|
|
|
|
),
|
|
|
|
vec![commit2.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Heads of a parent and a child is the child
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("heads({} | {})", commit2.id().hex(), commit3.id().hex())
|
|
|
|
),
|
|
|
|
vec![commit3.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Heads of a grandparent and a grandchild is the grandchild (unlike Mercurial's
|
|
|
|
// heads() revset, which would include both)
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("heads({} | {})", commit1.id().hex(), commit3.id().hex())
|
|
|
|
),
|
|
|
|
vec![commit3.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Heads of all commits is the set of heads in the repo
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "heads(all())"),
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "heads()")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-04-13 23:55:47 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
|
|
|
fn test_evaluate_expression_roots(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-04-13 23:55:47 +03:00
|
|
|
let repo = &test_repo.repo;
|
|
|
|
|
|
|
|
let root_commit = repo.store().root_commit();
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2022-04-13 23:55:47 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit3 = graph_builder.commit_with_parents(&[&commit2]);
|
|
|
|
|
|
|
|
// Roots of an empty set is an empty set
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "roots(none())"),
|
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Roots of the root is the root
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "roots(root)"),
|
|
|
|
vec![root_commit.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Roots of a single commit is that commit
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("roots({})", commit2.id().hex())
|
|
|
|
),
|
|
|
|
vec![commit2.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Roots of a parent and a child is the parent
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("roots({} | {})", commit2.id().hex(), commit3.id().hex())
|
|
|
|
),
|
|
|
|
vec![commit2.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Roots of a grandparent and a grandchild is the grandparent (unlike
|
|
|
|
// Mercurial's roots() revset, which would include both)
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("roots({} | {})", commit1.id().hex(), commit3.id().hex())
|
|
|
|
),
|
|
|
|
vec![commit1.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Roots of all commits is the root commit
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "roots(all())"),
|
|
|
|
vec![root_commit.id().clone()]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-10 20:18:30 +03:00
|
|
|
fn test_evaluate_expression_parents(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-10-23 09:51:44 +03:00
|
|
|
let test_workspace = TestWorkspace::init(&settings, use_git);
|
|
|
|
let repo = &test_workspace.repo;
|
2021-04-10 20:18:30 +03:00
|
|
|
|
2021-05-01 07:41:27 +03:00
|
|
|
let root_commit = repo.store().root_commit();
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-10 20:18:30 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
2021-05-01 07:41:27 +03:00
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit3 = graph_builder.initial_commit();
|
|
|
|
let commit4 = graph_builder.commit_with_parents(&[&commit2, &commit3]);
|
|
|
|
let commit5 = graph_builder.commit_with_parents(&[&commit2]);
|
2021-04-10 20:18:30 +03:00
|
|
|
|
|
|
|
// The root commit has no parents
|
2021-12-13 09:40:16 +03:00
|
|
|
assert_eq!(resolve_commit_ids(mut_repo.as_repo_ref(), "root-"), vec![]);
|
2021-04-10 20:18:30 +03:00
|
|
|
|
|
|
|
// Can find parents of the current checkout
|
2022-10-21 02:33:14 +03:00
|
|
|
mut_repo
|
|
|
|
.set_wc_commit(WorkspaceId::default(), commit2.id().clone())
|
|
|
|
.unwrap();
|
2021-04-10 20:18:30 +03:00
|
|
|
assert_eq!(
|
2022-10-23 07:14:00 +03:00
|
|
|
resolve_commit_ids_in_workspace(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
"@-",
|
|
|
|
&test_workspace.workspace,
|
|
|
|
None,
|
|
|
|
),
|
2021-04-10 20:18:30 +03:00
|
|
|
vec![commit1.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Can find parents of a merge commit
|
|
|
|
assert_eq!(
|
2021-12-13 09:40:16 +03:00
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), &format!("{}-", commit4.id().hex())),
|
2021-04-19 01:09:29 +03:00
|
|
|
vec![commit3.id().clone(), commit2.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Parents of all commits in input are returned
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-13 09:40:16 +03:00
|
|
|
&format!("({} | {})-", commit2.id().hex(), commit3.id().hex())
|
2021-04-19 01:09:29 +03:00
|
|
|
),
|
|
|
|
vec![commit1.id().clone(), root_commit.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Parents already in input set are returned
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-13 09:40:16 +03:00
|
|
|
&format!("({} | {})-", commit1.id().hex(), commit2.id().hex())
|
2021-04-19 01:09:29 +03:00
|
|
|
),
|
|
|
|
vec![commit1.id().clone(), root_commit.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Parents shared among commits in input are not repeated
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-13 09:40:16 +03:00
|
|
|
&format!("({} | {})-", commit4.id().hex(), commit5.id().hex())
|
2021-04-19 01:09:29 +03:00
|
|
|
),
|
|
|
|
vec![commit3.id().clone(), commit2.id().clone()]
|
2021-04-10 20:18:30 +03:00
|
|
|
);
|
2022-12-09 16:55:59 +03:00
|
|
|
|
|
|
|
// Can find parents of parents, which may be optimized to single query
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), &format!("{}--", commit4.id().hex())),
|
|
|
|
vec![commit1.id().clone(), root_commit.id().clone()]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("({} | {})--", commit4.id().hex(), commit5.id().hex())
|
|
|
|
),
|
|
|
|
vec![commit1.id().clone(), root_commit.id().clone()]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("({} | {})--", commit4.id().hex(), commit2.id().hex())
|
|
|
|
),
|
|
|
|
vec![commit1.id().clone(), root_commit.id().clone()]
|
|
|
|
);
|
2021-04-10 20:18:30 +03:00
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-22 00:51:23 +03:00
|
|
|
fn test_evaluate_expression_children(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-22 00:51:23 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-22 00:51:23 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit1 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit2 = create_random_commit(&settings, repo)
|
2021-04-22 00:51:23 +03:00
|
|
|
.set_parents(vec![commit1.id().clone()])
|
|
|
|
.write_to_repo(mut_repo);
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit3 = create_random_commit(&settings, repo)
|
2021-09-26 00:36:34 +03:00
|
|
|
.set_parents(vec![commit2.id().clone()])
|
2021-04-22 00:51:23 +03:00
|
|
|
.write_to_repo(mut_repo);
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit4 = create_random_commit(&settings, repo)
|
2021-04-22 00:51:23 +03:00
|
|
|
.set_parents(vec![commit1.id().clone()])
|
|
|
|
.write_to_repo(mut_repo);
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit5 = create_random_commit(&settings, repo)
|
2021-09-26 00:36:34 +03:00
|
|
|
.set_parents(vec![commit3.id().clone(), commit4.id().clone()])
|
2021-04-22 00:51:23 +03:00
|
|
|
.write_to_repo(mut_repo);
|
|
|
|
|
|
|
|
// Can find children of the root commit
|
|
|
|
assert_eq!(
|
2021-12-11 22:23:29 +03:00
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "root+"),
|
2022-02-06 02:02:16 +03:00
|
|
|
vec![commit1.id().clone()]
|
2021-04-22 00:51:23 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
// Children of all commits in input are returned, including those already in the
|
|
|
|
// input set
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-11 22:23:29 +03:00
|
|
|
&format!("({} | {})+", commit1.id().hex(), commit2.id().hex())
|
2021-04-22 00:51:23 +03:00
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit4.id().clone(),
|
2021-09-26 00:36:34 +03:00
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone()
|
2021-04-22 00:51:23 +03:00
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Children shared among commits in input are not repeated
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-11 22:23:29 +03:00
|
|
|
&format!("({} | {})+", commit3.id().hex(), commit4.id().hex())
|
2021-04-22 00:51:23 +03:00
|
|
|
),
|
2021-09-26 00:36:34 +03:00
|
|
|
vec![commit5.id().clone()]
|
2021-04-22 00:51:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-10 20:18:30 +03:00
|
|
|
fn test_evaluate_expression_ancestors(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-10 20:18:30 +03:00
|
|
|
|
2021-05-01 07:41:27 +03:00
|
|
|
let root_commit = repo.store().root_commit();
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-10 20:18:30 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
2021-05-01 07:41:27 +03:00
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit3 = graph_builder.commit_with_parents(&[&commit2]);
|
|
|
|
let commit4 = graph_builder.commit_with_parents(&[&commit1, &commit3]);
|
2021-04-10 20:18:30 +03:00
|
|
|
|
|
|
|
// The ancestors of the root commit is just the root commit itself
|
|
|
|
assert_eq!(
|
2021-12-12 10:50:26 +03:00
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), ":root"),
|
2021-04-10 20:18:30 +03:00
|
|
|
vec![root_commit.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Can find ancestors of a specific commit. Commits reachable via multiple paths
|
|
|
|
// are not repeated.
|
|
|
|
assert_eq!(
|
2021-12-12 10:50:26 +03:00
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), &format!(":{}", commit4.id().hex())),
|
2021-04-10 20:18:30 +03:00
|
|
|
vec![
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone(),
|
|
|
|
root_commit.id().clone(),
|
|
|
|
]
|
|
|
|
);
|
2022-12-09 16:55:59 +03:00
|
|
|
|
|
|
|
// Can find ancestors of parents or parents of ancestors, which may be optimized
|
|
|
|
// to single query
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!(":({}-)", commit4.id().hex()),
|
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone(),
|
|
|
|
root_commit.id().clone(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("(:({}|{}))-", commit3.id().hex(), commit2.id().hex()),
|
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone(),
|
|
|
|
root_commit.id().clone(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!(":(({}|{})-)", commit3.id().hex(), commit2.id().hex()),
|
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone(),
|
|
|
|
root_commit.id().clone(),
|
|
|
|
]
|
|
|
|
);
|
2021-04-10 20:18:30 +03:00
|
|
|
}
|
2021-04-16 08:19:08 +03:00
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-23 21:11:39 +03:00
|
|
|
fn test_evaluate_expression_range(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-23 21:11:39 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-23 21:11:39 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
2021-05-01 07:41:27 +03:00
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit3 = graph_builder.commit_with_parents(&[&commit2]);
|
|
|
|
let commit4 = graph_builder.commit_with_parents(&[&commit1, &commit3]);
|
2021-04-23 21:11:39 +03:00
|
|
|
|
|
|
|
// The range from the root to the root is empty (because the left side of the
|
|
|
|
// range is exclusive)
|
|
|
|
assert_eq!(
|
2021-12-12 10:56:37 +03:00
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "root..root"),
|
2021-04-23 21:11:39 +03:00
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Linear range
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-12 10:56:37 +03:00
|
|
|
&format!("{}..{}", commit1.id().hex(), commit3.id().hex())
|
2021-04-23 21:11:39 +03:00
|
|
|
),
|
|
|
|
vec![commit3.id().clone(), commit2.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Empty range (descendant first)
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-12 10:56:37 +03:00
|
|
|
&format!("{}..{}", commit3.id().hex(), commit1.id().hex())
|
2021-04-23 21:11:39 +03:00
|
|
|
),
|
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Range including a merge
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-12 10:56:37 +03:00
|
|
|
&format!("{}..{}", commit1.id().hex(), commit4.id().hex())
|
2021-04-23 21:11:39 +03:00
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone()
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Sibling commits
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-12 10:56:37 +03:00
|
|
|
&format!("{}..{}", commit2.id().hex(), commit3.id().hex())
|
2021-04-23 21:11:39 +03:00
|
|
|
),
|
|
|
|
vec![commit3.id().clone()]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-23 08:45:58 +03:00
|
|
|
fn test_evaluate_expression_dag_range(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-23 08:45:58 +03:00
|
|
|
|
2021-11-17 23:29:08 +03:00
|
|
|
let root_commit_id = repo.store().root_commit_id().clone();
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-23 08:45:58 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
2021-05-01 07:41:27 +03:00
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit3 = graph_builder.commit_with_parents(&[&commit2]);
|
|
|
|
let commit4 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit5 = graph_builder.commit_with_parents(&[&commit3, &commit4]);
|
2021-04-23 08:45:58 +03:00
|
|
|
|
|
|
|
// Can get DAG range of just the root commit
|
|
|
|
assert_eq!(
|
2021-12-12 10:50:26 +03:00
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "root:root"),
|
2021-11-17 23:29:08 +03:00
|
|
|
vec![root_commit_id.clone()]
|
2021-04-23 08:45:58 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
// Linear range
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-12 10:50:26 +03:00
|
|
|
&format!("{}:{}", root_commit_id.hex(), commit2.id().hex())
|
2021-04-23 08:45:58 +03:00
|
|
|
),
|
2022-04-14 07:26:21 +03:00
|
|
|
vec![commit2.id().clone(), commit1.id().clone(), root_commit_id]
|
2021-04-23 08:45:58 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
// Empty range
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-12 10:50:26 +03:00
|
|
|
&format!("{}:{}", commit2.id().hex(), commit4.id().hex())
|
2021-04-23 08:45:58 +03:00
|
|
|
),
|
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Including a merge
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-12 10:50:26 +03:00
|
|
|
&format!("{}:{}", commit1.id().hex(), commit5.id().hex())
|
2021-04-23 08:45:58 +03:00
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit5.id().clone(),
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
2022-04-14 07:26:21 +03:00
|
|
|
// Including a merge, but ancestors only from one side
|
2021-04-23 08:45:58 +03:00
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-12 10:50:26 +03:00
|
|
|
&format!("{}:{}", commit2.id().hex(), commit5.id().hex())
|
2021-04-23 08:45:58 +03:00
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit5.id().clone(),
|
2022-04-14 07:26:21 +03:00
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
|
|
|
fn test_evaluate_expression_connected(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-04-14 07:26:21 +03:00
|
|
|
let repo = &test_repo.repo;
|
|
|
|
|
|
|
|
let root_commit_id = repo.store().root_commit_id().clone();
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2022-04-14 07:26:21 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit3 = graph_builder.commit_with_parents(&[&commit2]);
|
|
|
|
let commit4 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit5 = graph_builder.commit_with_parents(&[&commit3, &commit4]);
|
|
|
|
|
|
|
|
// Connecting an empty set yields an empty set
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "connected(none())"),
|
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Can connect just the root commit
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "connected(root)"),
|
|
|
|
vec![root_commit_id.clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Can connect linearly
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!(
|
|
|
|
"connected({} | {})",
|
|
|
|
root_commit_id.hex(),
|
|
|
|
commit2.id().hex()
|
|
|
|
)
|
|
|
|
),
|
|
|
|
vec![commit2.id().clone(), commit1.id().clone(), root_commit_id]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Siblings don't get connected
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("connected({} | {})", commit2.id().hex(), commit4.id().hex())
|
|
|
|
),
|
|
|
|
vec![commit4.id().clone(), commit2.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Including a merge
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("connected({} | {})", commit1.id().hex(), commit5.id().hex())
|
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit5.id().clone(),
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Including a merge, but ancestors only from one side
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("connected({} | {})", commit2.id().hex(), commit5.id().hex())
|
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit5.id().clone(),
|
2021-04-23 08:45:58 +03:00
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-22 00:51:23 +03:00
|
|
|
fn test_evaluate_expression_descendants(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-22 00:51:23 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-22 00:51:23 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
2021-11-17 23:29:08 +03:00
|
|
|
let root_commit_id = repo.store().root_commit_id().clone();
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit1 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit2 = create_random_commit(&settings, repo)
|
2021-04-22 00:51:23 +03:00
|
|
|
.set_parents(vec![commit1.id().clone()])
|
|
|
|
.write_to_repo(mut_repo);
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit3 = create_random_commit(&settings, repo)
|
2021-09-26 00:36:34 +03:00
|
|
|
.set_parents(vec![commit2.id().clone()])
|
2021-04-22 00:51:23 +03:00
|
|
|
.write_to_repo(mut_repo);
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit4 = create_random_commit(&settings, repo)
|
2021-04-22 00:51:23 +03:00
|
|
|
.set_parents(vec![commit1.id().clone()])
|
|
|
|
.write_to_repo(mut_repo);
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit5 = create_random_commit(&settings, repo)
|
2021-09-26 00:36:34 +03:00
|
|
|
.set_parents(vec![commit3.id().clone(), commit4.id().clone()])
|
2021-04-22 00:51:23 +03:00
|
|
|
.write_to_repo(mut_repo);
|
|
|
|
|
2021-09-26 00:36:34 +03:00
|
|
|
// The descendants of the root commit are all the commits in the repo
|
2021-04-22 00:51:23 +03:00
|
|
|
assert_eq!(
|
2021-12-12 10:50:26 +03:00
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "root:"),
|
2021-04-22 00:51:23 +03:00
|
|
|
vec![
|
|
|
|
commit5.id().clone(),
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit3.id().clone(),
|
2021-09-26 00:36:34 +03:00
|
|
|
commit2.id().clone(),
|
2021-04-22 00:51:23 +03:00
|
|
|
commit1.id().clone(),
|
2021-11-17 23:29:08 +03:00
|
|
|
root_commit_id,
|
2021-04-22 00:51:23 +03:00
|
|
|
]
|
|
|
|
);
|
|
|
|
|
2021-08-29 08:03:49 +03:00
|
|
|
// Can find descendants of a specific commit
|
2021-04-22 00:51:23 +03:00
|
|
|
assert_eq!(
|
2021-12-12 10:50:26 +03:00
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), &format!("{}:", commit2.id().hex())),
|
2021-04-22 00:51:23 +03:00
|
|
|
vec![
|
2021-09-26 00:36:34 +03:00
|
|
|
commit5.id().clone(),
|
2021-04-22 00:51:23 +03:00
|
|
|
commit3.id().clone(),
|
2021-09-26 00:36:34 +03:00
|
|
|
commit2.id().clone(),
|
2021-04-22 00:51:23 +03:00
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-10-13 19:07:18 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
|
|
|
fn test_evaluate_expression_none(use_git: bool) {
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-10-13 19:07:18 +03:00
|
|
|
|
|
|
|
// none() is empty (doesn't include the checkout, for example)
|
|
|
|
assert_eq!(resolve_commit_ids(repo.as_repo_ref(), "none()"), vec![]);
|
|
|
|
}
|
|
|
|
|
2021-10-13 19:12:50 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
|
|
|
fn test_evaluate_expression_all(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-10-13 19:12:50 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-10-13 19:12:50 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
2021-11-17 23:29:08 +03:00
|
|
|
let root_commit_id = repo.store().root_commit_id().clone();
|
2021-10-13 19:12:50 +03:00
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit3 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit4 = graph_builder.commit_with_parents(&[&commit2, &commit3]);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "all()"),
|
|
|
|
vec![
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone(),
|
2021-11-17 23:29:08 +03:00
|
|
|
root_commit_id,
|
2021-10-13 19:12:50 +03:00
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2022-04-13 23:27:00 +03:00
|
|
|
fn test_evaluate_expression_visible_heads(use_git: bool) {
|
2021-04-16 08:19:08 +03:00
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-16 08:19:08 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-16 08:19:08 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
2021-05-01 07:41:27 +03:00
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.commit_with_parents(&[&commit1]);
|
2022-02-06 02:02:16 +03:00
|
|
|
let commit3 = graph_builder.commit_with_parents(&[&commit1]);
|
2021-04-16 08:19:08 +03:00
|
|
|
|
|
|
|
assert_eq!(
|
2021-09-26 00:36:34 +03:00
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "heads()"),
|
2022-02-06 02:02:16 +03:00
|
|
|
vec![commit3.id().clone(), commit2.id().clone()]
|
2021-04-16 08:19:08 +03:00
|
|
|
);
|
|
|
|
}
|
2021-04-16 08:52:33 +03:00
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-19 03:30:21 +03:00
|
|
|
fn test_evaluate_expression_public_heads(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-19 03:30:21 +03:00
|
|
|
|
2021-05-01 07:41:27 +03:00
|
|
|
let root_commit = repo.store().root_commit();
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-19 03:30:21 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
2021-05-01 07:41:27 +03:00
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.initial_commit();
|
2021-04-19 03:30:21 +03:00
|
|
|
|
|
|
|
// Can get public heads with root commit as only public head
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "public_heads()"),
|
2021-04-19 08:52:31 +03:00
|
|
|
vec![root_commit.id().clone()]
|
2021-04-19 03:30:21 +03:00
|
|
|
);
|
|
|
|
// 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()]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-26 09:38:23 +03:00
|
|
|
fn test_evaluate_expression_git_refs(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-26 09:38:23 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-26 09:38:23 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit1 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit2 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit3 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit4 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
2021-04-26 09:38:23 +03:00
|
|
|
|
|
|
|
// Can get git refs when there are none
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "git_refs()"),
|
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
// Can get a mix of git refs
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/heads/branch1".to_string(),
|
|
|
|
RefTarget::Normal(commit1.id().clone()),
|
|
|
|
);
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/tags/tag1".to_string(),
|
|
|
|
RefTarget::Normal(commit2.id().clone()),
|
|
|
|
);
|
2021-04-26 09:38:23 +03:00
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "git_refs()"),
|
|
|
|
vec![commit2.id().clone(), commit1.id().clone()]
|
|
|
|
);
|
|
|
|
// Two refs pointing to the same commit does not result in a duplicate in the
|
|
|
|
// revset
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/tags/tag2".to_string(),
|
|
|
|
RefTarget::Normal(commit2.id().clone()),
|
|
|
|
);
|
2021-04-26 09:38:23 +03:00
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "git_refs()"),
|
|
|
|
vec![commit2.id().clone(), commit1.id().clone()]
|
|
|
|
);
|
2021-07-11 20:58:01 +03:00
|
|
|
// Can get git refs when there are conflicted refs
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/heads/branch1".to_string(),
|
|
|
|
RefTarget::Conflict {
|
|
|
|
removes: vec![commit1.id().clone()],
|
|
|
|
adds: vec![commit2.id().clone(), commit3.id().clone()],
|
|
|
|
},
|
|
|
|
);
|
2021-08-04 18:42:16 +03:00
|
|
|
mut_repo.set_git_ref(
|
2021-07-11 20:58:01 +03:00
|
|
|
"refs/tags/tag1".to_string(),
|
|
|
|
RefTarget::Conflict {
|
|
|
|
removes: vec![commit2.id().clone()],
|
|
|
|
adds: vec![commit3.id().clone(), commit4.id().clone()],
|
|
|
|
},
|
|
|
|
);
|
|
|
|
mut_repo.remove_git_ref("refs/tags/tag2");
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "git_refs()"),
|
|
|
|
vec![
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone()
|
|
|
|
]
|
|
|
|
);
|
2021-04-26 09:38:23 +03:00
|
|
|
}
|
|
|
|
|
2021-11-29 10:02:35 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
|
|
|
fn test_evaluate_expression_git_head(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-11-29 10:02:35 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-11-29 10:02:35 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit1 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
2021-11-29 10:02:35 +03:00
|
|
|
|
|
|
|
// Can get git head when it's not set
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "git_head()"),
|
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
mut_repo.set_git_head(commit1.id().clone());
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "git_head()"),
|
|
|
|
vec![commit1.id().clone()]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-10-10 19:39:40 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
|
|
|
fn test_evaluate_expression_branches(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-10-10 19:39:40 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-10-10 19:39:40 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit1 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit2 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit3 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit4 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
2021-10-10 19:39:40 +03:00
|
|
|
|
|
|
|
// Can get branches when there are none
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "branches()"),
|
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
// Can get a few branches
|
|
|
|
mut_repo.set_local_branch(
|
|
|
|
"branch1".to_string(),
|
|
|
|
RefTarget::Normal(commit1.id().clone()),
|
|
|
|
);
|
|
|
|
mut_repo.set_local_branch(
|
|
|
|
"branch2".to_string(),
|
|
|
|
RefTarget::Normal(commit2.id().clone()),
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "branches()"),
|
|
|
|
vec![commit2.id().clone(), commit1.id().clone()]
|
|
|
|
);
|
|
|
|
// Two branches pointing to the same commit does not result in a duplicate in
|
|
|
|
// the revset
|
|
|
|
mut_repo.set_local_branch(
|
|
|
|
"branch3".to_string(),
|
|
|
|
RefTarget::Normal(commit2.id().clone()),
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "branches()"),
|
|
|
|
vec![commit2.id().clone(), commit1.id().clone()]
|
|
|
|
);
|
|
|
|
// Can get branches when there are conflicted refs
|
|
|
|
mut_repo.set_local_branch(
|
|
|
|
"branch1".to_string(),
|
|
|
|
RefTarget::Conflict {
|
|
|
|
removes: vec![commit1.id().clone()],
|
|
|
|
adds: vec![commit2.id().clone(), commit3.id().clone()],
|
|
|
|
},
|
|
|
|
);
|
|
|
|
mut_repo.set_local_branch(
|
|
|
|
"branch2".to_string(),
|
|
|
|
RefTarget::Conflict {
|
|
|
|
removes: vec![commit2.id().clone()],
|
|
|
|
adds: vec![commit3.id().clone(), commit4.id().clone()],
|
|
|
|
},
|
|
|
|
);
|
|
|
|
mut_repo.remove_local_branch("branch3");
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "branches()"),
|
|
|
|
vec![
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone()
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
|
|
|
fn test_evaluate_expression_remote_branches(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-10-10 19:39:40 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-10-10 19:39:40 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit1 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit2 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit3 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
|
|
|
let commit4 = create_random_commit(&settings, repo).write_to_repo(mut_repo);
|
2021-10-10 19:39:40 +03:00
|
|
|
|
|
|
|
// Can get branches when there are none
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "remote_branches()"),
|
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
// Can get a few branches
|
|
|
|
mut_repo.set_remote_branch(
|
|
|
|
"branch1".to_string(),
|
|
|
|
"origin".to_string(),
|
|
|
|
RefTarget::Normal(commit1.id().clone()),
|
|
|
|
);
|
|
|
|
mut_repo.set_remote_branch(
|
|
|
|
"branch2".to_string(),
|
|
|
|
"private".to_string(),
|
|
|
|
RefTarget::Normal(commit2.id().clone()),
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "remote_branches()"),
|
|
|
|
vec![commit2.id().clone(), commit1.id().clone()]
|
|
|
|
);
|
|
|
|
// Two branches pointing to the same commit does not result in a duplicate in
|
|
|
|
// the revset
|
|
|
|
mut_repo.set_remote_branch(
|
|
|
|
"branch3".to_string(),
|
|
|
|
"origin".to_string(),
|
|
|
|
RefTarget::Normal(commit2.id().clone()),
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "remote_branches()"),
|
|
|
|
vec![commit2.id().clone(), commit1.id().clone()]
|
|
|
|
);
|
2021-10-23 09:52:16 +03:00
|
|
|
// The commits don't have to be in the current set of heads to be included.
|
|
|
|
mut_repo.remove_head(commit2.id());
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "remote_branches()"),
|
|
|
|
vec![commit2.id().clone(), commit1.id().clone()]
|
|
|
|
);
|
2021-10-10 19:39:40 +03:00
|
|
|
// Can get branches when there are conflicted refs
|
|
|
|
mut_repo.set_remote_branch(
|
|
|
|
"branch1".to_string(),
|
|
|
|
"origin".to_string(),
|
|
|
|
RefTarget::Conflict {
|
|
|
|
removes: vec![commit1.id().clone()],
|
|
|
|
adds: vec![commit2.id().clone(), commit3.id().clone()],
|
|
|
|
},
|
|
|
|
);
|
|
|
|
mut_repo.set_remote_branch(
|
|
|
|
"branch2".to_string(),
|
|
|
|
"private".to_string(),
|
|
|
|
RefTarget::Conflict {
|
|
|
|
removes: vec![commit2.id().clone()],
|
|
|
|
adds: vec![commit3.id().clone(), commit4.id().clone()],
|
|
|
|
},
|
|
|
|
);
|
|
|
|
mut_repo.remove_remote_branch("branch3", "origin");
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "remote_branches()"),
|
|
|
|
vec![
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone()
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-05-02 00:29:43 +03:00
|
|
|
fn test_evaluate_expression_merges(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-05-02 00:29:43 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-05-02 00:29:43 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.initial_commit();
|
|
|
|
let commit3 = graph_builder.initial_commit();
|
|
|
|
let commit4 = graph_builder.commit_with_parents(&[&commit1, &commit2]);
|
|
|
|
let commit5 = graph_builder.commit_with_parents(&[&commit1, &commit2, &commit3]);
|
|
|
|
|
|
|
|
// Finds all merges by default
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "merges()"),
|
|
|
|
vec![commit5.id().clone(), commit4.id().clone(),]
|
|
|
|
);
|
|
|
|
// Searches only among candidates if specified
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2022-10-25 16:20:59 +03:00
|
|
|
&format!(":{} & merges()", commit5.id().hex())
|
2021-05-02 00:29:43 +03:00
|
|
|
),
|
|
|
|
vec![commit5.id().clone()]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-16 20:24:22 +03:00
|
|
|
fn test_evaluate_expression_description(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-16 20:24:22 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-16 20:24:22 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit1 = create_random_commit(&settings, repo)
|
2021-04-16 20:24:22 +03:00
|
|
|
.set_description("commit 1".to_string())
|
|
|
|
.write_to_repo(mut_repo);
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit2 = create_random_commit(&settings, repo)
|
2021-04-16 20:24:22 +03:00
|
|
|
.set_parents(vec![commit1.id().clone()])
|
|
|
|
.set_description("commit 2".to_string())
|
|
|
|
.write_to_repo(mut_repo);
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit3 = create_random_commit(&settings, repo)
|
2021-04-16 20:24:22 +03:00
|
|
|
.set_parents(vec![commit2.id().clone()])
|
|
|
|
.set_description("commit 3".to_string())
|
|
|
|
.write_to_repo(mut_repo);
|
|
|
|
|
|
|
|
// Can find multiple matches
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "description(commit)"),
|
|
|
|
vec![
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone()
|
|
|
|
]
|
|
|
|
);
|
|
|
|
// Can find a unique match
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "description(\"commit 2\")"),
|
|
|
|
vec![commit2.id().clone()]
|
|
|
|
);
|
2021-05-02 00:29:43 +03:00
|
|
|
// Searches only among candidates if specified
|
2021-04-16 20:24:22 +03:00
|
|
|
assert_eq!(
|
2022-10-25 16:08:11 +03:00
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
"heads() & description(\"commit 2\")"
|
|
|
|
),
|
2021-04-16 20:24:22 +03:00
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
}
|
2021-04-18 01:25:52 +03:00
|
|
|
|
2021-12-16 09:16:22 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
|
|
|
fn test_evaluate_expression_author(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-12-16 09:16:22 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-12-16 09:16:22 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
|
|
|
let timestamp = Timestamp {
|
|
|
|
timestamp: MillisSinceEpoch(0),
|
|
|
|
tz_offset: 0,
|
|
|
|
};
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit1 = create_random_commit(&settings, repo)
|
2021-12-16 09:16:22 +03:00
|
|
|
.set_author(Signature {
|
|
|
|
name: "name1".to_string(),
|
|
|
|
email: "email1".to_string(),
|
|
|
|
timestamp: timestamp.clone(),
|
|
|
|
})
|
|
|
|
.write_to_repo(mut_repo);
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit2 = create_random_commit(&settings, repo)
|
2021-12-16 09:16:22 +03:00
|
|
|
.set_parents(vec![commit1.id().clone()])
|
|
|
|
.set_author(Signature {
|
|
|
|
name: "name2".to_string(),
|
|
|
|
email: "email2".to_string(),
|
|
|
|
timestamp: timestamp.clone(),
|
|
|
|
})
|
|
|
|
.write_to_repo(mut_repo);
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit3 = create_random_commit(&settings, repo)
|
2021-12-16 09:16:22 +03:00
|
|
|
.set_parents(vec![commit2.id().clone()])
|
|
|
|
.set_author(Signature {
|
|
|
|
name: "name3".to_string(),
|
|
|
|
email: "email3".to_string(),
|
|
|
|
timestamp,
|
|
|
|
})
|
|
|
|
.write_to_repo(mut_repo);
|
|
|
|
|
|
|
|
// Can find multiple matches
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "author(name)"),
|
|
|
|
vec![
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone()
|
|
|
|
]
|
|
|
|
);
|
|
|
|
// Can find a unique match by either name or email
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "author(\"name2\")"),
|
|
|
|
vec![commit2.id().clone()]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "author(\"name3\")"),
|
|
|
|
vec![commit3.id().clone()]
|
|
|
|
);
|
|
|
|
// Searches only among candidates if specified
|
|
|
|
assert_eq!(
|
2022-10-25 16:08:11 +03:00
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "heads() & author(\"name2\")"),
|
2021-12-16 09:16:22 +03:00
|
|
|
vec![]
|
|
|
|
);
|
2022-11-30 12:17:06 +03:00
|
|
|
// Filter by union of pure predicate and set
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("root.. & (author(name1) | {})", commit3.id().hex())
|
|
|
|
),
|
|
|
|
vec![commit3.id().clone(), commit1.id().clone()]
|
|
|
|
);
|
2021-12-16 09:16:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
|
|
|
fn test_evaluate_expression_committer(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-12-16 09:16:22 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-12-16 09:16:22 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
|
|
|
let timestamp = Timestamp {
|
|
|
|
timestamp: MillisSinceEpoch(0),
|
|
|
|
tz_offset: 0,
|
|
|
|
};
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit1 = create_random_commit(&settings, repo)
|
2021-12-16 09:16:22 +03:00
|
|
|
.set_committer(Signature {
|
|
|
|
name: "name1".to_string(),
|
|
|
|
email: "email1".to_string(),
|
|
|
|
timestamp: timestamp.clone(),
|
|
|
|
})
|
|
|
|
.write_to_repo(mut_repo);
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit2 = create_random_commit(&settings, repo)
|
2021-12-16 09:16:22 +03:00
|
|
|
.set_parents(vec![commit1.id().clone()])
|
|
|
|
.set_committer(Signature {
|
|
|
|
name: "name2".to_string(),
|
|
|
|
email: "email2".to_string(),
|
|
|
|
timestamp: timestamp.clone(),
|
|
|
|
})
|
|
|
|
.write_to_repo(mut_repo);
|
2022-10-29 19:56:47 +03:00
|
|
|
let commit3 = create_random_commit(&settings, repo)
|
2021-12-16 09:16:22 +03:00
|
|
|
.set_parents(vec![commit2.id().clone()])
|
|
|
|
.set_committer(Signature {
|
|
|
|
name: "name3".to_string(),
|
|
|
|
email: "email3".to_string(),
|
|
|
|
timestamp,
|
|
|
|
})
|
|
|
|
.write_to_repo(mut_repo);
|
|
|
|
|
|
|
|
// Can find multiple matches
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "committer(name)"),
|
|
|
|
vec![
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone()
|
|
|
|
]
|
|
|
|
);
|
|
|
|
// Can find a unique match by either name or email
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "committer(\"name2\")"),
|
|
|
|
vec![commit2.id().clone()]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "committer(\"name3\")"),
|
|
|
|
vec![commit3.id().clone()]
|
|
|
|
);
|
|
|
|
// Searches only among candidates if specified
|
|
|
|
assert_eq!(
|
2022-10-25 16:08:11 +03:00
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), "heads() & committer(\"name2\")"),
|
2021-12-16 09:16:22 +03:00
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-19 01:09:29 +03:00
|
|
|
fn test_evaluate_expression_union(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-19 01:09:29 +03:00
|
|
|
|
2021-05-01 07:41:27 +03:00
|
|
|
let root_commit = repo.store().root_commit();
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-19 01:09:29 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
2021-05-01 07:41:27 +03:00
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit3 = graph_builder.commit_with_parents(&[&commit2]);
|
|
|
|
let commit4 = graph_builder.commit_with_parents(&[&commit3]);
|
|
|
|
let commit5 = graph_builder.commit_with_parents(&[&commit2]);
|
2021-04-19 01:09:29 +03:00
|
|
|
|
|
|
|
// Union between ancestors
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-12 10:50:26 +03:00
|
|
|
&format!(":{} | :{}", commit4.id().hex(), commit5.id().hex())
|
2021-04-19 01:09:29 +03:00
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit5.id().clone(),
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone(),
|
|
|
|
root_commit.id().clone()
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Unioning can add back commits removed by difference
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!(
|
2021-12-13 09:40:16 +03:00
|
|
|
"(:{} ~ :{}) | :{}",
|
2021-04-19 01:09:29 +03:00
|
|
|
commit4.id().hex(),
|
|
|
|
commit2.id().hex(),
|
|
|
|
commit5.id().hex()
|
|
|
|
)
|
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit5.id().clone(),
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone(),
|
|
|
|
root_commit.id().clone(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Unioning of disjoint sets
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!(
|
2021-12-13 09:40:16 +03:00
|
|
|
"(:{} ~ :{}) | {}",
|
2021-04-19 01:09:29 +03:00
|
|
|
commit4.id().hex(),
|
|
|
|
commit2.id().hex(),
|
|
|
|
commit5.id().hex(),
|
|
|
|
)
|
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit5.id().clone(),
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit3.id().clone()
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-19 03:10:17 +03:00
|
|
|
fn test_evaluate_expression_intersection(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-19 03:10:17 +03:00
|
|
|
|
2021-05-01 07:41:27 +03:00
|
|
|
let root_commit = repo.store().root_commit();
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-19 03:10:17 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
2021-05-01 07:41:27 +03:00
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit3 = graph_builder.commit_with_parents(&[&commit2]);
|
|
|
|
let commit4 = graph_builder.commit_with_parents(&[&commit3]);
|
|
|
|
let commit5 = graph_builder.commit_with_parents(&[&commit2]);
|
2021-04-19 03:10:17 +03:00
|
|
|
|
|
|
|
// Intersection between ancestors
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-12 10:50:26 +03:00
|
|
|
&format!(":{} & :{}", commit4.id().hex(), commit5.id().hex())
|
2021-04-19 03:10:17 +03:00
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone(),
|
|
|
|
root_commit.id().clone()
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Intersection of disjoint sets
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("{} & {}", commit4.id().hex(), commit2.id().hex())
|
|
|
|
),
|
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-12 09:52:38 +03:00
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
2021-04-18 01:25:52 +03:00
|
|
|
fn test_evaluate_expression_difference(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-05-21 21:20:51 +03:00
|
|
|
let test_repo = TestRepo::init(use_git);
|
2022-02-06 02:02:16 +03:00
|
|
|
let repo = &test_repo.repo;
|
2021-04-18 01:25:52 +03:00
|
|
|
|
2021-05-01 07:41:27 +03:00
|
|
|
let root_commit = repo.store().root_commit();
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2021-04-18 01:25:52 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
2021-05-01 07:41:27 +03:00
|
|
|
let mut graph_builder = CommitGraphBuilder::new(&settings, mut_repo);
|
|
|
|
let commit1 = graph_builder.initial_commit();
|
|
|
|
let commit2 = graph_builder.commit_with_parents(&[&commit1]);
|
|
|
|
let commit3 = graph_builder.commit_with_parents(&[&commit2]);
|
|
|
|
let commit4 = graph_builder.commit_with_parents(&[&commit3]);
|
|
|
|
let commit5 = graph_builder.commit_with_parents(&[&commit2]);
|
2021-04-18 01:25:52 +03:00
|
|
|
|
2022-11-17 15:58:51 +03:00
|
|
|
// Difference from all
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(mut_repo.as_repo_ref(), &format!("~:{}", commit5.id().hex())),
|
|
|
|
vec![commit4.id().clone(), commit3.id().clone()]
|
|
|
|
);
|
|
|
|
|
2021-04-18 01:25:52 +03:00
|
|
|
// Difference between ancestors
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-13 09:40:16 +03:00
|
|
|
&format!(":{} ~ :{}", commit4.id().hex(), commit5.id().hex())
|
2021-04-18 01:25:52 +03:00
|
|
|
),
|
|
|
|
vec![commit4.id().clone(), commit3.id().clone()]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-13 09:40:16 +03:00
|
|
|
&format!(":{} ~ :{}", commit5.id().hex(), commit4.id().hex())
|
2021-04-18 01:25:52 +03:00
|
|
|
),
|
|
|
|
vec![commit5.id().clone()]
|
|
|
|
);
|
2022-11-17 15:58:51 +03:00
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("~:{} & :{}", commit4.id().hex(), commit5.id().hex())
|
|
|
|
),
|
|
|
|
vec![commit5.id().clone()]
|
|
|
|
);
|
2021-04-18 01:25:52 +03:00
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
2021-12-13 09:40:16 +03:00
|
|
|
&format!(":{} ~ :{}", commit4.id().hex(), commit2.id().hex())
|
2021-04-18 01:25:52 +03:00
|
|
|
),
|
|
|
|
vec![commit4.id().clone(), commit3.id().clone()]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Associativity
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!(
|
2021-12-13 09:40:16 +03:00
|
|
|
":{} ~ {} ~ {}",
|
2021-04-18 01:25:52 +03:00
|
|
|
commit4.id().hex(),
|
|
|
|
commit2.id().hex(),
|
|
|
|
commit3.id().hex()
|
|
|
|
)
|
|
|
|
),
|
|
|
|
vec![
|
|
|
|
commit4.id().clone(),
|
|
|
|
commit1.id().clone(),
|
|
|
|
root_commit.id().clone(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Subtracting a difference does not add back any commits
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!(
|
2021-12-13 09:40:16 +03:00
|
|
|
"(:{} ~ :{}) ~ (:{} ~ :{})",
|
2021-04-18 01:25:52 +03:00
|
|
|
commit4.id().hex(),
|
|
|
|
commit1.id().hex(),
|
|
|
|
commit3.id().hex(),
|
|
|
|
commit1.id().hex(),
|
|
|
|
)
|
|
|
|
),
|
|
|
|
vec![commit4.id().clone()]
|
|
|
|
);
|
|
|
|
}
|
2022-09-13 09:39:06 +03:00
|
|
|
|
|
|
|
#[test_case(false ; "local backend")]
|
|
|
|
#[test_case(true ; "git backend")]
|
|
|
|
fn test_filter_by_diff(use_git: bool) {
|
|
|
|
let settings = testutils::user_settings();
|
2022-10-23 07:14:00 +03:00
|
|
|
let test_workspace = TestWorkspace::init(&settings, use_git);
|
|
|
|
let repo = &test_workspace.repo;
|
2022-09-13 09:39:06 +03:00
|
|
|
|
2022-11-13 09:29:06 +03:00
|
|
|
let mut tx = repo.start_transaction(&settings, "test");
|
2022-09-13 09:39:06 +03:00
|
|
|
let mut_repo = tx.mut_repo();
|
|
|
|
|
|
|
|
let added_clean_clean = RepoPath::from_internal_string("added_clean_clean");
|
|
|
|
let added_modified_clean = RepoPath::from_internal_string("added_modified_clean");
|
|
|
|
let added_modified_removed = RepoPath::from_internal_string("added_modified_removed");
|
|
|
|
let tree1 = testutils::create_tree(
|
|
|
|
repo,
|
|
|
|
&[
|
|
|
|
(&added_clean_clean, "1"),
|
|
|
|
(&added_modified_clean, "1"),
|
|
|
|
(&added_modified_removed, "1"),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
let tree2 = testutils::create_tree(
|
|
|
|
repo,
|
|
|
|
&[
|
|
|
|
(&added_clean_clean, "1"),
|
|
|
|
(&added_modified_clean, "2"),
|
|
|
|
(&added_modified_removed, "2"),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
let tree3 = testutils::create_tree(
|
|
|
|
repo,
|
|
|
|
&[
|
|
|
|
(&added_clean_clean, "1"),
|
|
|
|
(&added_modified_clean, "2"),
|
|
|
|
// added_modified_removed,
|
|
|
|
],
|
|
|
|
);
|
2022-09-19 07:59:49 +03:00
|
|
|
let commit1 = CommitBuilder::for_new_commit(
|
|
|
|
&settings,
|
|
|
|
vec![repo.store().root_commit_id().clone()],
|
|
|
|
tree1.id().clone(),
|
|
|
|
)
|
|
|
|
.write_to_repo(mut_repo);
|
2022-09-19 08:26:45 +03:00
|
|
|
let commit2 =
|
|
|
|
CommitBuilder::for_new_commit(&settings, vec![commit1.id().clone()], tree2.id().clone())
|
|
|
|
.write_to_repo(mut_repo);
|
|
|
|
let commit3 =
|
|
|
|
CommitBuilder::for_new_commit(&settings, vec![commit2.id().clone()], tree3.id().clone())
|
|
|
|
.write_to_repo(mut_repo);
|
2022-11-15 11:12:37 +03:00
|
|
|
let commit4 =
|
|
|
|
CommitBuilder::for_new_commit(&settings, vec![commit3.id().clone()], tree3.id().clone())
|
|
|
|
.write_to_repo(mut_repo);
|
2022-09-13 09:39:06 +03:00
|
|
|
|
2022-10-23 07:14:00 +03:00
|
|
|
// matcher API:
|
2022-09-13 09:39:06 +03:00
|
|
|
let resolve = |file_path: &RepoPath| -> Vec<CommitId> {
|
|
|
|
let repo_ref = mut_repo.as_repo_ref();
|
|
|
|
let matcher = FilesMatcher::new([file_path.clone()].into());
|
|
|
|
let candidates = RevsetExpression::all().evaluate(repo_ref, None).unwrap();
|
2022-10-23 07:56:54 +03:00
|
|
|
let commit_ids = revset::filter_by_diff(repo_ref, &matcher as &dyn Matcher, candidates)
|
2022-09-13 09:39:06 +03:00
|
|
|
.iter()
|
|
|
|
.commit_ids()
|
|
|
|
.collect();
|
|
|
|
commit_ids
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(resolve(&added_clean_clean), vec![commit1.id().clone()]);
|
|
|
|
assert_eq!(
|
|
|
|
resolve(&added_modified_clean),
|
|
|
|
vec![commit2.id().clone(), commit1.id().clone()]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve(&added_modified_removed),
|
|
|
|
vec![
|
|
|
|
commit3.id().clone(),
|
|
|
|
commit2.id().clone(),
|
|
|
|
commit1.id().clone()
|
|
|
|
]
|
|
|
|
);
|
2022-10-23 07:14:00 +03:00
|
|
|
|
|
|
|
// file() revset:
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids_in_workspace(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
r#"file("repo/added_clean_clean")"#,
|
|
|
|
&test_workspace.workspace,
|
|
|
|
Some(test_workspace.workspace.workspace_root().parent().unwrap()),
|
|
|
|
),
|
|
|
|
vec![commit1.id().clone()]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids_in_workspace(
|
|
|
|
mut_repo.as_repo_ref(),
|
2022-10-25 16:08:11 +03:00
|
|
|
&format!(r#"{}: & file("added_modified_clean")"#, commit2.id().hex()),
|
2022-10-23 07:14:00 +03:00
|
|
|
&test_workspace.workspace,
|
|
|
|
Some(test_workspace.workspace.workspace_root()),
|
|
|
|
),
|
|
|
|
vec![commit2.id().clone()]
|
|
|
|
);
|
2022-11-15 11:12:37 +03:00
|
|
|
|
|
|
|
// empty() revset, which is identical to ~file(".")
|
|
|
|
assert_eq!(
|
|
|
|
resolve_commit_ids(
|
|
|
|
mut_repo.as_repo_ref(),
|
|
|
|
&format!("{}: & empty()", commit1.id().hex())
|
|
|
|
),
|
|
|
|
vec![commit4.id().clone()]
|
|
|
|
);
|
2022-09-13 09:39:06 +03:00
|
|
|
}
|