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
use crate::docker::{Server, ServerConfig, TestInstance};
use dockertest::{waitfor, Composition, DockerOperations, Image, PullPolicy, Source};
#[derive(Clone)]
pub struct OIDCServerConfig {
pub handle: String,
pub timeout: u16,
pub port: u32,
pub version: String,
}
impl ServerConfig for OIDCServerConfig {
fn to_comp(&self) -> Composition {
const IMAGE_NAME: &str = "ghcr.io/navikt/mock-oauth2-server";
const IMAGE_PORT: u32 = 8080;
const WAIT_MESSAGE: &str = "started server on address";
const PULL_POLICY: PullPolicy = PullPolicy::IfNotPresent;
const SOURCE: Source = Source::DockerHub(PULL_POLICY);
let image = Image::with_repository(IMAGE_NAME)
.source(SOURCE)
.tag(&self.version);
let wait = Box::new(waitfor::MessageWait {
message: String::from(WAIT_MESSAGE),
source: waitfor::MessageSource::Stdout,
timeout: self.timeout,
});
let mut comp = Composition::with_image(image);
comp.port_map(IMAGE_PORT, self.port);
comp.with_wait_for(wait).with_container_name(&self.handle)
}
fn to_instance(&self) -> TestInstance {
TestInstance::new(vec![self.to_comp()])
}
}
impl OIDCServerConfig {
pub fn new(handle: &str, port: u32, version: &str, timeout: u16) -> OIDCServerConfig {
OIDCServerConfig {
handle: handle.to_string(),
port,
timeout,
version: version.to_string(),
}
}
pub fn default(version: Option<&str>) -> OIDCServerConfig {
OIDCServerConfig {
handle: String::from("vaultrs-oidc"),
port: 8080,
timeout: 15,
version: version
.map(|v| v.to_string())
.unwrap_or_else(|| String::from("latest")),
}
}
}
pub struct OIDCServer {
pub address: String,
pub address_internal: String,
pub config: OIDCServerConfig,
}
impl Server for OIDCServer {
type Config = OIDCServerConfig;
fn new(opts: &DockerOperations, config: &Self::Config) -> Self {
let cont = opts.handle(config.handle.as_str());
let address = format!("http://localhost:{}", config.port);
let address_internal = format!("http://{}:{}", cont.ip(), config.port);
OIDCServer {
address,
address_internal,
config: config.clone(),
}
}
}