Compare commits
No commits in common. "df6b96fbfd020ac2c8d086df6bb815ee4ead75fb" and "80af909ab0794f7a4e5d8d012827d900041be4ec" have entirely different histories.
df6b96fbfd
...
80af909ab0
4 changed files with 11 additions and 123 deletions
|
@ -62,10 +62,7 @@ fn repo_details_find_default_push_remote_finds_correct_remote() -> Result<()> {
|
||||||
.with_token(ApiToken::new(Secret::new(String::new())))
|
.with_token(ApiToken::new(Secret::new(String::new())))
|
||||||
.with_hostname(Hostname::new("git.kemitix.net"));
|
.with_hostname(Hostname::new("git.kemitix.net"));
|
||||||
repo_details.repo_path = RepoPath::new("kemitix/git-next".to_string());
|
repo_details.repo_path = RepoPath::new("kemitix/git-next".to_string());
|
||||||
let Ok(open_repository) = git::repository::factory::real().open(&repo_details) else {
|
let open_repository = git::repository::factory::real().open(&repo_details)?;
|
||||||
// .git directory may not be present on dev environment
|
|
||||||
return Ok(());
|
|
||||||
};
|
|
||||||
let_assert!(
|
let_assert!(
|
||||||
Some(found_git_remote) = open_repository.find_default_remote(Direction::Push),
|
Some(found_git_remote) = open_repository.find_default_remote(Direction::Push),
|
||||||
"Default Push Remote not found"
|
"Default Push Remote not found"
|
||||||
|
@ -98,10 +95,10 @@ fn gitdir_validate_should_pass_a_valid_git_repo() -> Result<()> {
|
||||||
.with_token(ApiToken::new(Secret::new(String::new())))
|
.with_token(ApiToken::new(Secret::new(String::new())))
|
||||||
.with_hostname(Hostname::new("git.kemitix.net"));
|
.with_hostname(Hostname::new("git.kemitix.net"));
|
||||||
tracing::debug!("opening...");
|
tracing::debug!("opening...");
|
||||||
let Ok(repository) = git::repository::factory::real().open(&repo_details) else {
|
let_assert!(
|
||||||
// .git directory may not be present on dev environment
|
Ok(repository) = git::repository::factory::real().open(&repo_details),
|
||||||
return Ok(());
|
"open repository"
|
||||||
};
|
);
|
||||||
tracing::debug!("open okay");
|
tracing::debug!("open okay");
|
||||||
tracing::info!(?repository, "FOO");
|
tracing::info!(?repository, "FOO");
|
||||||
tracing::info!(?repo_details, "BAR");
|
tracing::info!(?repo_details, "BAR");
|
||||||
|
@ -111,13 +108,11 @@ fn gitdir_validate_should_pass_a_valid_git_repo() -> Result<()> {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn gitdir_validate_should_fail_a_git_repo_with_wrong_remote() {
|
fn gitdir_validate_should_fail_a_git_repo_with_wrong_remote() -> Result<()> {
|
||||||
let_assert!(
|
let_assert!(
|
||||||
Ok(cli_crate_dir) = std::env::current_dir().map_err(git::validation::remotes::Error::Io)
|
Ok(cli_crate_dir) = std::env::current_dir().map_err(git::validation::remotes::Error::Io)
|
||||||
);
|
);
|
||||||
eprintln!("cli_crate_dir: {cli_crate_dir:?}");
|
|
||||||
let_assert!(Some(Some(root)) = cli_crate_dir.parent().map(|p| p.parent()));
|
let_assert!(Some(Some(root)) = cli_crate_dir.parent().map(|p| p.parent()));
|
||||||
eprintln!("root: {root:?}");
|
|
||||||
let mut repo_details = git::repo_details(
|
let mut repo_details = git::repo_details(
|
||||||
1,
|
1,
|
||||||
git::Generation::default(),
|
git::Generation::default(),
|
||||||
|
@ -131,15 +126,14 @@ fn gitdir_validate_should_fail_a_git_repo_with_wrong_remote() {
|
||||||
.with_user(User::new("git".to_string()))
|
.with_user(User::new("git".to_string()))
|
||||||
.with_token(ApiToken::new(Secret::new(String::new())))
|
.with_token(ApiToken::new(Secret::new(String::new())))
|
||||||
.with_hostname(Hostname::new("git.kemitix.net"));
|
.with_hostname(Hostname::new("git.kemitix.net"));
|
||||||
let Ok(repository) = git::repository::factory::real().open(&repo_details) else {
|
let repository = git::repository::factory::real().open(&repo_details)?;
|
||||||
// .git directory may not be present on dev environment
|
|
||||||
return;
|
|
||||||
};
|
|
||||||
let mut repo_details = repo_details.clone();
|
let mut repo_details = repo_details.clone();
|
||||||
repo_details.forge = repo_details
|
repo_details.forge = repo_details
|
||||||
.forge
|
.forge
|
||||||
.with_hostname(Hostname::new("code.kemitix.net"));
|
.with_hostname(Hostname::new("code.kemitix.net"));
|
||||||
let_assert!(Err(_) = validate_default_remotes(&*repository, &repo_details));
|
let_assert!(Err(_) = validate_default_remotes(&*repository, &repo_details));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
@ -3,9 +3,6 @@ mod handlers;
|
||||||
pub mod messages;
|
pub mod messages;
|
||||||
mod model;
|
mod model;
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests;
|
|
||||||
|
|
||||||
use std::sync::mpsc::Sender;
|
use std::sync::mpsc::Sender;
|
||||||
|
|
||||||
use actix::{Actor, ActorContext as _, Context};
|
use actix::{Actor, ActorContext as _, Context};
|
||||||
|
|
|
@ -277,14 +277,10 @@ impl RepoState {
|
||||||
|
|
||||||
#[tracing::instrument]
|
#[tracing::instrument]
|
||||||
pub fn clear_alert(&mut self) {
|
pub fn clear_alert(&mut self) {
|
||||||
match self {
|
if let Self::Ready { alert, .. } = self {
|
||||||
Self::Identified { alert, .. }
|
|
||||||
| Self::Configured { alert, .. }
|
|
||||||
| Self::Ready { alert, .. } => {
|
|
||||||
*alert = None;
|
*alert = None;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
#[tracing::instrument]
|
#[tracing::instrument]
|
||||||
pub fn alert(&mut self, msg: impl Into<String> + std::fmt::Debug) {
|
pub fn alert(&mut self, msg: impl Into<String> + std::fmt::Debug) {
|
||||||
|
|
|
@ -1,99 +0,0 @@
|
||||||
//
|
|
||||||
mod model {
|
|
||||||
mod repo_state {
|
|
||||||
use git_next_core::{git::graph::Log, RepoBranches};
|
|
||||||
use ratatui::style::Style;
|
|
||||||
|
|
||||||
use crate::{
|
|
||||||
repo::tests::given,
|
|
||||||
tui::actor::{RepoMessage, RepoState, ViewState},
|
|
||||||
};
|
|
||||||
type Alert = Option<String>;
|
|
||||||
|
|
||||||
fn identified_with_alert(alert: Alert) -> RepoState {
|
|
||||||
RepoState::Identified {
|
|
||||||
repo_alias: given::a_repo_alias(),
|
|
||||||
message: RepoMessage::builder()
|
|
||||||
.text(given::a_name())
|
|
||||||
.style(Style::default())
|
|
||||||
.build(),
|
|
||||||
alert,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn configured_with_alert(alert: Alert) -> RepoState {
|
|
||||||
RepoState::Configured {
|
|
||||||
repo_alias: given::a_repo_alias(),
|
|
||||||
message: RepoMessage::builder()
|
|
||||||
.text(given::a_name())
|
|
||||||
.style(Style::default())
|
|
||||||
.build(),
|
|
||||||
alert,
|
|
||||||
branches: RepoBranches::new(String::new(), String::new(), String::new()),
|
|
||||||
log: Log::default(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fn ready_with_alert(alert: Alert) -> RepoState {
|
|
||||||
RepoState::Ready {
|
|
||||||
repo_alias: given::a_repo_alias(),
|
|
||||||
message: RepoMessage::builder()
|
|
||||||
.text(given::a_name())
|
|
||||||
.style(Style::default())
|
|
||||||
.build(),
|
|
||||||
alert,
|
|
||||||
branches: RepoBranches::new(String::new(), String::new(), String::new()),
|
|
||||||
log: Log::default(),
|
|
||||||
view_state: ViewState::default(),
|
|
||||||
main: given::a_commit(),
|
|
||||||
next: given::a_commit(),
|
|
||||||
dev: given::a_commit(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[rstest::rstest]
|
|
||||||
#[case(identified_with_alert(None))]
|
|
||||||
#[case(configured_with_alert(None))]
|
|
||||||
#[case(ready_with_alert(None))]
|
|
||||||
fn none_alert_remains_none(#[case] mut repo_state: RepoState) {
|
|
||||||
// given
|
|
||||||
match &repo_state {
|
|
||||||
RepoState::Identified { alert, .. }
|
|
||||||
| RepoState::Configured { alert, .. }
|
|
||||||
| RepoState::Ready { alert, .. } => {
|
|
||||||
assert!(alert.is_none(), "should be none at start");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// when
|
|
||||||
repo_state.clear_alert();
|
|
||||||
// then
|
|
||||||
match &repo_state {
|
|
||||||
RepoState::Identified { alert, .. }
|
|
||||||
| RepoState::Configured { alert, .. }
|
|
||||||
| RepoState::Ready { alert, .. } => assert!(alert.is_none(), "should remain none"),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[rstest::rstest]
|
|
||||||
#[case(identified_with_alert(Some(String::new())))]
|
|
||||||
#[case(configured_with_alert(Some(String::new())))]
|
|
||||||
#[case(ready_with_alert(Some(String::new())))]
|
|
||||||
fn some_alert_becomes_none(#[case] mut repo_state: RepoState) {
|
|
||||||
// given
|
|
||||||
match &repo_state {
|
|
||||||
RepoState::Identified { alert, .. }
|
|
||||||
| RepoState::Configured { alert, .. }
|
|
||||||
| RepoState::Ready { alert, .. } => {
|
|
||||||
assert!(alert.is_some(), "should be some at start");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// when
|
|
||||||
repo_state.clear_alert();
|
|
||||||
// then
|
|
||||||
match &repo_state {
|
|
||||||
RepoState::Identified { alert, .. }
|
|
||||||
| RepoState::Configured { alert, .. }
|
|
||||||
| RepoState::Ready { alert, .. } => assert!(alert.is_none(), "should become none"),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue