Compare commits
No commits in common. "ba67b1ebcba46308a44d3f6dccc16ed8b0acefe3" and "c104dfedc1f41020b3468d73a52ae49e0050ebb2" have entirely different histories.
ba67b1ebcb
...
c104dfedc1
3 changed files with 15 additions and 7 deletions
|
@ -12,6 +12,7 @@ pub struct Positions {
|
|||
pub dev_commit_history: Vec<git::Commit>,
|
||||
}
|
||||
|
||||
#[allow(clippy::cognitive_complexity)] // TODO: (#83) reduce complexity
|
||||
pub fn validate_positions(
|
||||
open_repository: &dyn git::repository::OpenRepositoryLike,
|
||||
repo_details: &git::RepoDetails,
|
||||
|
@ -20,31 +21,39 @@ pub fn validate_positions(
|
|||
let main_branch = repo_config.branches().main();
|
||||
let next_branch = repo_config.branches().next();
|
||||
let dev_branch = repo_config.branches().dev();
|
||||
tracing::debug!(%main_branch, %next_branch, %dev_branch, "branches");
|
||||
// Collect Commit Histories for `main`, `next` and `dev` branches
|
||||
open_repository.fetch()?;
|
||||
tracing::debug!("fetch okay");
|
||||
let commit_histories = get_commit_histories(open_repository, &repo_config)?;
|
||||
tracing::debug!(?commit_histories, "get commit histories okay");
|
||||
// branch tips
|
||||
let main =
|
||||
commit_histories.main.first().cloned().ok_or_else(|| {
|
||||
Error::NonRetryable(format!("Branch has no commits: {}", main_branch))
|
||||
})?;
|
||||
tracing::debug!("main branch okay");
|
||||
let next =
|
||||
commit_histories.next.first().cloned().ok_or_else(|| {
|
||||
Error::NonRetryable(format!("Branch has no commits: {}", next_branch))
|
||||
})?;
|
||||
tracing::debug!("next branch okay");
|
||||
let dev = commit_histories
|
||||
.dev
|
||||
.first()
|
||||
.cloned()
|
||||
.ok_or_else(|| Error::NonRetryable(format!("Branch has no commits: {}", dev_branch)))?;
|
||||
tracing::debug!("dev branch okay");
|
||||
// Validations:
|
||||
// Dev must be on main branch, else the USER must rebase it
|
||||
if is_not_based_on(&commit_histories.dev, &main) {
|
||||
return Err(Error::UserIntervention(format!(
|
||||
tracing::warn!("Dev '{dev_branch}' not based on main '{main_branch}' - user must rebase",);
|
||||
return Err(Error::NonRetryable(format!(
|
||||
"Branch '{}' not based on '{}'",
|
||||
dev_branch, main_branch
|
||||
)));
|
||||
}
|
||||
tracing::debug!("dev based on main okay");
|
||||
// verify that next is on main or at most one commit on top of main, else reset it back to main
|
||||
if is_not_based_on(
|
||||
commit_histories
|
||||
|
@ -59,11 +68,14 @@ pub fn validate_positions(
|
|||
tracing::info!("Main not on same commit as next, or it's parent - resetting next to main",);
|
||||
return reset_next_to_main(open_repository, repo_details, &main, &next, &next_branch);
|
||||
}
|
||||
tracing::debug!("next on or near main okay");
|
||||
// verify that next is an ancestor of dev, else reset it back to main
|
||||
if is_not_based_on(&commit_histories.dev, &next) {
|
||||
tracing::info!("Next is not an ancestor of dev - resetting next to main");
|
||||
return reset_next_to_main(open_repository, repo_details, &main, &next, &next_branch);
|
||||
}
|
||||
tracing::debug!("dev based on next okay");
|
||||
|
||||
Ok(git::validation::positions::Positions {
|
||||
main,
|
||||
next,
|
||||
|
@ -119,9 +131,6 @@ pub enum Error {
|
|||
|
||||
#[error("{0} - not retrying")]
|
||||
NonRetryable(String),
|
||||
|
||||
#[error("{0} - user intervention required")]
|
||||
UserIntervention(String),
|
||||
}
|
||||
impl From<git::fetch::Error> for Error {
|
||||
fn from(value: git::fetch::Error) -> Self {
|
||||
|
|
|
@ -249,7 +249,7 @@ mod positions {
|
|||
//then
|
||||
assert!(matches!(
|
||||
err,
|
||||
git::validation::positions::Error::UserIntervention(_)
|
||||
git::validation::positions::Error::NonRetryable(_)
|
||||
));
|
||||
}
|
||||
|
||||
|
|
|
@ -97,8 +97,7 @@ impl Handler<actor::messages::ValidateRepo> for actor::RepoActor {
|
|||
.into_actor(self)
|
||||
.wait(ctx);
|
||||
}
|
||||
Err(git::validation::positions::Error::NonRetryable(message))
|
||||
| Err(git::validation::positions::Error::UserIntervention(message)) => {
|
||||
Err(git::validation::positions::Error::NonRetryable(message)) => {
|
||||
actor::logger(&self.log, message);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue