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
#![feature(async_await)]

use harbourmaster::{Container, Error, Protocol};
use std::net::TcpListener;

pub struct CouchDbContainer {
    container: Container,
    host_port: u16,
}

impl CouchDbContainer {
    pub async fn new() -> Result<Self, Error> {
        let host_port = get_unused_port()?;
        let container = Container::builder("couchdb")
            .pull_on_build(true)
            .name("couchdb")
            .slug_length(6)
            .expose(5984, host_port, Protocol::Tcp)
            .build()
            .await?;

        Ok(Self {
            container,
            host_port,
        })
    }

    pub fn port(&self) -> u16 {
        self.host_port
    }

    pub async fn delete(self) -> Result<(), Error> {
        self.container.delete().await?;
        Ok(())
    }
}

fn get_unused_port() -> Result<u16, std::io::Error> {
    let listener = TcpListener::bind("localhost:0")?;
    let port = listener.local_addr()?.port();
    Ok(port)
}