Skip to content

Commit

Permalink
feat(db): implement ConfigInterface for MockDb (#1586)
Browse files Browse the repository at this point in the history
  • Loading branch information
PanGan21 committed Jul 3, 2023
1 parent d528132 commit 2ac1f2e
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 20 deletions.
2 changes: 2 additions & 0 deletions crates/router/src/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ impl StorageInterface for Store {}
#[derive(Clone)]
pub struct MockDb {
addresses: Arc<Mutex<Vec<storage::Address>>>,
configs: Arc<Mutex<Vec<storage::Config>>>,
merchant_accounts: Arc<Mutex<Vec<storage::MerchantAccount>>>,
merchant_connector_accounts: Arc<Mutex<Vec<storage::MerchantConnectorAccount>>>,
payment_attempts: Arc<Mutex<Vec<storage::PaymentAttempt>>>,
Expand All @@ -121,6 +122,7 @@ impl MockDb {
pub async fn new(redis: &crate::configs::settings::Settings) -> Self {
Self {
addresses: Default::default(),
configs: Default::default(),
merchant_accounts: Default::default(),
merchant_connector_accounts: Default::default(),
payment_attempts: Default::default(),
Expand Down
101 changes: 81 additions & 20 deletions crates/router/src/db/configs.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use error_stack::IntoReport;
use storage_models::configs::ConfigUpdateInternal;

use super::{cache, MockDb, Store};
use crate::{
Expand Down Expand Up @@ -113,47 +114,107 @@ impl ConfigInterface for Store {
impl ConfigInterface for MockDb {
async fn insert_config(
&self,
_config: storage::ConfigNew,
config: storage::ConfigNew,
) -> CustomResult<storage::Config, errors::StorageError> {
// [#172]: Implement function for `MockDb`
Err(errors::StorageError::MockDbError)?
let mut configs = self.configs.lock().await;

let config_new = storage::Config {
#[allow(clippy::as_conversions)]
id: configs.len() as i32,
key: config.key,
config: config.config,
};
configs.push(config_new.clone());
Ok(config_new)
}

async fn find_config_by_key(
&self,
_key: &str,
key: &str,
) -> CustomResult<storage::Config, errors::StorageError> {
// [#172]: Implement function for `MockDb`
Err(errors::StorageError::MockDbError)?
let configs = self.configs.lock().await;
let config = configs.iter().find(|c| c.key == key).cloned();

config.ok_or_else(|| {
errors::StorageError::ValueNotFound("cannot find config".to_string()).into()
})
}

async fn update_config_by_key(
&self,
_key: &str,
_config_update: storage::ConfigUpdate,
key: &str,
config_update: storage::ConfigUpdate,
) -> CustomResult<storage::Config, errors::StorageError> {
// [#172]: Implement function for `MockDb`
Err(errors::StorageError::MockDbError)?
let result = self
.configs
.lock()
.await
.iter_mut()
.find(|c| c.key == key)
.ok_or_else(|| {
errors::StorageError::ValueNotFound("cannot find config to update".to_string())
.into()
})
.map(|c| {
let config_updated =
ConfigUpdateInternal::from(config_update).create_config(c.clone());
*c = config_updated.clone();
config_updated
});

result
}
async fn update_config_cached(
&self,
_key: &str,
_config_update: storage::ConfigUpdate,
key: &str,
config_update: storage::ConfigUpdate,
) -> CustomResult<storage::Config, errors::StorageError> {
// [#172]: Implement function for `MockDb`
Err(errors::StorageError::MockDbError)?
let result = self
.configs
.lock()
.await
.iter_mut()
.find(|c| c.key == key)
.ok_or_else(|| {
errors::StorageError::ValueNotFound("cannot find config to update".to_string())
.into()
})
.map(|c| {
let config_updated =
ConfigUpdateInternal::from(config_update).create_config(c.clone());
*c = config_updated.clone();
config_updated
});

result
}

async fn delete_config_by_key(&self, _key: &str) -> CustomResult<bool, errors::StorageError> {
// [#172]: Implement function for `MockDb`
Err(errors::StorageError::MockDbError)?
async fn delete_config_by_key(&self, key: &str) -> CustomResult<bool, errors::StorageError> {
let mut configs = self.configs.lock().await;
let result = configs
.iter()
.position(|c| c.key == key)
.map(|index| {
configs.remove(index);
true
})
.ok_or_else(|| {
errors::StorageError::ValueNotFound("cannot find config to delete".to_string())
.into()
});

result
}

async fn find_config_by_key_cached(
&self,
_key: &str,
key: &str,
) -> CustomResult<storage::Config, errors::StorageError> {
// [#172]: Implement function for `MockDb`
Err(errors::StorageError::MockDbError)?
let configs = self.configs.lock().await;
let config = configs.iter().find(|c| c.key == key).cloned();

config.ok_or_else(|| {
errors::StorageError::ValueNotFound("cannot find config".to_string()).into()
})
}
}
6 changes: 6 additions & 0 deletions crates/storage_models/src/configs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ pub struct ConfigUpdateInternal {
config: Option<String>,
}

impl ConfigUpdateInternal {
pub fn create_config(self, source: Config) -> Config {
Config { ..source }
}
}

impl From<ConfigUpdate> for ConfigUpdateInternal {
fn from(config_update: ConfigUpdate) -> Self {
match config_update {
Expand Down

0 comments on commit 2ac1f2e

Please sign in to comment.