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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
pub mod worker_protocol;
use std::io::Result;
use futures::future::try_join_all;
use tracing::warn;
use types::{QueryValidPaths, UnkeyedValidPathInfo};
use crate::store_path::StorePath;
pub mod handler;
pub mod types;
/// Represents all possible operations over the nix-daemon protocol.
pub trait NixDaemonIO: Sync {
fn is_valid_path(
&self,
path: &StorePath<String>,
) -> impl std::future::Future<Output = Result<bool>> + Send {
async move { Ok(self.query_path_info(path).await?.is_some()) }
}
fn query_path_info(
&self,
path: &StorePath<String>,
) -> impl std::future::Future<Output = Result<Option<UnkeyedValidPathInfo>>> + Send;
fn query_path_from_hash_part(
&self,
hash: &[u8],
) -> impl std::future::Future<Output = Result<Option<UnkeyedValidPathInfo>>> + Send;
fn query_valid_paths(
&self,
request: &QueryValidPaths,
) -> impl std::future::Future<Output = Result<Vec<UnkeyedValidPathInfo>>> + Send {
async move {
if request.substitute {
warn!("tvix does not yet support substitution, ignoring the 'substitute' flag...");
}
// Using try_join_all here to avoid returning partial results to the client.
// The only reason query_path_info can fail is due to transient IO errors,
// so we return such errors to the client as opposed to only returning paths
// that succeeded.
let result =
try_join_all(request.paths.iter().map(|path| self.query_path_info(path))).await?;
let result: Vec<UnkeyedValidPathInfo> = result.into_iter().flatten().collect();
Ok(result)
}
}
fn query_valid_derivers(
&self,
path: &StorePath<String>,
) -> impl std::future::Future<Output = Result<Vec<StorePath<String>>>> + Send {
async move {
let result = self.query_path_info(path).await?;
let result: Vec<_> = result.into_iter().filter_map(|info| info.deriver).collect();
Ok(result)
}
}
}
#[cfg(test)]
mod tests {
use crate::{nix_daemon::types::QueryValidPaths, store_path::StorePath};
use super::{types::UnkeyedValidPathInfo, NixDaemonIO};
// Very simple mock
// Unable to use mockall as it does not support unboxed async traits.
pub struct MockNixDaemonIO {
query_path_info_result: Option<UnkeyedValidPathInfo>,
}
impl NixDaemonIO for MockNixDaemonIO {
async fn query_path_info(
&self,
_path: &StorePath<String>,
) -> std::io::Result<Option<UnkeyedValidPathInfo>> {
Ok(self.query_path_info_result.clone())
}
async fn query_path_from_hash_part(
&self,
_hash: &[u8],
) -> std::io::Result<Option<UnkeyedValidPathInfo>> {
Ok(None)
}
}
#[tokio::test]
async fn test_is_valid_path_returns_true() {
let path =
StorePath::<String>::from_bytes("z6r3bn5l51679pwkvh9nalp6c317z34m-hello".as_bytes())
.unwrap();
let io = MockNixDaemonIO {
query_path_info_result: Some(UnkeyedValidPathInfo::default()),
};
let result = io
.is_valid_path(&path)
.await
.expect("expected to get a non-empty response");
assert!(result, "expected to get true");
}
#[tokio::test]
async fn test_is_valid_path_returns_false() {
let path =
StorePath::<String>::from_bytes("z6r3bn5l51679pwkvh9nalp6c317z34m-hello".as_bytes())
.unwrap();
let io = MockNixDaemonIO {
query_path_info_result: None,
};
let result = io
.is_valid_path(&path)
.await
.expect("expected to get a non-empty response");
assert!(!result, "expected to get false");
}
#[tokio::test]
async fn test_query_valid_paths_returns_empty_response() {
let path =
StorePath::<String>::from_bytes("z6r3bn5l51679pwkvh9nalp6c317z34m-hello".as_bytes())
.unwrap();
let io = MockNixDaemonIO {
query_path_info_result: None,
};
let result = io
.query_valid_paths(&QueryValidPaths {
paths: vec![path],
substitute: false,
})
.await
.expect("expected to get a non-empty response");
assert_eq!(result, vec![], "expected to get empty response");
}
#[tokio::test]
async fn test_query_valid_paths_returns_non_empty_response() {
let path =
StorePath::<String>::from_bytes("z6r3bn5l51679pwkvh9nalp6c317z34m-hello".as_bytes())
.unwrap();
let io = MockNixDaemonIO {
query_path_info_result: Some(UnkeyedValidPathInfo::default()),
};
let result = io
.query_valid_paths(&QueryValidPaths {
paths: vec![path],
substitute: false,
})
.await
.expect("expected to get a non-empty response");
assert_eq!(
result,
vec![UnkeyedValidPathInfo::default()],
"expected to get non empty response"
);
}
#[tokio::test]
async fn test_query_valid_derivers_returns_empty_response() {
let path =
StorePath::<String>::from_bytes("z6r3bn5l51679pwkvh9nalp6c317z34m-hello".as_bytes())
.unwrap();
let io = MockNixDaemonIO {
query_path_info_result: None,
};
let result = io
.query_valid_derivers(&path)
.await
.expect("expected to get a non-empty response");
assert_eq!(result, vec![], "expected to get empty response");
}
#[tokio::test]
async fn test_query_valid_derivers_returns_non_empty_response() {
let path =
StorePath::<String>::from_bytes("z6r3bn5l51679pwkvh9nalp6c317z34m-hello".as_bytes())
.unwrap();
let deriver = StorePath::<String>::from_bytes(
"z6r3bn5l51679pwkvh9nalp6c317z34m-hello.drv".as_bytes(),
)
.unwrap();
let io = MockNixDaemonIO {
query_path_info_result: Some(UnkeyedValidPathInfo {
deriver: Some(deriver.clone()),
nar_hash: "".to_owned(),
references: vec![],
registration_time: 0,
nar_size: 1,
ultimate: true,
signatures: vec![],
ca: None,
}),
};
let result = io
.query_valid_derivers(&path)
.await
.expect("expected to get a non-empty response");
assert_eq!(result, vec![deriver], "expected to get non empty response");
}
}
|