-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathbep_server_test.rs
310 lines (281 loc) · 12.7 KB
/
bep_server_test.rs
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
// Copyright 2023 The NativeLink Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use std::sync::Arc;
use futures::StreamExt;
use hyper::Body;
use nativelink_config::cas_server::BepConfig;
use nativelink_error::{Error, ResultExt};
use nativelink_macro::nativelink_test;
use nativelink_proto::google::devtools::build::v1::build_event::console_output::Output;
use nativelink_proto::google::devtools::build::v1::build_event::{
BuildEnqueued, BuildFinished, ConsoleOutput, Event, InvocationAttemptFinished,
InvocationAttemptStarted,
};
use nativelink_proto::google::devtools::build::v1::publish_build_event_server::PublishBuildEvent;
use nativelink_proto::google::devtools::build::v1::publish_lifecycle_event_request::ServiceLevel;
use nativelink_proto::google::devtools::build::v1::stream_id::BuildComponent;
use nativelink_proto::google::devtools::build::v1::{
build_status, BuildEvent, BuildStatus, ConsoleOutputStream, OrderedBuildEvent,
PublishBuildToolEventStreamRequest, PublishLifecycleEventRequest, StreamId,
};
use nativelink_service::bep_server::{get_stream_digest, BepServer};
use nativelink_store::default_store_factory::store_factory;
use nativelink_store::store_manager::StoreManager;
use nativelink_util::buf_channel::make_buf_channel_pair;
use nativelink_util::common::encode_stream_proto;
use nativelink_util::store_trait::{Store, StoreKey, StoreLike};
use pretty_assertions::assert_eq;
use prometheus_client::registry::Registry;
use prost::Message;
use prost_types::Timestamp;
use tonic::codec::{Codec, ProstCodec};
use tonic::{Request, Streaming};
const BEP_STORE_NAME: &str = "main_bep";
/// Utility function to construct a [`StoreManager`]
async fn make_store_manager() -> Result<Arc<StoreManager>, Error> {
let store_manager = Arc::new(StoreManager::new());
store_manager.add_store(
BEP_STORE_NAME,
store_factory(
&nativelink_config::stores::StoreConfig::memory(
nativelink_config::stores::MemoryStore::default(),
),
&store_manager,
Some(&mut <Registry>::default()),
None,
)
.await?,
);
Ok(store_manager)
}
/// Utility function to construct a [`BepServer`]
fn make_bep_server(store_manager: &StoreManager) -> Result<BepServer, Error> {
BepServer::new(
&BepConfig {
store: BEP_STORE_NAME.to_string(),
},
store_manager,
)
}
fn get_bep_store(store_manager: &StoreManager) -> Result<Store, Error> {
store_manager
.get_store(BEP_STORE_NAME)
.err_tip(|| format!("While retrieving bep_store {BEP_STORE_NAME}"))
}
/// Asserts that a gRPC request for a [`PublishLifecycleEventRequest`] is correctly dumped into a [`Store`]
#[nativelink_test]
async fn publish_lifecycle_event_test() -> Result<(), Box<dyn std::error::Error>> {
let store_manager = make_store_manager().await?;
let bep_server = make_bep_server(&store_manager)?;
let bep_store = get_bep_store(&store_manager)?;
let stream_id = StreamId {
build_id: "some-build-id".to_string(),
invocation_id: "some-invocation-id".to_string(),
component: BuildComponent::Controller as i32,
};
let digest = get_stream_digest(&stream_id)?;
let request = PublishLifecycleEventRequest {
service_level: ServiceLevel::Interactive as i32,
build_event: Some(OrderedBuildEvent {
stream_id: Some(stream_id),
sequence_number: 1,
event: Some(BuildEvent {
event_time: Some(Timestamp::date(1999, 1, 6)?),
event: Some(Event::ConsoleOutput(ConsoleOutput {
r#type: ConsoleOutputStream::Stdout as i32,
output: Some(Output::TextOutput(
"Here's some text that's been printed to stdout".to_string(),
)),
})),
}),
}),
stream_timeout: None,
notification_keywords: vec!["testing".to_string(), "console".to_string()],
project_id: "some-project-id".to_string(),
check_preceding_lifecycle_events_present: false,
};
bep_server
.publish_lifecycle_event(Request::new(request.clone()))
.await
.err_tip(|| "While invoking publish_lifecycle_event")?;
let (mut writer, mut reader) = make_buf_channel_pair();
bep_store
.as_store_driver_pin()
.get_part(StoreKey::Digest(digest), &mut writer, 0, None)
.await
.err_tip(|| "While retrieving lifecycle_event_request from store")?;
let bytes = reader
.recv()
.await
.err_tip(|| "While receiving bytes from reader")?;
let decoded_request = PublishLifecycleEventRequest::decode(bytes)
.err_tip(|| "While decoding request from bytes")?;
assert_eq!(request, decoded_request);
Ok(())
}
#[nativelink_test]
async fn publish_build_tool_event_stream_test() -> Result<(), Box<dyn std::error::Error>> {
let store_manager = make_store_manager().await?;
let bep_server = make_bep_server(&store_manager)?;
let bep_store = get_bep_store(&store_manager)?;
let (mut request_tx, mut response_stream) = async {
// setup the request and response streams
let (tx, body) = Body::channel();
let mut codec = ProstCodec::<PublishBuildToolEventStreamRequest, _>::default();
let stream = Streaming::new_request(codec.decoder(), body, None, None);
let stream = bep_server
.publish_build_tool_event_stream(Request::new(stream))
.await
.err_tip(|| "While invoking publish_build_tool_event_stream")?
.into_inner();
Ok::<_, Box<dyn std::error::Error>>((tx, stream))
}
.await?;
let (requests, store_key) = {
// construct some requests to send off
let stream_id = StreamId {
build_id: "some-build-id".to_string(),
invocation_id: "some-invocation-id".to_string(),
component: BuildComponent::Controller as i32,
};
let digest = get_stream_digest(&stream_id)?;
let project_id = "some-project-id".to_string();
let requests = [
PublishBuildToolEventStreamRequest {
ordered_build_event: Some(OrderedBuildEvent {
stream_id: Some(stream_id.clone()),
sequence_number: 1,
event: Some(BuildEvent {
event_time: Some(Timestamp::date(1999, 1, 4)?),
event: Some(Event::BuildEnqueued(BuildEnqueued { details: None })),
}),
}),
notification_keywords: vec!["testing".to_string(), "build-enqueued".to_string()],
project_id: project_id.clone(),
check_preceding_lifecycle_events_present: false,
},
PublishBuildToolEventStreamRequest {
ordered_build_event: Some(OrderedBuildEvent {
stream_id: Some(stream_id.clone()),
sequence_number: 2,
event: Some(BuildEvent {
event_time: Some(Timestamp::date(1999, 1, 5)?),
event: Some(Event::InvocationAttemptStarted(InvocationAttemptStarted {
attempt_number: 1,
details: None,
})),
}),
}),
notification_keywords: vec!["testing".to_string()],
project_id: project_id.clone(),
check_preceding_lifecycle_events_present: false,
},
PublishBuildToolEventStreamRequest {
ordered_build_event: Some(OrderedBuildEvent {
stream_id: Some(stream_id.clone()),
sequence_number: 3,
event: Some(BuildEvent {
event_time: Some(Timestamp::date(1999, 1, 6)?),
event: Some(Event::ConsoleOutput(ConsoleOutput {
r#type: ConsoleOutputStream::Stdout as i32,
output: Some(Output::TextOutput(
"This is taking a while...".to_string(),
)),
})),
}),
}),
notification_keywords: vec!["testing".to_string()],
project_id: project_id.clone(),
check_preceding_lifecycle_events_present: false,
},
PublishBuildToolEventStreamRequest {
ordered_build_event: Some(OrderedBuildEvent {
stream_id: Some(stream_id.clone()),
sequence_number: 4,
event: Some(BuildEvent {
event_time: Some(Timestamp::date(1999, 1, 7)?),
event: Some(Event::InvocationAttemptFinished(
InvocationAttemptFinished {
invocation_status: Some(BuildStatus {
result: build_status::Result::InvocationDeadlineExceeded as i32,
final_invocation_id: String::default(),
build_tool_exit_code: Some(1),
error_message: "You missed my birthday!".to_string(),
details: None,
}),
details: None,
},
)),
}),
}),
notification_keywords: vec!["testing".to_string()],
project_id: "some-project-id".to_string(),
check_preceding_lifecycle_events_present: false,
},
PublishBuildToolEventStreamRequest {
ordered_build_event: Some(OrderedBuildEvent {
stream_id: Some(stream_id.clone()),
sequence_number: 5,
event: Some(BuildEvent {
event_time: Some(Timestamp::date(1999, 1, 8)?),
event: Some(Event::BuildFinished(BuildFinished {
status: Some(BuildStatus {
result: build_status::Result::InvocationDeadlineExceeded as i32,
final_invocation_id: String::default(),
build_tool_exit_code: Some(1),
error_message: "Missed her birthday...".to_string(),
details: None,
}),
details: None,
})),
}),
}),
notification_keywords: vec!["testing".to_string()],
project_id: project_id.clone(),
check_preceding_lifecycle_events_present: false,
},
];
(requests, StoreKey::Digest(digest))
};
{
// send off the requests and validate the responses
for (i, req) in requests.iter().enumerate() {
let encoded_request = encode_stream_proto(req)?;
request_tx.send_data(encoded_request).await?;
let response = response_stream
.next()
.await
.err_tip(|| "Response stream closed unexpectedly")?
.err_tip(|| "While awaiting next PublishBuildToolEventStreamResponse")?;
// First, check if the response matches what we expect
assert_eq!(response.sequence_number, i as i64 + 1);
assert_eq!(
response.stream_id,
req.ordered_build_event
.as_ref()
.and_then(|evt| evt.stream_id.clone())
);
// Second, check if the message was forwarded correctly
let (mut writer, mut reader) = make_buf_channel_pair();
bep_store
.as_store_driver_pin()
.get_part(store_key.borrow(), &mut writer, 0, None)
.await?;
let encoded_request = reader.recv().await?;
let decoded_request = PublishBuildToolEventStreamRequest::decode(encoded_request)?;
assert_eq!(*req, decoded_request);
}
Ok(())
}
}