extern crate git_workarea;
use self::git_workarea::CommitId;
use super::super::*;
#[derive(Debug)]
pub struct BadCommits {
bad_commits: Vec<CommitId>,
}
impl BadCommits {
pub fn new<S: ToString>(bad_commits: &[S]) -> Self {
BadCommits {
bad_commits: bad_commits.into_iter()
.map(|s| CommitId::new(s.to_string()))
.collect(),
}
}
}
impl Check for BadCommits {
fn name(&self) -> &str {
"bad-commits"
}
fn check(&self, _: &CheckGitContext, commit: &Commit) -> Result<CheckResult> {
let mut result = CheckResult::new();
if self.bad_commits.contains(&commit.sha1) {
result.add_error(format!("commit {} is a known-bad commit that was removed from the \
server.",
commit.sha1_short))
.add_alert(format!("commit {} was pushed to the server.", commit.sha1_short),
true);
}
Ok(result)
}
}
#[cfg(test)]
mod tests {
use super::BadCommits;
use super::super::test::*;
static GOOD_COMMIT: &'static str = "7b0c51ed98a23a32718ed7014d6d4a813423f1bd";
static BAD_COMMIT: &'static str = "029a00428913ee915ce5ee7250c023abfbc2aca3";
static BAD_TOPIC: &'static str = "3d535904b40868dcba6465cf2c3ce4358501880a";
#[test]
fn test_bad_commits_good_commit() {
let check = BadCommits::new(&[
BAD_COMMIT,
]);
let mut conf = GitCheckConfiguration::new();
conf.add_check(&check);
let result = test_check("test_bad_commits_good_commit", GOOD_COMMIT, &conf);
assert_eq!(result.warnings().len(), 0);
assert_eq!(result.alerts().len(), 0);
assert_eq!(result.errors().len(), 0);
assert_eq!(result.allowed(), false);
assert_eq!(result.pass(), true);
}
#[test]
fn test_bad_commits_no_bad_commit() {
let check = BadCommits::new(&[
"0000000000000000000000000000000000000000",
]);
let mut conf = GitCheckConfiguration::new();
conf.add_check(&check);
let result = test_check("test_bad_commits_no_bad_commit", BAD_TOPIC, &conf);
assert_eq!(result.warnings().len(), 0);
assert_eq!(result.alerts().len(), 0);
assert_eq!(result.errors().len(), 0);
assert_eq!(result.allowed(), false);
assert_eq!(result.pass(), true);
}
#[test]
fn test_bad_commits_already_in_history() {
let check = BadCommits::new(&[
FILLER_COMMIT,
]);
let mut conf = GitCheckConfiguration::new();
conf.add_check(&check);
let result = test_check("test_bad_commits_already_in_history", BAD_TOPIC, &conf);
assert_eq!(result.warnings().len(), 0);
assert_eq!(result.alerts().len(), 0);
assert_eq!(result.errors().len(), 0);
assert_eq!(result.allowed(), false);
assert_eq!(result.pass(), true);
}
#[test]
fn test_bad_commits_not_already_in_history() {
let check = BadCommits::new(&[
BAD_COMMIT,
]);
let mut conf = GitCheckConfiguration::new();
conf.add_check(&check);
let result = test_check("test_bad_commits_not_already_in_history", BAD_TOPIC, &conf);
assert_eq!(result.warnings().len(), 0);
assert_eq!(result.alerts().len(), 1);
assert_eq!(result.alerts()[0],
"commit 029a004 was pushed to the server.");
assert_eq!(result.errors().len(), 1);
assert_eq!(result.errors()[0],
"commit 029a004 is a known-bad commit that was removed from the server.");
assert_eq!(result.allowed(), false);
assert_eq!(result.pass(), false);
}
}