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, ChangeId, ChangeRequest, ChangeSpec, Check, Error, Hosting, MergeOutcome,
16    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<Vec<Check>> {
179        Ok(self
180            .store
181            .snapshot()?
182            .checks
183            .get(&cr.id)
184            .cloned()
185            .unwrap_or_default())
186    }
187
188    fn check_log(&self, cr: &ChangeRequest, check: &Check) -> Result<ArtifactId> {
189        let log = self
190            .store
191            .snapshot()?
192            .check_logs
193            .get(&cr.id)
194            .and_then(|logs| logs.get(&check.name))
195            .cloned()
196            .unwrap_or_else(|| format!("the host log for check {}\n", check.name));
197        events::store_artifact(&artifact_id(&cr.id, &check.name), &log)
198    }
199
200    fn merge(&self, cr: &ChangeRequest, policy: MergePolicy) -> Result<MergeOutcome> {
201        self.store.with(|state| {
202            // A seeded outcome is the host's decision and outranks the policy: it is
203            // how a journey says "this one is queued behind something" or "this one
204            // has already landed".
205            if let Some(decided) = state.merges.get(&cr.id) {
206                return Ok(decided.clone());
207            }
208            let landed = |state: &mut HostState| {
209                let sha = Sha(events::stable_sha(&["merge", &cr.id.0, cr.url.as_str()]));
210                state
211                    .merges
212                    .insert(cr.id.clone(), MergeOutcome::Merged(sha.clone()));
213                MergeOutcome::Merged(sha)
214            };
215            Ok(match policy {
216                // Nothing is asked of the host, so nothing is recorded — the same
217                // answer the real implementation gives without a call.
218                MergePolicy::LocalDirect | MergePolicy::ChangeOpen => MergeOutcome::Open,
219                MergePolicy::ChangeAuto => {
220                    if required_checks_green(state, &cr.id) {
221                        landed(state)
222                    } else {
223                        // Native auto-merge: the host holds it and lands it when its
224                        // own required checks pass, so nothing merges now.
225                        state.merges.insert(cr.id.clone(), MergeOutcome::Queued);
226                        MergeOutcome::Queued
227                    }
228                }
229                MergePolicy::ChangeDirect => landed(state),
230            })
231        })
232    }
233}
234
235/// Whether every required check on a change request has settled green.
236///
237/// A change with no required checks is not green: nothing has vouched for it, which
238/// is the state auto-merge waits in rather than lands from.
239fn required_checks_green(state: &HostState, id: &ChangeId) -> bool {
240    let checks = match state.checks.get(id) {
241        Some(checks) => checks,
242        None => return false,
243    };
244    let required: Vec<&Check> = checks.iter().filter(|check| check.required).collect();
245    !required.is_empty() && required.iter().all(|check| check.green())
246}
247
248/// The id one check's log is stored under.
249///
250/// Derived from what it is a log *of* rather than minted, so fetching the same
251/// log twice does not leave two artifacts, and a journey can name the id it is
252/// about to assert on.
253fn artifact_id(change: &ChangeId, check: &str) -> String {
254    let safe: String = check
255        .chars()
256        .map(|c| {
257            if c.is_ascii_alphanumeric() || c == '-' || c == '_' || c == '.' {
258                c
259            } else {
260                '-'
261            }
262        })
263        .collect();
264    let number: String = change
265        .0
266        .chars()
267        .filter(|c| c.is_ascii_alphanumeric())
268        .collect();
269    format!("a-testing-{number}-{safe}")
270}
271
272/// One value bound for the host's argument vector, checked before it gets there.
273///
274/// The same refusal the real implementation makes, and for the same reason: a name
275/// shaped like an option or an absent value addresses something other than what it
276/// names, and a provider that accepted one would let a journey pass where the real
277/// host rejects.
278fn addressable(value: &str, what: &str) -> Result<()> {
279    if value.is_empty() || value.starts_with('-') || value.contains(char::is_whitespace) {
280        return Err(Error::Invalid {
281            reason: format!(
282                "{what} {value:?} cannot address anything on the host: it must be non-empty, \
283                 must not begin with '-', and must carry no whitespace"
284            ),
285        });
286    }
287    Ok(())
288}
289
290/// A slug that names one repository, as `owner/name`.
291fn named_repository(slug: &str) -> Result<String> {
292    let mut parts = slug.split('/');
293    let named = matches!(
294        (parts.next(), parts.next(), parts.next()),
295        (Some(owner), Some(name), None)
296            if !owner.is_empty()
297                && !name.is_empty()
298                && !slug.starts_with('-')
299                && !slug.contains(char::is_whitespace)
300    );
301    if !named {
302        return Err(Error::Invalid {
303            reason: format!("{slug:?} does not name one repository as owner/name"),
304        });
305    }
306    Ok(slug.to_owned())
307}