-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into abhi/acme-enable
- Loading branch information
Showing
14 changed files
with
365 additions
and
254 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
use crate::common::timeout::WithTimeout; | ||
use common::test_env::TestEnvironment; | ||
use plane::{ | ||
types::{BackendStatus, ConnectRequest, ExecutorConfig, PullPolicy, SpawnConfig}, | ||
types::{KeyConfig, ResourceLimits}, | ||
}; | ||
use plane_test_macro::plane_test; | ||
use serde_json::Map; | ||
use std::collections::HashMap; | ||
|
||
mod common; | ||
|
||
#[plane_test] | ||
async fn reuse_key(env: TestEnvironment) { | ||
let controller = env.controller().await; | ||
let client = controller.client(); | ||
let _drone = env.drone(&controller).await; | ||
|
||
// Wait for the drone to register. TODO: this seems long. | ||
tokio::time::sleep(std::time::Duration::from_secs(5)).await; | ||
|
||
tracing::info!("Requesting backend."); | ||
let connect_request = ConnectRequest { | ||
spawn_config: Some(SpawnConfig { | ||
executable: ExecutorConfig { | ||
image: "ghcr.io/drifting-in-space/demo-image-drop-four".to_string(), | ||
pull_policy: PullPolicy::IfNotPresent, | ||
env: HashMap::default(), | ||
resource_limits: ResourceLimits::default(), | ||
credentials: None, | ||
}, | ||
lifetime_limit_seconds: Some(5), | ||
max_idle_seconds: None, | ||
}), | ||
key: Some(KeyConfig { | ||
name: "reuse-key".to_string(), | ||
namespace: "".to_string(), | ||
tag: "".to_string(), | ||
}), | ||
user: None, | ||
auth: Map::default(), | ||
}; | ||
|
||
let response = client | ||
.connect(&env.cluster, &connect_request) | ||
.await | ||
.unwrap(); | ||
tracing::info!("Got response."); | ||
|
||
assert!(response.spawned); | ||
|
||
let backend_id = response.backend_id.clone(); | ||
|
||
let mut backend_status_stream = client | ||
.backend_status_stream(&env.cluster, &backend_id) | ||
.with_timeout(10) | ||
.await | ||
.unwrap() | ||
.unwrap(); | ||
|
||
let response2 = client | ||
.connect(&env.cluster, &connect_request) | ||
.await | ||
.unwrap(); | ||
|
||
assert!(!response2.spawned); | ||
assert_eq!(response2.backend_id, backend_id); | ||
|
||
loop { | ||
let message = backend_status_stream | ||
.next() | ||
.with_timeout(10) | ||
.await | ||
.unwrap() | ||
.unwrap(); | ||
|
||
tracing::info!("Got status: {:?}", message); | ||
if message.status == BackendStatus::Terminated { | ||
break; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.