1pub mod floors;
5
6use std::collections::BTreeMap;
7use std::fmt::Write as _;
8use std::path::Path;
9
10use crate::diagnostic::{Diagnostic, Reason};
11use crate::error::RkError;
12use crate::landing::{Style, Workflow};
13use serde::Deserialize;
14
15pub const CONFIG_PATH: &str = ".release-kit/config.toml";
17pub const SCHEMA_VERSION: i64 = 1;
19
20#[derive(Debug, Clone, PartialEq, Eq, Deserialize)]
22#[serde(deny_unknown_fields, default)]
23pub struct Config {
24 pub schema_version: i64,
26 pub project: Project,
28 pub landing: Landing,
30 pub security: Security,
32 pub setup: Setup,
34 pub protection: Protection,
36}
37
38impl Default for Config {
39 fn default() -> Self {
40 Self {
41 schema_version: SCHEMA_VERSION,
42 project: Project::default(),
43 landing: Landing::default(),
44 security: Security::default(),
45 setup: Setup::default(),
46 protection: Protection::default(),
47 }
48 }
49}
50
51#[derive(Debug, Clone, Default, PartialEq, Eq, Deserialize)]
53#[serde(deny_unknown_fields, default)]
54pub struct Project {
55 pub repo: String,
57 pub forge: String,
59 pub tech: String,
61 pub trunk: Option<String>,
65}
66
67pub const TRUNK_DEFAULT: &str = "master";
69
70pub const LINE_PREFIX_DEFAULT: &str = "release/";
72
73#[derive(Debug, Clone, Default, PartialEq, Eq, Deserialize)]
75#[serde(deny_unknown_fields, default)]
76pub struct Landing {
77 pub workflow: Option<Workflow>,
79 pub style: Option<Style>,
81 pub nix: Option<bool>,
83}
84
85#[derive(Debug, Clone, Default, PartialEq, Eq, Deserialize)]
87#[serde(deny_unknown_fields, default)]
88pub struct Security {
89 pub advisories: String,
91 pub contact: Option<String>,
96 pub response: Option<String>,
99}
100
101pub const RESPONSE_DEFAULT: &str = "best-effort";
104
105pub fn canonical_contact(raw: &str) -> Result<String, String> {
115 let trimmed = raw.trim();
116 if trimmed.chars().any(char::is_control) {
117 return Err(format!(
118 "security.contact carries a control character; it is one line naming an address, a URL, a person, or a team, and empty selects the forge's own wording, found {trimmed:?}"
119 ));
120 }
121 Ok(trimmed.to_owned())
122}
123
124pub fn canonical_response(raw: &str) -> Result<String, String> {
136 let trimmed = raw.trim();
137 if trimmed.is_empty() || trimmed == RESPONSE_DEFAULT {
138 return Ok(RESPONSE_DEFAULT.to_owned());
139 }
140 let refusal = || {
141 format!(
142 "security.response must be one of: best-effort, 1 day, <n> days, 1 business day, <n> business days, where n is a whole number above one; found {trimmed:?}"
143 )
144 };
145 let (count, unit) = trimmed.split_once(' ').ok_or_else(refusal)?;
146 let plural = match unit {
147 "day" | "business day" => false,
148 "days" | "business days" => true,
149 _ => return Err(refusal()),
150 };
151 let number: u32 = count.parse().map_err(|_| refusal())?;
152 if count != number.to_string() || (number > 1) != plural {
155 return Err(refusal());
156 }
157 Ok(trimmed.to_owned())
158}
159
160#[derive(Debug, Clone, PartialEq, Eq, Deserialize)]
162#[serde(deny_unknown_fields, default)]
163pub struct Setup {
164 pub required_check: String,
166 pub retired_branches: Vec<String>,
168 pub line_prefix: Option<String>,
172 pub release_lines: bool,
174 pub excluded_steps: BTreeMap<String, String>,
179 pub bot: Bot,
181}
182
183impl Default for Setup {
184 fn default() -> Self {
185 Self {
186 required_check: String::new(),
187 retired_branches: vec!["main".into(), "develop".into()],
188 line_prefix: None,
189 release_lines: false,
190 excluded_steps: BTreeMap::new(),
191 bot: Bot::default(),
192 }
193 }
194}
195
196#[derive(Debug, Clone, Default, PartialEq, Eq, Deserialize)]
203#[serde(deny_unknown_fields, default)]
204pub struct Bot {
205 pub app_id: String,
207 #[serde(default, skip_serializing)]
212 pub installation_id: Option<i64>,
213}
214
215#[derive(Debug, Clone, PartialEq, Eq, Deserialize)]
217#[serde(deny_unknown_fields, default)]
218#[allow(
219 clippy::struct_excessive_bools,
220 reason = "these are independent policy switches in the committed TOML schema, not a state machine a smaller type could carry"
221)]
222pub struct Protection {
223 pub trunk_ruleset: Option<String>,
227 pub tag_ruleset: String,
229 pub lines_ruleset: String,
231 pub title_check: String,
233 pub tag_pattern: String,
235 pub bypass_actors: Vec<String>,
237 pub allowed_merge_methods: Vec<String>,
239 pub strict_required_status_checks: bool,
241 pub owned_trunk_rules: Vec<String>,
243 pub required_approving_review_count: i64,
245 pub dismiss_stale_reviews_on_push: bool,
247 pub require_code_owner_review: bool,
249 pub require_last_push_approval: bool,
251 pub github: Github,
253 pub gitlab: Gitlab,
255}
256
257impl Default for Protection {
258 fn default() -> Self {
259 Self {
260 trunk_ruleset: None,
261 tag_ruleset: "release-tags".into(),
262 lines_ruleset: "release-lines".into(),
263 title_check: "pr-title".into(),
264 tag_pattern: "refs/tags/v*".into(),
265 bypass_actors: Vec::new(),
266 allowed_merge_methods: vec!["squash".into()],
267 strict_required_status_checks: true,
268 owned_trunk_rules: vec![
269 "deletion".into(),
270 "non_fast_forward".into(),
271 "pull_request".into(),
272 "required_status_checks".into(),
273 ],
274 required_approving_review_count: 0,
275 dismiss_stale_reviews_on_push: false,
276 require_code_owner_review: false,
277 require_last_push_approval: false,
278 github: Github::default(),
279 gitlab: Gitlab::default(),
280 }
281 }
282}
283
284impl Protection {
285 #[must_use]
288 pub fn trunk_ruleset(&self, trunk: &str) -> String {
289 self.trunk_ruleset
290 .clone()
291 .unwrap_or_else(|| format!("{trunk}-protection"))
292 }
293}
294
295#[derive(Debug, Clone, PartialEq, Eq, Deserialize)]
297#[serde(deny_unknown_fields, default)]
298pub struct Github {
299 pub squash_title_source: String,
301 pub squash_body_source: String,
303}
304
305impl Default for Github {
306 fn default() -> Self {
307 Self {
308 squash_title_source: "PR_TITLE".into(),
309 squash_body_source: "PR_BODY".into(),
310 }
311 }
312}
313
314#[derive(Debug, Clone, PartialEq, Eq, Deserialize)]
316#[serde(deny_unknown_fields, default)]
317pub struct Gitlab {
318 pub merge_method: String,
320 pub squash_option: String,
322 pub squash_commit_template: String,
324 pub push_access_level: i64,
326 pub merge_access_level: i64,
328}
329
330impl Default for Gitlab {
331 fn default() -> Self {
332 Self {
333 merge_method: "ff".into(),
334 squash_option: "always".into(),
335 squash_commit_template: include_str!("../blocks/gitlab-squash-commit-template.in")
336 .trim_end_matches('\n')
337 .to_owned(),
338 push_access_level: 0,
339 merge_access_level: 40,
340 }
341 }
342}
343
344pub fn load(target: &Path) -> Result<Option<Config>, RkError> {
349 let text = match std::fs::read_to_string(target.join(CONFIG_PATH)) {
350 Ok(text) => text,
351 Err(error) if error.kind() == std::io::ErrorKind::NotFound => return Ok(None),
352 Err(error) => return Err(error.into()),
353 };
354 parse(&text).map(Some)
355}
356
357fn parse(text: &str) -> Result<Config, RkError> {
358 let raw: toml::Value =
359 toml::from_str(text).map_err(|error: toml::de::Error| invalid(error.to_string()))?;
360 if raw.get("schema_version").and_then(toml::Value::as_integer) != Some(SCHEMA_VERSION) {
361 return Err(invalid(format!("schema_version must be {SCHEMA_VERSION}")));
362 }
363 let config: Config = toml::from_str(text).map_err(|error: toml::de::Error| {
364 let mut message = error.to_string();
365 if let Some(rest) = error.message().strip_prefix("unknown field `") {
366 let names: Vec<_> = rest.split('`').collect();
367 if let Some(unknown) = names.first() {
368 if let Some(nearest) = names
369 .iter()
370 .skip(2)
371 .step_by(2)
372 .min_by_key(|name| distance(unknown, name))
373 {
374 let _ = write!(message, "; nearest known key: {nearest}");
375 }
376 }
377 }
378 invalid(message)
379 })?;
380 if !config.project.forge.is_empty()
381 && crate::detect::Forge::parse(&config.project.forge).is_none()
382 {
383 return Err(invalid("project.forge must be github or gitlab"));
384 }
385 if !config.project.tech.is_empty()
386 && (config.project.tech.starts_with('_')
387 || crate::embedded::SNIPPETS
388 .get_dir(&config.project.tech)
389 .is_none())
390 {
391 return Err(invalid(
392 "project.tech must name a supported payload binding",
393 ));
394 }
395 if let Some(contact) = &config.security.contact {
396 canonical_contact(contact).map_err(invalid)?;
397 }
398 if let Some(response) = &config.security.response {
399 canonical_response(response).map_err(invalid)?;
400 }
401 exclusions(&config.setup.excluded_steps)?;
402 floors::check(&config)?;
403 Ok(config)
404}
405
406fn exclusions(excluded: &BTreeMap<String, String>) -> Result<(), RkError> {
413 for (name, reason) in excluded {
414 if crate::setup::steps::spec(name).is_none() {
415 let nearest = crate::setup::steps::STEPS
416 .iter()
417 .min_by_key(|step| distance(name, step.name))
418 .map_or("", |step| step.name);
419 return Err(invalid(format!(
420 "setup.excluded_steps names {name}, which is no setup step; nearest known step: {nearest}"
421 )));
422 }
423 if reason.trim().is_empty() {
424 return Err(invalid(format!(
425 "setup.excluded_steps names {name} with no reason; an excluded step is reported with why it is out of scope"
426 )));
427 }
428 }
429 Ok(())
430}
431
432pub(super) fn invalid(message: impl std::fmt::Display) -> RkError {
433 RkError::refusal(
434 Diagnostic::new(Reason::ConfigInvalid, format!("{CONFIG_PATH}: {message}"))
435 .action(format!("edit {CONFIG_PATH} and retry"))
436 .target_state("nothing was written"),
437 )
438}
439
440fn distance(left: &str, right: &str) -> usize {
441 let mut row: Vec<_> = (0..=right.chars().count()).collect();
442 for (i, a) in left.chars().enumerate() {
443 let mut previous = row[0];
444 row[0] = i + 1;
445 for (j, b) in right.chars().enumerate() {
446 let old = row[j + 1];
447 row[j + 1] = (previous + usize::from(a != b))
448 .min(row[j] + 1)
449 .min(old + 1);
450 previous = old;
451 }
452 }
453 row.last().copied().unwrap_or(0)
454}
455
456pub fn write(target: &Path, config: &Config) -> Result<(), RkError> {
461 let bytes = render(config)?;
462 parse(&String::from_utf8_lossy(&bytes))?;
463 crate::atomic::write(&target.join(CONFIG_PATH), &bytes)?;
464 Ok(())
465}
466
467fn array(values: &[String]) -> toml_edit::Value {
468 toml_edit::Value::Array(values.iter().collect())
469}
470
471fn inline(values: &BTreeMap<String, String>) -> toml_edit::Value {
476 let mut table = toml_edit::InlineTable::new();
477 for (key, value) in values {
478 table.insert(key, value.clone().into());
479 }
480 toml_edit::Value::InlineTable(table)
481}
482
483#[allow(
484 clippy::too_many_lines,
485 reason = "the render list is one token per authored line of the config template, and splitting it would hide that correspondence"
486)]
487fn render(config: &Config) -> Result<Vec<u8>, RkError> {
488 let trunk = config
492 .project
493 .trunk
494 .clone()
495 .ok_or_else(|| invalid("project.trunk is unresolved"))?;
496 let mut fields: Vec<(&str, toml_edit::Value)> = vec![
497 ("RK_CONFIG_SCHEMA_VERSION", config.schema_version.into()),
498 ("RK_CONFIG_PROJECT_REPO", config.project.repo.clone().into()),
499 (
500 "RK_CONFIG_PROJECT_FORGE",
501 config.project.forge.clone().into(),
502 ),
503 ("RK_CONFIG_PROJECT_TECH", config.project.tech.clone().into()),
504 ("RK_CONFIG_PROJECT_TRUNK", trunk.clone().into()),
505 (
506 "RK_CONFIG_LANDING_WORKFLOW",
507 config
508 .landing
509 .workflow
510 .ok_or_else(|| invalid("landing.workflow is unresolved"))?
511 .as_str()
512 .into(),
513 ),
514 (
515 "RK_CONFIG_LANDING_STYLE",
516 config
517 .landing
518 .style
519 .ok_or_else(|| invalid("landing.style is unresolved"))?
520 .as_str()
521 .into(),
522 ),
523 (
524 "RK_CONFIG_LANDING_NIX",
525 config
526 .landing
527 .nix
528 .ok_or_else(|| invalid("landing.nix is unresolved"))?
529 .into(),
530 ),
531 (
532 "RK_CONFIG_SECURITY_ADVISORIES",
533 config.security.advisories.clone().into(),
534 ),
535 (
536 "RK_CONFIG_SECURITY_CONTACT",
537 config.security.contact.clone().unwrap_or_default().into(),
538 ),
539 (
540 "RK_CONFIG_SECURITY_RESPONSE",
541 config
542 .security
543 .response
544 .clone()
545 .unwrap_or_else(|| RESPONSE_DEFAULT.to_owned())
546 .into(),
547 ),
548 (
549 "RK_CONFIG_SETUP_REQUIRED_CHECK",
550 config.setup.required_check.clone().into(),
551 ),
552 (
553 "RK_CONFIG_SETUP_RETIRED_BRANCHES",
554 array(&config.setup.retired_branches),
555 ),
556 (
557 "RK_CONFIG_SETUP_LINE_PREFIX",
558 config
559 .setup
560 .line_prefix
561 .clone()
562 .ok_or_else(|| invalid("setup.line_prefix is unresolved"))?
563 .into(),
564 ),
565 (
566 "RK_CONFIG_SETUP_RELEASE_LINES",
567 config.setup.release_lines.into(),
568 ),
569 (
570 "RK_CONFIG_SETUP_EXCLUDED_STEPS",
571 inline(&config.setup.excluded_steps),
572 ),
573 (
574 "RK_CONFIG_SETUP_BOT_APP_ID",
575 config.setup.bot.app_id.clone().into(),
576 ),
577 ];
578 fields.extend(protection_fields(&config.protection, trunk.as_str()));
579 let template = crate::embedded::BLOCKS
580 .get_file("target-config.toml.in")
581 .and_then(include_dir::File::contents_utf8)
582 .ok_or_else(|| invalid("the binary lacks its configuration template"))?;
583 let mut bytes = Vec::new();
586 for line in template.split_inclusive('\n') {
587 if let Some((token, value)) = fields.iter().find(|(token, _)| line.contains(token)) {
588 bytes.extend(crate::landing::substitute(
589 line.as_bytes(),
590 token.as_bytes(),
591 value.to_string().as_bytes(),
592 ));
593 } else {
594 bytes.extend_from_slice(line.as_bytes());
595 }
596 }
597 Ok(bytes)
598}
599
600fn protection_fields(
601 protection: &Protection,
602 trunk: &str,
603) -> Vec<(&'static str, toml_edit::Value)> {
604 vec![
605 (
606 "RK_CONFIG_PROTECTION_TRUNK_RULESET",
607 protection.trunk_ruleset(trunk).into(),
608 ),
609 (
610 "RK_CONFIG_PROTECTION_TAG_RULESET",
611 protection.tag_ruleset.clone().into(),
612 ),
613 (
614 "RK_CONFIG_PROTECTION_LINES_RULESET",
615 protection.lines_ruleset.clone().into(),
616 ),
617 (
618 "RK_CONFIG_PROTECTION_TITLE_CHECK",
619 protection.title_check.clone().into(),
620 ),
621 (
622 "RK_CONFIG_PROTECTION_TAG_PATTERN",
623 protection.tag_pattern.clone().into(),
624 ),
625 (
626 "RK_CONFIG_PROTECTION_BYPASS_ACTORS",
627 array(&protection.bypass_actors),
628 ),
629 (
630 "RK_CONFIG_PROTECTION_ALLOWED_MERGE_METHODS",
631 array(&protection.allowed_merge_methods),
632 ),
633 (
634 "RK_CONFIG_PROTECTION_STRICT_REQUIRED_STATUS_CHECKS",
635 protection.strict_required_status_checks.into(),
636 ),
637 (
638 "RK_CONFIG_PROTECTION_OWNED_TRUNK_RULES",
639 array(&protection.owned_trunk_rules),
640 ),
641 (
642 "RK_CONFIG_PROTECTION_REQUIRED_APPROVING_REVIEW_COUNT",
643 protection.required_approving_review_count.into(),
644 ),
645 (
646 "RK_CONFIG_PROTECTION_DISMISS_STALE_REVIEWS_ON_PUSH",
647 protection.dismiss_stale_reviews_on_push.into(),
648 ),
649 (
650 "RK_CONFIG_PROTECTION_REQUIRE_CODE_OWNER_REVIEW",
651 protection.require_code_owner_review.into(),
652 ),
653 (
654 "RK_CONFIG_PROTECTION_REQUIRE_LAST_PUSH_APPROVAL",
655 protection.require_last_push_approval.into(),
656 ),
657 (
658 "RK_CONFIG_PROTECTION_GITHUB_SQUASH_TITLE_SOURCE",
659 protection.github.squash_title_source.clone().into(),
660 ),
661 (
662 "RK_CONFIG_PROTECTION_GITHUB_SQUASH_BODY_SOURCE",
663 protection.github.squash_body_source.clone().into(),
664 ),
665 (
666 "RK_CONFIG_PROTECTION_GITLAB_MERGE_METHOD",
667 protection.gitlab.merge_method.clone().into(),
668 ),
669 (
670 "RK_CONFIG_PROTECTION_GITLAB_SQUASH_OPTION",
671 protection.gitlab.squash_option.clone().into(),
672 ),
673 (
674 "RK_CONFIG_PROTECTION_GITLAB_SQUASH_COMMIT_TEMPLATE",
675 protection.gitlab.squash_commit_template.clone().into(),
676 ),
677 (
678 "RK_CONFIG_PROTECTION_GITLAB_PUSH_ACCESS_LEVEL",
679 protection.gitlab.push_access_level.into(),
680 ),
681 (
682 "RK_CONFIG_PROTECTION_GITLAB_MERGE_ACCESS_LEVEL",
683 protection.gitlab.merge_access_level.into(),
684 ),
685 ]
686}
687
688pub fn rewrite_key(target: &Path, key: &str, value: toml_edit::Value) -> Result<(), RkError> {
693 let path = target.join(CONFIG_PATH);
694 let text = std::fs::read_to_string(&path)?;
695 let next = rewrite_text(&text, key, value)?;
696 crate::atomic::write(&path, next.as_bytes())?;
697 Ok(())
698}
699
700fn rewrite_text(text: &str, key: &str, mut value: toml_edit::Value) -> Result<String, RkError> {
701 if ![
702 "project.repo",
703 "project.forge",
704 "project.tech",
705 "project.trunk",
706 "landing.workflow",
707 "landing.style",
708 "landing.nix",
709 "security.contact",
710 "security.response",
711 "setup.line_prefix",
712 ]
713 .contains(&key)
714 {
715 return Err(invalid(format!("{key} is not a landing parameter")));
716 }
717 parse(text)?;
718 let mut document = text
719 .parse::<toml_edit::DocumentMut>()
720 .map_err(|error| invalid(error.to_string()))?;
721 let mut item = document.as_item_mut();
722 for segment in key.split('.') {
723 item = &mut item[segment];
724 }
725 if let Some(old) = item.as_value() {
726 if old
727 .as_str()
728 .zip(value.as_str())
729 .is_some_and(|(old, new)| old == new)
730 || old
731 .as_bool()
732 .zip(value.as_bool())
733 .is_some_and(|(old, new)| old == new)
734 {
735 return Ok(text.to_owned());
736 }
737 *value.decor_mut() = old.decor().clone();
738 }
739 *item = toml_edit::Item::Value(value);
740 let next = document.to_string();
741 parse(&next)?;
742 Ok(next)
743}
744
745#[derive(Debug, serde::Serialize)]
747pub struct Plan {
748 pub action: &'static str,
750 pub changes: Vec<String>,
752 pub content: String,
754}
755
756impl Plan {
757 pub fn new(
762 target: &Path,
763 params: &crate::landing::Params,
764 existing: Option<&Config>,
765 record: Option<&crate::landing::manifest::Manifest>,
766 ) -> Result<Self, RkError> {
767 let mut resolved = existing.cloned().unwrap_or_default();
768 resolved.project.tech = params.tech().into();
769 resolved.project.forge = params.forge().into();
770 resolved.project.repo = params.repo().into();
771 resolved.landing = Landing {
772 workflow: Some(params.workflow()),
773 style: params.style(),
774 nix: Some(params.nix()),
775 };
776 resolved.project.trunk = Some(params.trunk().to_owned());
777 resolved.setup.line_prefix = Some(params.line_prefix().to_owned());
778 resolved.security.contact = Some(params.security_contact().to_owned());
779 resolved.security.response = Some(params.security_response().to_owned());
780 let content = if existing.is_some() {
781 let mut text = std::fs::read_to_string(target.join(CONFIG_PATH))?;
782 for (key, value) in parameter_values(&resolved) {
783 text = rewrite_text(&text, key, value)?;
784 }
785 text
786 } else {
787 String::from_utf8(render(&resolved)?).map_err(|e| invalid(e.to_string()))?
788 };
789 parse(&content)?;
790 Ok(Self {
791 action: if existing.is_some() {
792 "updated"
793 } else {
794 "added"
795 },
796 changes: record.map_or_else(Vec::new, |record| pending(&resolved, record)),
797 content,
798 })
799 }
800
801 pub fn apply(&self, target: &Path) -> Result<(), RkError> {
806 crate::atomic::write(&target.join(CONFIG_PATH), self.content.as_bytes())?;
807 Ok(())
808 }
809}
810
811fn parameter_values(config: &Config) -> Vec<(&'static str, toml_edit::Value)> {
812 let mut values = Vec::new();
813 for (key, value) in [
814 ("project.repo", &config.project.repo),
815 ("project.forge", &config.project.forge),
816 ("project.tech", &config.project.tech),
817 ] {
818 if !value.is_empty() {
819 values.push((key, value.clone().into()));
820 }
821 }
822 if let Some(value) = config.landing.workflow {
823 values.push(("landing.workflow", value.as_str().into()));
824 }
825 if let Some(value) = config.landing.style {
826 values.push(("landing.style", value.as_str().into()));
827 }
828 if let Some(value) = config.landing.nix {
829 values.push(("landing.nix", value.into()));
830 }
831 if let Some(value) = config.project.trunk.clone() {
832 values.push(("project.trunk", value.into()));
833 }
834 if let Some(value) = config.setup.line_prefix.clone() {
835 values.push(("setup.line_prefix", value.into()));
836 }
837 if let Some(value) = config.security.contact.clone() {
840 values.push(("security.contact", value.into()));
841 }
842 if let Some(value) = config.security.response.clone() {
843 values.push(("security.response", value.into()));
844 }
845 values
846}
847
848#[must_use]
850pub fn pending(config: &Config, record: &crate::landing::manifest::Manifest) -> Vec<String> {
851 let mut recorded = Config::default();
852 recorded.project.repo.clone_from(&record.parameters.repo);
853 recorded.project.forge.clone_from(&record.forge);
854 recorded.project.tech.clone_from(&record.tech);
855 recorded.landing = Landing {
856 workflow: Some(record.parameters.workflow),
857 style: record.parameters.style,
858 nix: Some(record.parameters.nix),
859 };
860 recorded.project.trunk = Some(record.parameters.trunk.clone());
861 recorded.setup.line_prefix = Some(record.parameters.line_prefix.clone());
862 recorded.security.contact = Some(record.parameters.security_contact.clone());
863 recorded.security.response = Some(record.parameters.security_response.clone());
864 let baseline = parameter_values(&recorded);
865 parameter_values(config)
866 .into_iter()
867 .filter(|(key, value)| {
868 !baseline
869 .iter()
870 .any(|(other, old)| key == other && value.to_string() == old.to_string())
871 })
872 .map(|(key, _)| key.to_owned())
873 .collect()
874}
875
876pub fn trunk_of(target: &Path) -> Result<String, RkError> {
881 Ok(load(target)?
882 .and_then(|config| config.project.trunk)
883 .unwrap_or_else(|| TRUNK_DEFAULT.to_owned()))
884}
885
886pub fn line_prefix_of(target: &Path) -> Result<String, RkError> {
891 Ok(load(target)?
892 .and_then(|config| config.setup.line_prefix)
893 .unwrap_or_else(|| LINE_PREFIX_DEFAULT.to_owned()))
894}
895
896#[cfg(test)]
897mod tests {
898 use super::{CONFIG_PATH, Config, load, parse, rewrite_key, trunk_of, write};
899 use crate::landing::{Style, Workflow};
900
901 #[test]
902 fn an_omitted_landing_key_is_distinguishable_from_an_explicit_default() {
903 let omitted = parse("schema_version = 1\n").expect("omitted answers parse");
904 let explicit = parse(
905 "schema_version = 1\n[landing]\nworkflow = 'worktree'\nstyle = 'trunk'\nnix = false\n",
906 )
907 .expect("explicit defaults parse");
908 assert_eq!(omitted.landing, super::Landing::default());
909 assert_eq!(explicit.landing.workflow, Some(Workflow::Worktree));
910 assert_eq!(explicit.landing.style, Some(Style::Trunk));
911 assert_eq!(explicit.landing.nix, Some(false));
912 assert_ne!(omitted, explicit);
913 }
914
915 #[test]
919 fn a_config_from_the_release_that_wrote_installation_id_still_reads() {
920 let dir = tempfile::tempdir().expect("a tempdir");
921 std::fs::create_dir_all(dir.path().join(".release-kit")).expect("the directory exists");
922 std::fs::write(
923 dir.path().join(CONFIG_PATH),
924 "schema_version = 1\n\n[setup.bot]\napp_id = \"123\"\ninstallation_id = 0\n",
925 )
926 .expect("the config writes");
927 let held = load(dir.path())
928 .expect("the config reads")
929 .expect("it is present");
930 assert_eq!(held.setup.bot.app_id, "123");
931 assert_eq!(
932 held.setup.bot.installation_id,
933 Some(0),
934 "the key parses; nothing reads it"
935 );
936 }
937
938 #[test]
939 fn the_landed_config_template_round_trips() {
940 let dir = tempfile::tempdir().expect("a target exists");
941 let mut config = Config::default();
942 config.project.repo = "acme/nested/widget".into();
943 config.project.forge = "gitlab".into();
944 config.project.tech = "bash".into();
945 config.project.trunk = Some("main".into());
946 config.landing.workflow = Some(Workflow::Branches);
947 config.landing.style = Some(Style::Lines);
948 config.landing.nix = Some(true);
949 config.security.advisories =
953 "A \"quoted\" project\nRK_CONFIG_SECURITY_RESPONSE\\end".into();
954 config.security.contact = Some("security team, room 3 \"the vault\"".into());
955 config.security.response = Some("14 business days".into());
956 config.setup.required_check = "build / test".into();
957 config.setup.retired_branches = vec!["develop".into(), "old\"branch".into()];
958 config.setup.line_prefix = Some("stable/".into());
959 config.setup.release_lines = true;
960 config.setup.excluded_steps = [
961 (
962 "package-check".to_owned(),
963 "nothing is published".to_owned(),
964 ),
965 (
966 "protect-trunk".to_owned(),
967 "this project merges \"locally\"".to_owned(),
968 ),
969 ]
970 .into_iter()
971 .collect();
972 config.setup.bot.app_id = "123".into();
973 config.protection.trunk_ruleset = Some("primary".into());
974 config.protection.tag_ruleset = "versions".into();
975 config.protection.lines_ruleset = "maintenance".into();
976 config.protection.title_check = "intent".into();
977 config.protection.tag_pattern = "refs/tags/*".into();
978 config
979 .protection
980 .owned_trunk_rules
981 .push("required_signatures".into());
982 config.protection.required_approving_review_count = 2;
983 config.protection.dismiss_stale_reviews_on_push = true;
984 config.protection.require_code_owner_review = true;
985 config.protection.require_last_push_approval = true;
986 config.protection.gitlab.squash_commit_template =
987 "%{title}\n\nContext: %{description}".into();
988 config.protection.gitlab.merge_access_level = 40;
989 let defaults = Config {
990 landing: super::Landing {
991 workflow: Some(Workflow::Worktree),
992 style: Some(Style::Trunk),
993 nix: Some(false),
994 },
995 project: super::Project {
996 trunk: Some(super::TRUNK_DEFAULT.into()),
997 ..super::Project::default()
998 },
999 setup: super::Setup {
1000 line_prefix: Some(super::LINE_PREFIX_DEFAULT.into()),
1001 ..super::Setup::default()
1002 },
1003 security: super::Security {
1006 contact: Some(String::new()),
1007 response: Some(super::RESPONSE_DEFAULT.into()),
1008 ..super::Security::default()
1009 },
1010 protection: super::Protection {
1013 trunk_ruleset: Some(format!("{}-protection", super::TRUNK_DEFAULT)),
1014 ..super::Protection::default()
1015 },
1016 ..Config::default()
1017 };
1018 for expected in [defaults, config] {
1019 write(dir.path(), &expected).expect("the template renders");
1020 assert_eq!(load(dir.path()).expect("the config reads"), Some(expected));
1021 let text =
1022 std::fs::read_to_string(dir.path().join(CONFIG_PATH)).expect("the text reads");
1023 assert!(text.contains("# P: project path"));
1024 assert!(text.contains("# F: invariant"));
1025 }
1026 }
1027
1028 #[test]
1029 fn a_config_with_an_unknown_key_refuses_by_name() {
1030 for (table, typo, nearest) in [
1031 ("", "schemax_version", "schema_version"),
1032 ("project", "trunkx", "trunk"),
1033 ("landing", "stile", "style"),
1034 ("security", "contactx", "contact"),
1035 ("setup", "required_checkx", "required_check"),
1036 ("setup.bot", "app_i", "app_id"),
1037 ("protection", "trunk_rulesett", "trunk_ruleset"),
1038 (
1039 "protection.github",
1040 "squash_body_sourcex",
1041 "squash_body_source",
1042 ),
1043 ("protection.gitlab", "squash_optionx", "squash_option"),
1044 ] {
1045 let header = if table.is_empty() {
1046 String::new()
1047 } else {
1048 format!("[{table}]\n")
1049 };
1050 let text = format!("schema_version = 1\n{header}{typo} = 'value'\n");
1051 let error = parse(&text).expect_err("unknown keys refuse").to_string();
1052 for expected in [CONFIG_PATH, typo, &format!("nearest known key: {nearest}")] {
1053 assert!(error.contains(expected), "{error}");
1054 }
1055 }
1056 }
1057
1058 #[test]
1062 fn an_exclusion_names_a_real_step_and_states_why() {
1063 for (text, expected) in [
1064 (
1065 "[setup.excluded_steps]\nprotect-trunkk = 'we merge locally'\n",
1066 vec!["protect-trunkk", "nearest known step: protect-trunk"],
1067 ),
1068 (
1069 "[setup.excluded_steps]\nprotect-trunk = ' '\n",
1070 vec!["protect-trunk", "no reason"],
1071 ),
1072 ] {
1073 let error = parse(&format!("schema_version = 1\n{text}"))
1074 .expect_err("the exclusion refuses")
1075 .to_string();
1076 for want in expected {
1077 assert!(error.contains(want), "{error}");
1078 }
1079 }
1080 let held = parse(
1081 "schema_version = 1\n[setup.excluded_steps]\nprotect-trunk = 'we merge locally'\n",
1082 )
1083 .expect("a named step with a reason parses");
1084 assert_eq!(
1085 held.setup
1086 .excluded_steps
1087 .get("protect-trunk")
1088 .map(String::as_str),
1089 Some("we merge locally")
1090 );
1091 }
1092
1093 #[test]
1097 fn an_exclusion_does_not_lift_a_floor() {
1098 let error = parse(
1099 "schema_version = 1\n[setup.excluded_steps]\nprotect-trunk = 'we merge locally'\n\n[protection]\nallowed_merge_methods = ['squash', 'merge']\n",
1100 )
1101 .expect_err("the floor binds an excluded step's keys too")
1102 .to_string();
1103 assert!(
1104 error.contains("protection.allowed_merge_methods"),
1105 "{error}"
1106 );
1107 }
1108
1109 #[test]
1110 fn a_config_at_an_unknown_schema_refuses() {
1111 for text in ["schema_version = 999", "schema_version = '1'", ""] {
1112 let error = parse(text)
1113 .expect_err("a schema must be declared and known")
1114 .to_string();
1115 assert!(
1116 error.contains(CONFIG_PATH) && error.contains("schema_version"),
1117 "{error}"
1118 );
1119 }
1120 }
1121
1122 #[test]
1123 fn an_unparsable_config_refuses_naming_the_position() {
1124 let error = parse("schema_version = 1\n[project\n")
1125 .expect_err("bad TOML refuses")
1126 .to_string();
1127 for expected in [CONFIG_PATH, "line 2", "column"] {
1128 assert!(error.contains(expected), "{error}");
1129 }
1130 }
1131
1132 #[test]
1133 fn an_absent_config_reads_as_none() {
1134 let dir = tempfile::tempdir().expect("a target exists");
1135 assert_eq!(load(dir.path()).expect("absence is compatible"), None);
1136 assert_eq!(trunk_of(dir.path()).expect("the default reads"), "master");
1137 }
1138
1139 #[test]
1140 fn loading_checks_floors_and_trunk_of_propagates_invalid_content() {
1141 let dir = tempfile::tempdir().expect("a target exists");
1142 std::fs::create_dir(dir.path().join(".release-kit")).expect("the directory exists");
1143 std::fs::write(
1144 dir.path().join(CONFIG_PATH),
1145 "schema_version = 1\n[protection]\nstrict_required_status_checks = false\n",
1146 )
1147 .expect("a config exists");
1148 let error =
1149 trunk_of(dir.path()).expect_err("invalid policy refuses even through the accessor");
1150 assert_eq!(error.exit_code(), 73);
1151 assert!(
1152 error
1153 .to_string()
1154 .contains("protection.strict_required_status_checks")
1155 );
1156 }
1157
1158 #[test]
1159 fn rewrite_key_preserves_comments() {
1160 let dir = tempfile::tempdir().expect("a target exists");
1161 std::fs::create_dir(dir.path().join(".release-kit")).expect("the directory exists");
1162 let original = "# Project answers\nschema_version = 1\n\n[security] # first table stays first\ncontact = 'team' # keep me\n\n[landing]\n# Our release choice\nstyle = 'trunk' # keep this reason\nworkflow = 'branches'\n";
1163 let path = dir.path().join(CONFIG_PATH);
1164 std::fs::write(&path, original).expect("a config exists");
1165 rewrite_key(dir.path(), "landing.style", "lines".into()).expect("the style writes back");
1166 let text = std::fs::read_to_string(&path).expect("the text reads");
1167 assert_eq!(text, original.replace("'trunk'", "\"lines\""));
1168 assert_eq!(
1169 load(dir.path())
1170 .expect("the config reads")
1171 .expect("present")
1172 .landing
1173 .style,
1174 Some(Style::Lines)
1175 );
1176 rewrite_key(dir.path(), "project.repo", "acme/widget".into())
1177 .expect("an omitted table can be added");
1178 assert_eq!(
1179 load(dir.path())
1180 .expect("reads")
1181 .expect("present")
1182 .project
1183 .repo,
1184 "acme/widget"
1185 );
1186 rewrite_key(
1187 dir.path(),
1188 "security.contact",
1189 "security@acme.example".into(),
1190 )
1191 .expect("the contact is a landing parameter now");
1192 rewrite_key(dir.path(), "security.response", "14 days".into())
1193 .expect("the response is a landing parameter now");
1194 let held = load(dir.path()).expect("reads").expect("present");
1195 assert_eq!(
1196 held.security.contact.as_deref(),
1197 Some("security@acme.example")
1198 );
1199 assert_eq!(held.security.response.as_deref(), Some("14 days"));
1200 let text = std::fs::read_to_string(&path).expect("the text reads");
1201 assert!(text.contains("# keep me"), "the comment survives: {text}");
1202 let before = std::fs::read(&path).expect("the bytes read");
1203 for (key, value) in [
1204 ("security.advisories", "acme/private"),
1205 ("security.response", "90d"),
1206 ("landing.style", "unknown"),
1207 ] {
1208 assert!(rewrite_key(dir.path(), key, value.into()).is_err());
1209 assert_eq!(std::fs::read(&path).expect("the bytes read"), before);
1210 }
1211 }
1212
1213 #[test]
1216 fn the_security_answers_are_held_to_their_grammar() {
1217 for value in ["team@acme.example", " https://acme.example/report ", ""] {
1218 super::canonical_contact(value).expect("a control-free line is a contact");
1219 }
1220 for value in ["one\ntwo", "one\rtwo", "one\u{7}two"] {
1221 let refusal = super::canonical_contact(value).expect_err("a control character refuses");
1222 assert!(refusal.contains("security.contact"), "{refusal}");
1223 }
1224 assert_eq!(
1225 super::canonical_contact(" team@acme.example "),
1226 Ok("team@acme.example".to_owned()),
1227 "surrounding whitespace is trimmed"
1228 );
1229 for value in [
1230 "best-effort",
1231 "1 day",
1232 "2 days",
1233 "14 days",
1234 "1 business day",
1235 "14 business days",
1236 ] {
1237 assert_eq!(super::canonical_response(value), Ok(value.to_owned()));
1238 }
1239 assert_eq!(
1240 super::canonical_response(""),
1241 Ok(super::RESPONSE_DEFAULT.to_owned()),
1242 "an empty answer reads as the compiled default"
1243 );
1244 for value in [
1245 "0 days",
1246 "1 days",
1247 "2 day",
1248 "+2 days",
1249 "02 days",
1250 "4294967296 days",
1251 "90d",
1252 "two days",
1253 "we answer quickly",
1254 "2 weeks",
1255 ] {
1256 let refusal =
1257 super::canonical_response(value).expect_err("an unstateable window refuses");
1258 assert!(refusal.contains("security.response"), "{value}: {refusal}");
1259 assert!(refusal.contains("business days"), "{value}: {refusal}");
1260 }
1261 let refusal = parse("schema_version = 1\n[security]\nresponse = '90d'\n")
1262 .expect_err("the reader refuses it too")
1263 .to_string();
1264 assert!(refusal.contains("security.response"), "{refusal}");
1265 }
1266}