use serde::Deserialize;
use crate::{error::EsError, Client, EsResponse};
#[derive(Debug)]
pub struct VersionOperation<'a> {
client: &'a mut Client,
}
impl<'a> VersionOperation<'a> {
pub fn new(client: &'a mut Client) -> Self {
VersionOperation { client }
}
pub fn send(&mut self) -> Result<VersionResult, EsError> {
let response = self.client.get_op("/")?;
Ok(response.read_response()?)
}
}
impl Client {
pub fn version(&mut self) -> VersionOperation {
VersionOperation::new(self)
}
}
#[derive(Debug, Deserialize)]
pub struct Version {
pub number: String,
pub build_hash: String,
#[cfg(not(feature = "es5"))]
pub build_timestamp: String,
#[cfg(feature = "es5")]
pub build_date: String,
pub build_snapshot: bool,
pub lucene_version: String,
}
#[derive(Debug, Deserialize)]
pub struct VersionResult {
pub name: String,
pub cluster_name: String,
#[cfg(feature = "es5")]
pub cluster_uuid: String,
pub version: Version,
pub tagline: String,
}
#[cfg(test)]
pub mod tests {
use crate::tests::make_client;
use regex::Regex;
#[test]
fn it_works() {
let mut client = make_client();
let result = client.version().send().unwrap();
let expected_regex = Regex::new(r"^\d\.\d\.\d+$").unwrap();
assert_eq!(expected_regex.is_match(&result.version.number), true);
}
}