forked from GitoxideLabs/gitoxide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.rs
More file actions
78 lines (68 loc) · 2.19 KB
/
mod.rs
File metadata and controls
78 lines (68 loc) · 2.19 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
mod access;
mod entry;
mod file;
mod fs;
mod init;
use std::path::{Path, PathBuf};
use gix_hash::ObjectId;
use gix_testtools::size_ok;
pub fn hex_to_id(hex: &str) -> ObjectId {
ObjectId::from_hex(hex.as_bytes()).expect("40 bytes hex")
}
pub fn fixture_index_path(name: &str) -> PathBuf {
let dir =
gix_testtools::scripted_fixture_read_only_standalone(Path::new("make_index").join(name).with_extension("sh"))
.expect("script works");
dir.join(".git").join("index")
}
pub fn loose_file_path(name: &str) -> PathBuf {
gix_testtools::fixture_path_standalone(Path::new("loose_index").join(name).with_extension("git-index"))
}
#[test]
fn size_of_entry() {
let actual = std::mem::size_of::<gix_index::Entry>();
let sha1 = 80;
let sha256_extra = 16;
let expected = sha1 + sha256_extra;
assert!(
size_ok(actual, expected),
"the size of this structure should not change unexpectedly: {actual} <~ {expected}"
);
}
#[test]
fn size_of_entry_time() {
// The reason we have our own time is that it is half the size.
let ent_actual = std::mem::size_of::<gix_index::entry::stat::Time>();
let ent_expected = 8;
assert!(
size_ok(ent_actual, ent_expected),
"the size of this structure should not change unexpectedly: {ent_actual} <~ {ent_expected}"
);
let ft_actual = std::mem::size_of::<filetime::FileTime>();
let ft_expected = 16;
assert!(
size_ok(ft_actual, ft_expected),
"we will want to know if the size of this structure changes: {ft_actual} <~ {ft_expected}"
);
}
enum Fixture {
Generated(&'static str),
Loose(&'static str),
}
impl Fixture {
pub fn to_path(&self) -> PathBuf {
match self {
Fixture::Generated(name) => fixture_index_path(name),
Fixture::Loose(name) => loose_file_path(name),
}
}
pub fn to_name(&self) -> &'static str {
match self {
Fixture::Generated(name) | Fixture::Loose(name) => name,
}
}
pub fn open(&self) -> gix_index::File {
gix_index::File::at(self.to_path(), gix_hash::Kind::Sha1, false, Default::default())
.expect("fixtures are always readable")
}
}