summaryrefslogtreecommitdiffstats
path: root/src/test_helpers/builders/reference.rs
blob: b7cb33ecf15405a041a00d9c5b2a2f0eb5dae42e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
use crate::git::{Reference, ReferenceKind};

/// Builder for creating a new reference.
#[derive(Debug)]
pub(crate) struct ReferenceBuilder {
	hash: String,
	name: String,
	shorthand: String,
	kind: ReferenceKind,
}

impl ReferenceBuilder {
	/// Create a new instance of the builder with the provided hash. The new instance will default
	/// to a branch kind and a name of "main".
	#[must_use]
	pub(crate) fn new(hash: &str) -> Self {
		Self {
			hash: String::from(hash),
			name: String::from("refs/heads/main"),
			shorthand: String::from("main"),
			kind: ReferenceKind::Branch,
		}
	}

	/// Set the hash.
	pub(crate) fn hash(&mut self, hash: &str) -> &mut Self {
		self.hash = String::from(hash);
		self
	}

	/// Set the name.
	pub(crate) fn name(&mut self, name: &str) -> &mut Self {
		self.name = String::from(name);
		self
	}

	/// Set the shortname.
	pub(crate) fn shorthand(&mut self, shorthand: &str) -> &mut Self {
		self.shorthand = String::from(shorthand);
		self
	}

	/// Set the kind.
	pub(crate) fn kind(&mut self, kind: ReferenceKind) -> &mut Self {
		self.kind = kind;
		self
	}

	/// Build the `Reference`.
	#[must_use]
	#[allow(clippy::missing_const_for_fn)]
	pub(crate) fn build(self) -> Reference {
		Reference::new(self.hash, self.name, self.shorthand, self.kind)
	}
}