Skip to main content

onevcs_testing/
remote.rs

1//! The remote-host side: one implementation of [`RemoteHost`] and [`Hosting`] over
2//! either store.
3//!
4//! What GitHub decides, this decides from what it was seeded with: which change
5//! requests exist, what their checks say, and whether a merge lands. What it does
6//! *not* do is move a commit — a merge here records an outcome and nothing reaches
7//! any origin, which is exactly the boundary the real implementation delegates to
8//! the host and the reason a journey about git drives real git.
9
10use std::path::PathBuf;
11
12use url::Url;
13
14use onevcs::{
15    ArtifactId, ChangeChecks, ChangeId, ChangeRequest, ChangeSpec, Check, CheckSource, Error,
16    Hosting, MergeOutcome, MergePolicy, RemoteHost, Result, Sha,
17};
18
19use crate::events;
20use crate::state::HostState;
21use crate::store::{FileStore, MemoryStore, Store};
22
23/// The host a change request's URL names, matching the one implementation the
24/// crate next door speaks for.
25pub const DEFAULT_HOST: &str = "github.com";
26
27/// The repository a host answers for when it was not addressed at one — which is
28/// the case only when a journey holds it directly rather than through
29/// [`Hosting::for_repo`].
30pub const DEFAULT_SLUG: &str = "onevcs/testing";
31
32/// The remote-host side of a run, over whichever store holds its state.
33///
34/// It is both interfaces at once: a [`RemoteHost`] a journey can call directly, and
35/// the [`Hosting`] factory a run is handed. A host taken from the factory shares
36/// this one's state, so what a publication did is read back through the value the
37/// journey created.
38#[derive(Debug)]
39pub struct Host<T> {
40    store: T,
41    // A slug arrives one way only — `Hosting::for_repo`, which takes the `&str` the
42    // contract fixes — and `named_repository` refuses it there; every other
43    // construction here is `DEFAULT_SLUG`. A newtype would have to be public to be
44    // the parameter's type, and the seam is specified without one, which is the same
45    // reason recorded on `Hosting::for_repo` in the crate next door.
46    // llmlint: ignore[invalid_states_unrepresentable] see the note directly above.
47    slug: String,
48}
49
50/// A host provider that keeps its state in this process.
51pub type MemoryHost = Host<MemoryStore<HostState>>;
52
53/// A host provider that keeps its state in one JSON document, so several `onevcs`
54/// invocations see one another's change requests.
55pub type FileHost = Host<FileStore<HostState>>;
56
57impl MemoryHost {
58    /// A host with nothing opened against it.
59    pub fn new() -> Self {
60        Self::seeded(HostState::default())
61    }
62
63    /// A host that starts from a scenario.
64    pub fn seeded(state: HostState) -> Self {
65        Self {
66            store: MemoryStore::new(state),
67            slug: DEFAULT_SLUG.to_owned(),
68        }
69    }
70
71    /// Everything it knows.
72    pub fn state(&self) -> HostState {
73        self.store
74            .snapshot()
75            .expect("an in-memory store always answers")
76    }
77}
78
79impl Default for MemoryHost {
80    fn default() -> Self {
81        Self::new()
82    }
83}
84
85impl FileHost {
86    /// A host keeping its state at `path`: whatever is already there, or nothing
87    /// opened against it.
88    ///
89    /// Attaching rather than replacing, so a second host over the same path answers
90    /// about the change requests the first one opened.
91    pub fn create(path: impl Into<PathBuf>) -> Result<Self> {
92        Ok(Self {
93            store: FileStore::attach(path, &HostState::default())?,
94            slug: DEFAULT_SLUG.to_owned(),
95        })
96    }
97
98    /// A host that starts from a scenario, keeping its state at `path` and
99    /// replacing whatever was there.
100    pub fn seeded(path: impl Into<PathBuf>, state: HostState) -> Result<Self> {
101        Ok(Self {
102            store: FileStore::replace(path, &state)?,
103            slug: DEFAULT_SLUG.to_owned(),
104        })
105    }
106
107    /// Everything it knows, read back out of its document.
108    pub fn state(&self) -> Result<HostState> {
109        self.store.snapshot()
110    }
111}
112
113impl<T: Store<HostState> + Clone + std::fmt::Debug + Send + Sync + 'static> Hosting for Host<T> {
114    fn for_repo(&self, slug: &str) -> Result<Box<dyn RemoteHost>> {
115        Ok(Box::new(Host {
116            store: self.store.clone(),
117            slug: named_repository(slug)?,
118        }))
119    }
120}
121
122impl<T: Store<HostState>> RemoteHost for Host<T> {
123    fn authenticated_user(&self) -> Result<String> {
124        let login = self.store.snapshot()?.authenticated_user;
125        if login.trim().is_empty() {
126            return Err(Error::Invalid {
127                reason: "the host reported no authenticated user".to_owned(),
128            });
129        }
130        Ok(login)
131    }
132
133    fn open_change(&self, req: ChangeSpec) -> Result<ChangeRequest> {
134        addressable(&req.head, "the head branch")?;
135        addressable(&req.base, "the base branch")?;
136        // The same refusal the real host makes: a change request whose title names
137        // nothing is one it will not open.
138        crate::state::titled(&req.title)?;
139        let slug = self.slug.clone();
140        self.store.with(|state| {
141            // The host numbers its change requests, consecutively from one, so a
142            // journey can seed the checks of a change it has not opened yet.
143            let id = ChangeId((state.changes.len() + 1).to_string());
144            let url = format!("https://{DEFAULT_HOST}/{slug}/pull/{}", id.0);
145            let change = ChangeRequest {
146                head_sha: Sha(events::stable_sha(&[&slug, &req.head, &id.0])),
147                url: Url::parse(&url).map_err(|e| Error::Invalid {
148                    reason: format!("{url:?} is not a URL: {e}"),
149                })?,
150                base: req.base.clone(),
151                id: id.clone(),
152            };
153            state.heads.insert(id.clone(), req.head.clone());
154            state.titles.insert(id, req.title.clone());
155            state.changes.push(change.clone());
156            Ok(change)
157        })
158    }
159
160    fn find_changes(&self, head: &str, base: &str) -> Result<Vec<ChangeRequest>> {
161        addressable(head, "the head branch")?;
162        addressable(base, "the base branch")?;
163        let state = self.store.snapshot()?;
164        Ok(state
165            .changes
166            .iter()
167            .filter(|change| {
168                change.base == base
169                    && state.heads.get(&change.id).is_some_and(|from| from == head)
170                    // Only the open ones: a change the host has already merged is
171                    // not one to adopt.
172                    && !matches!(state.merges.get(&change.id), Some(MergeOutcome::Merged(_)))
173            })
174            .cloned()
175            .collect())
176    }
177
178    fn change_checks(&self, cr: &ChangeRequest) -> Result<ChangeChecks> {
179        let state = self.store.snapshot()?;
180        let sources = state.check_sources.clone().unwrap_or_else(complete_sources);
181        // The same refusal the real implementation makes when its credential can
182        // read neither the host's check rollup nor its Actions API: what the checks
183        // say is unknown, and answering "none" for "could not look" is what lets a
184        // merge through unguarded.
185        if sources.is_empty() {
186            return Err(Error::Invalid {
187                reason: format!(
188                    "this host was seeded with no check source, so what the checks on {} say \
189                     cannot be read rather than being empty",
190                    cr.url
191                ),
192            });
193        }
194        Ok(ChangeChecks {
195            checks: state.checks.get(&cr.id).cloned().unwrap_or_default(),
196            sources,
197        })
198    }
199
200    fn check_log(&self, cr: &ChangeRequest, check: &Check) -> Result<ArtifactId> {
201        let log = self
202            .store
203            .snapshot()?
204            .check_logs
205            .get(&cr.id)
206            .and_then(|logs| logs.get(&check.name))
207            .cloned()
208            .unwrap_or_else(|| format!("the host log for check {}\n", check.name));
209        events::store_artifact(&artifact_id(&cr.id, &check.name), &log)
210    }
211
212    fn merge(&self, cr: &ChangeRequest, policy: MergePolicy) -> Result<MergeOutcome> {
213        self.store.with(|state| {
214            // A seeded outcome is the host's decision and outranks the policy: it is
215            // how a journey says "this one is queued behind something" or "this one
216            // has already landed".
217            if let Some(decided) = state.merges.get(&cr.id) {
218                return Ok(decided.clone());
219            }
220            let landed = |state: &mut HostState| {
221                let sha = Sha(events::stable_sha(&["merge", &cr.id.0, cr.url.as_str()]));
222                state
223                    .merges
224                    .insert(cr.id.clone(), MergeOutcome::Merged(sha.clone()));
225                MergeOutcome::Merged(sha)
226            };
227            Ok(match policy {
228                // Nothing is asked of the host, so nothing is recorded — the same
229                // answer the real implementation gives without a call.
230                MergePolicy::LocalDirect | MergePolicy::ChangeOpen => MergeOutcome::Open,
231                MergePolicy::ChangeAuto => {
232                    if required_checks_green(state, &cr.id) {
233                        landed(state)
234                    } else {
235                        // Native auto-merge: the host holds it and lands it when its
236                        // own required checks pass, so nothing merges now.
237                        state.merges.insert(cr.id.clone(), MergeOutcome::Queued);
238                        MergeOutcome::Queued
239                    }
240                }
241                MergePolicy::ChangeDirect => landed(state),
242            })
243        })
244    }
245}
246
247/// What a host that was not told otherwise answers about where its checks came
248/// from: the host's own rollup, which is every check anything posted on the change
249/// request — the answer a credential allowed to read check runs gets.
250fn complete_sources() -> std::collections::BTreeSet<CheckSource> {
251    [CheckSource::StatusChecks].into_iter().collect()
252}
253
254/// Whether every required check on a change request has settled green.
255///
256/// A change with no required checks is not green: nothing has vouched for it, which
257/// is the state auto-merge waits in rather than lands from.
258fn required_checks_green(state: &HostState, id: &ChangeId) -> bool {
259    let checks = match state.checks.get(id) {
260        Some(checks) => checks,
261        None => return false,
262    };
263    let required: Vec<&Check> = checks.iter().filter(|check| check.required).collect();
264    !required.is_empty() && required.iter().all(|check| check.green())
265}
266
267/// The id one check's log is stored under.
268///
269/// Derived from what it is a log *of* rather than minted, so fetching the same
270/// log twice does not leave two artifacts, and a journey can name the id it is
271/// about to assert on.
272fn artifact_id(change: &ChangeId, check: &str) -> String {
273    let safe: String = check
274        .chars()
275        .map(|c| {
276            if c.is_ascii_alphanumeric() || c == '-' || c == '_' || c == '.' {
277                c
278            } else {
279                '-'
280            }
281        })
282        .collect();
283    let number: String = change
284        .0
285        .chars()
286        .filter(|c| c.is_ascii_alphanumeric())
287        .collect();
288    format!("a-testing-{number}-{safe}")
289}
290
291/// One value bound for the host's argument vector, checked before it gets there.
292///
293/// The same refusal the real implementation makes, and for the same reason: a name
294/// shaped like an option or an absent value addresses something other than what it
295/// names, and a provider that accepted one would let a journey pass where the real
296/// host rejects.
297fn addressable(value: &str, what: &str) -> Result<()> {
298    if value.is_empty() || value.starts_with('-') || value.contains(char::is_whitespace) {
299        return Err(Error::Invalid {
300            reason: format!(
301                "{what} {value:?} cannot address anything on the host: it must be non-empty, \
302                 must not begin with '-', and must carry no whitespace"
303            ),
304        });
305    }
306    Ok(())
307}
308
309/// A slug that names one repository, as `owner/name`.
310fn named_repository(slug: &str) -> Result<String> {
311    let mut parts = slug.split('/');
312    let named = matches!(
313        (parts.next(), parts.next(), parts.next()),
314        (Some(owner), Some(name), None)
315            if !owner.is_empty()
316                && !name.is_empty()
317                && !slug.starts_with('-')
318                && !slug.contains(char::is_whitespace)
319    );
320    if !named {
321        return Err(Error::Invalid {
322            reason: format!("{slug:?} does not name one repository as owner/name"),
323        });
324    }
325    Ok(slug.to_owned())
326}