aconfig: change flag values to enabled/disabled enum
Change the underlying type of a flag's value from bool to an explicit enum (Disabled, Enabled): this will hopefully reduce future confusion on how flags are intended to be used. Bug: 279485059 Test: atest aconfig.test Change-Id: I9535f9b23baf93ad5916ca06fb7d21277b4573eb
This commit is contained in:
@@ -20,13 +20,18 @@ syntax = "proto2";
|
|||||||
|
|
||||||
package android.aconfig;
|
package android.aconfig;
|
||||||
|
|
||||||
|
enum flag_state {
|
||||||
|
ENABLED = 1;
|
||||||
|
DISABLED = 2;
|
||||||
|
}
|
||||||
|
|
||||||
enum permission {
|
enum permission {
|
||||||
READ_ONLY = 1;
|
READ_ONLY = 1;
|
||||||
READ_WRITE = 2;
|
READ_WRITE = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message value {
|
message value {
|
||||||
required bool value = 1;
|
required flag_state state = 1;
|
||||||
required permission permission = 2;
|
required permission permission = 2;
|
||||||
optional uint32 since = 3;
|
optional uint32 since = 3;
|
||||||
}
|
}
|
||||||
@@ -43,7 +48,7 @@ message android_config {
|
|||||||
|
|
||||||
message override {
|
message override {
|
||||||
required string id = 1;
|
required string id = 1;
|
||||||
required bool value = 2;
|
required flag_state state = 2;
|
||||||
required permission permission = 3;
|
required permission permission = 3;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -19,9 +19,28 @@ use protobuf::{Enum, EnumOrUnknown};
|
|||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use crate::protos::{
|
use crate::protos::{
|
||||||
ProtoAndroidConfig, ProtoFlag, ProtoOverride, ProtoOverrideConfig, ProtoPermission, ProtoValue,
|
ProtoAndroidConfig, ProtoFlag, ProtoFlagState, ProtoOverride, ProtoOverrideConfig,
|
||||||
|
ProtoPermission, ProtoValue,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize, Clone, Copy)]
|
||||||
|
pub enum FlagState {
|
||||||
|
Enabled,
|
||||||
|
Disabled,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl TryFrom<EnumOrUnknown<ProtoFlagState>> for FlagState {
|
||||||
|
type Error = Error;
|
||||||
|
|
||||||
|
fn try_from(proto: EnumOrUnknown<ProtoFlagState>) -> Result<Self, Self::Error> {
|
||||||
|
match ProtoFlagState::from_i32(proto.value()) {
|
||||||
|
Some(ProtoFlagState::ENABLED) => Ok(FlagState::Enabled),
|
||||||
|
Some(ProtoFlagState::DISABLED) => Ok(FlagState::Disabled),
|
||||||
|
None => Err(anyhow!("unknown flag state enum value {}", proto.value())),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize, Clone, Copy)]
|
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize, Clone, Copy)]
|
||||||
pub enum Permission {
|
pub enum Permission {
|
||||||
ReadOnly,
|
ReadOnly,
|
||||||
@@ -42,19 +61,19 @@ impl TryFrom<EnumOrUnknown<ProtoPermission>> for Permission {
|
|||||||
|
|
||||||
#[derive(Debug, PartialEq, Eq)]
|
#[derive(Debug, PartialEq, Eq)]
|
||||||
pub struct Value {
|
pub struct Value {
|
||||||
value: bool,
|
state: FlagState,
|
||||||
permission: Permission,
|
permission: Permission,
|
||||||
since: Option<u32>,
|
since: Option<u32>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(dead_code)] // only used in unit tests
|
#[allow(dead_code)] // only used in unit tests
|
||||||
impl Value {
|
impl Value {
|
||||||
pub fn new(value: bool, permission: Permission, since: u32) -> Value {
|
pub fn new(state: FlagState, permission: Permission, since: u32) -> Value {
|
||||||
Value { value, permission, since: Some(since) }
|
Value { state, permission, since: Some(since) }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn default(value: bool, permission: Permission) -> Value {
|
pub fn default(state: FlagState, permission: Permission) -> Value {
|
||||||
Value { value, permission, since: None }
|
Value { state, permission, since: None }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,14 +81,15 @@ impl TryFrom<ProtoValue> for Value {
|
|||||||
type Error = Error;
|
type Error = Error;
|
||||||
|
|
||||||
fn try_from(proto: ProtoValue) -> Result<Self, Self::Error> {
|
fn try_from(proto: ProtoValue) -> Result<Self, Self::Error> {
|
||||||
let Some(value) = proto.value else {
|
let Some(proto_state) = proto.state else {
|
||||||
return Err(anyhow!("missing 'value' field"));
|
return Err(anyhow!("missing 'state' field"));
|
||||||
};
|
};
|
||||||
|
let state = proto_state.try_into()?;
|
||||||
let Some(proto_permission) = proto.permission else {
|
let Some(proto_permission) = proto.permission else {
|
||||||
return Err(anyhow!("missing 'permission' field"));
|
return Err(anyhow!("missing 'permission' field"));
|
||||||
};
|
};
|
||||||
let permission = proto_permission.try_into()?;
|
let permission = proto_permission.try_into()?;
|
||||||
Ok(Value { value, permission, since: proto.since })
|
Ok(Value { state, permission, since: proto.since })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -97,17 +117,17 @@ impl Flag {
|
|||||||
proto.flag.into_iter().map(|proto_flag| proto_flag.try_into()).collect()
|
proto.flag.into_iter().map(|proto_flag| proto_flag.try_into()).collect()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn resolve(&self, build_id: u32) -> (bool, Permission) {
|
pub fn resolve(&self, build_id: u32) -> (FlagState, Permission) {
|
||||||
let mut value = self.values[0].value;
|
let mut state = self.values[0].state;
|
||||||
let mut permission = self.values[0].permission;
|
let mut permission = self.values[0].permission;
|
||||||
for candidate in self.values.iter().skip(1) {
|
for candidate in self.values.iter().skip(1) {
|
||||||
let since = candidate.since.expect("invariant: non-defaults values have Some(since)");
|
let since = candidate.since.expect("invariant: non-defaults values have Some(since)");
|
||||||
if since <= build_id {
|
if since <= build_id {
|
||||||
value = candidate.value;
|
state = candidate.state;
|
||||||
permission = candidate.permission;
|
permission = candidate.permission;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
(value, permission)
|
(state, permission)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -146,7 +166,7 @@ impl TryFrom<ProtoFlag> for Flag {
|
|||||||
#[derive(Debug, PartialEq, Eq)]
|
#[derive(Debug, PartialEq, Eq)]
|
||||||
pub struct Override {
|
pub struct Override {
|
||||||
pub id: String,
|
pub id: String,
|
||||||
pub value: bool,
|
pub state: FlagState,
|
||||||
pub permission: Permission,
|
pub permission: Permission,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -170,14 +190,15 @@ impl TryFrom<ProtoOverride> for Override {
|
|||||||
let Some(id) = proto.id else {
|
let Some(id) = proto.id else {
|
||||||
return Err(anyhow!("missing 'id' field"));
|
return Err(anyhow!("missing 'id' field"));
|
||||||
};
|
};
|
||||||
let Some(value) = proto.value else {
|
let Some(proto_state) = proto.state else {
|
||||||
return Err(anyhow!("missing 'value' field"));
|
return Err(anyhow!("missing 'state' field"));
|
||||||
};
|
};
|
||||||
|
let state = proto_state.try_into()?;
|
||||||
let Some(proto_permission) = proto.permission else {
|
let Some(proto_permission) = proto.permission else {
|
||||||
return Err(anyhow!("missing 'permission' field"));
|
return Err(anyhow!("missing 'permission' field"));
|
||||||
};
|
};
|
||||||
let permission = proto_permission.try_into()?;
|
let permission = proto_permission.try_into()?;
|
||||||
Ok(Override { id, value, permission })
|
Ok(Override { id, state, permission })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -191,8 +212,8 @@ mod tests {
|
|||||||
id: "1234".to_owned(),
|
id: "1234".to_owned(),
|
||||||
description: "Description of the flag".to_owned(),
|
description: "Description of the flag".to_owned(),
|
||||||
values: vec![
|
values: vec![
|
||||||
Value::default(false, Permission::ReadOnly),
|
Value::default(FlagState::Disabled, Permission::ReadOnly),
|
||||||
Value::new(true, Permission::ReadWrite, 8),
|
Value::new(FlagState::Enabled, Permission::ReadWrite, 8),
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -200,11 +221,11 @@ mod tests {
|
|||||||
id: "1234"
|
id: "1234"
|
||||||
description: "Description of the flag"
|
description: "Description of the flag"
|
||||||
value {
|
value {
|
||||||
value: false
|
state: DISABLED
|
||||||
permission: READ_ONLY
|
permission: READ_ONLY
|
||||||
}
|
}
|
||||||
value {
|
value {
|
||||||
value: true
|
state: ENABLED
|
||||||
permission: READ_WRITE
|
permission: READ_WRITE
|
||||||
since: 8
|
since: 8
|
||||||
}
|
}
|
||||||
@@ -226,7 +247,7 @@ mod tests {
|
|||||||
let s = r#"
|
let s = r#"
|
||||||
description: "Description of the flag"
|
description: "Description of the flag"
|
||||||
value {
|
value {
|
||||||
value: true
|
state: ENABLED
|
||||||
permission: READ_ONLY
|
permission: READ_ONLY
|
||||||
}
|
}
|
||||||
"#;
|
"#;
|
||||||
@@ -237,11 +258,11 @@ mod tests {
|
|||||||
id: "a"
|
id: "a"
|
||||||
description: "Description of the flag"
|
description: "Description of the flag"
|
||||||
value {
|
value {
|
||||||
value: true
|
state: ENABLED
|
||||||
permission: READ_ONLY
|
permission: READ_ONLY
|
||||||
}
|
}
|
||||||
value {
|
value {
|
||||||
value: true
|
state: ENABLED
|
||||||
permission: READ_ONLY
|
permission: READ_ONLY
|
||||||
}
|
}
|
||||||
"#;
|
"#;
|
||||||
@@ -255,12 +276,12 @@ mod tests {
|
|||||||
Flag {
|
Flag {
|
||||||
id: "a".to_owned(),
|
id: "a".to_owned(),
|
||||||
description: "A".to_owned(),
|
description: "A".to_owned(),
|
||||||
values: vec![Value::default(true, Permission::ReadOnly)],
|
values: vec![Value::default(FlagState::Enabled, Permission::ReadOnly)],
|
||||||
},
|
},
|
||||||
Flag {
|
Flag {
|
||||||
id: "b".to_owned(),
|
id: "b".to_owned(),
|
||||||
description: "B".to_owned(),
|
description: "B".to_owned(),
|
||||||
values: vec![Value::default(false, Permission::ReadWrite)],
|
values: vec![Value::default(FlagState::Disabled, Permission::ReadWrite)],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -269,7 +290,7 @@ mod tests {
|
|||||||
id: "a"
|
id: "a"
|
||||||
description: "A"
|
description: "A"
|
||||||
value {
|
value {
|
||||||
value: true
|
state: ENABLED
|
||||||
permission: READ_ONLY
|
permission: READ_ONLY
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -277,7 +298,7 @@ mod tests {
|
|||||||
id: "b"
|
id: "b"
|
||||||
description: "B"
|
description: "B"
|
||||||
value {
|
value {
|
||||||
value: false
|
state: DISABLED
|
||||||
permission: READ_WRITE
|
permission: READ_WRITE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -289,12 +310,15 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_override_try_from_text_proto_list() {
|
fn test_override_try_from_text_proto_list() {
|
||||||
let expected =
|
let expected = Override {
|
||||||
Override { id: "1234".to_owned(), value: true, permission: Permission::ReadOnly };
|
id: "1234".to_owned(),
|
||||||
|
state: FlagState::Enabled,
|
||||||
|
permission: Permission::ReadOnly,
|
||||||
|
};
|
||||||
|
|
||||||
let s = r#"
|
let s = r#"
|
||||||
id: "1234"
|
id: "1234"
|
||||||
value: true
|
state: ENABLED
|
||||||
permission: READ_ONLY
|
permission: READ_ONLY
|
||||||
"#;
|
"#;
|
||||||
let actual = Override::try_from_text_proto(s).unwrap();
|
let actual = Override::try_from_text_proto(s).unwrap();
|
||||||
@@ -308,21 +332,21 @@ mod tests {
|
|||||||
id: "a".to_owned(),
|
id: "a".to_owned(),
|
||||||
description: "A".to_owned(),
|
description: "A".to_owned(),
|
||||||
values: vec![
|
values: vec![
|
||||||
Value::default(false, Permission::ReadOnly),
|
Value::default(FlagState::Disabled, Permission::ReadOnly),
|
||||||
Value::new(false, Permission::ReadWrite, 10),
|
Value::new(FlagState::Disabled, Permission::ReadWrite, 10),
|
||||||
Value::new(true, Permission::ReadOnly, 20),
|
Value::new(FlagState::Enabled, Permission::ReadOnly, 20),
|
||||||
Value::new(true, Permission::ReadWrite, 30),
|
Value::new(FlagState::Enabled, Permission::ReadWrite, 30),
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
assert_eq!((false, Permission::ReadOnly), flag.resolve(0));
|
assert_eq!((FlagState::Disabled, Permission::ReadOnly), flag.resolve(0));
|
||||||
assert_eq!((false, Permission::ReadOnly), flag.resolve(9));
|
assert_eq!((FlagState::Disabled, Permission::ReadOnly), flag.resolve(9));
|
||||||
assert_eq!((false, Permission::ReadWrite), flag.resolve(10));
|
assert_eq!((FlagState::Disabled, Permission::ReadWrite), flag.resolve(10));
|
||||||
assert_eq!((false, Permission::ReadWrite), flag.resolve(11));
|
assert_eq!((FlagState::Disabled, Permission::ReadWrite), flag.resolve(11));
|
||||||
assert_eq!((false, Permission::ReadWrite), flag.resolve(19));
|
assert_eq!((FlagState::Disabled, Permission::ReadWrite), flag.resolve(19));
|
||||||
assert_eq!((true, Permission::ReadOnly), flag.resolve(20));
|
assert_eq!((FlagState::Enabled, Permission::ReadOnly), flag.resolve(20));
|
||||||
assert_eq!((true, Permission::ReadOnly), flag.resolve(21));
|
assert_eq!((FlagState::Enabled, Permission::ReadOnly), flag.resolve(21));
|
||||||
assert_eq!((true, Permission::ReadOnly), flag.resolve(29));
|
assert_eq!((FlagState::Enabled, Permission::ReadOnly), flag.resolve(29));
|
||||||
assert_eq!((true, Permission::ReadWrite), flag.resolve(30));
|
assert_eq!((FlagState::Enabled, Permission::ReadWrite), flag.resolve(30));
|
||||||
assert_eq!((true, Permission::ReadWrite), flag.resolve(10_000));
|
assert_eq!((FlagState::Enabled, Permission::ReadWrite), flag.resolve(10_000));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -18,14 +18,14 @@ use anyhow::{anyhow, Result};
|
|||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use std::io::{Read, Write};
|
use std::io::{Read, Write};
|
||||||
|
|
||||||
use crate::aconfig::{Flag, Override, Permission};
|
use crate::aconfig::{Flag, FlagState, Override, Permission};
|
||||||
use crate::commands::Source;
|
use crate::commands::Source;
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug)]
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
pub struct Item {
|
pub struct Item {
|
||||||
pub id: String,
|
pub id: String,
|
||||||
pub description: String,
|
pub description: String,
|
||||||
pub value: bool,
|
pub state: FlagState,
|
||||||
pub permission: Permission,
|
pub permission: Permission,
|
||||||
pub debug: Vec<String>,
|
pub debug: Vec<String>,
|
||||||
}
|
}
|
||||||
@@ -57,13 +57,13 @@ impl Cache {
|
|||||||
source,
|
source,
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
let (value, permission) = flag.resolve(self.build_id);
|
let (state, permission) = flag.resolve(self.build_id);
|
||||||
self.items.push(Item {
|
self.items.push(Item {
|
||||||
id: flag.id.clone(),
|
id: flag.id.clone(),
|
||||||
description: flag.description,
|
description: flag.description,
|
||||||
value,
|
state,
|
||||||
permission,
|
permission,
|
||||||
debug: vec![format!("{}:{} {:?}", source, value, permission)],
|
debug: vec![format!("{}:{:?} {:?}", source, state, permission)],
|
||||||
});
|
});
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@@ -72,11 +72,11 @@ impl Cache {
|
|||||||
let Some(existing_item) = self.items.iter_mut().find(|item| item.id == override_.id) else {
|
let Some(existing_item) = self.items.iter_mut().find(|item| item.id == override_.id) else {
|
||||||
return Err(anyhow!("failed to override flag {}: unknown flag", override_.id));
|
return Err(anyhow!("failed to override flag {}: unknown flag", override_.id));
|
||||||
};
|
};
|
||||||
existing_item.value = override_.value;
|
existing_item.state = override_.state;
|
||||||
existing_item.permission = override_.permission;
|
existing_item.permission = override_.permission;
|
||||||
existing_item
|
existing_item
|
||||||
.debug
|
.debug
|
||||||
.push(format!("{}:{} {:?}", source, override_.value, override_.permission));
|
.push(format!("{}:{:?} {:?}", source, override_.state, override_.permission));
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -90,7 +90,7 @@ impl Item {}
|
|||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
use crate::aconfig::{Permission, Value};
|
use crate::aconfig::{FlagState, Permission, Value};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_add_flag() {
|
fn test_add_flag() {
|
||||||
@@ -101,7 +101,7 @@ mod tests {
|
|||||||
Flag {
|
Flag {
|
||||||
id: "foo".to_string(),
|
id: "foo".to_string(),
|
||||||
description: "desc".to_string(),
|
description: "desc".to_string(),
|
||||||
values: vec![Value::default(true, Permission::ReadOnly)],
|
values: vec![Value::default(FlagState::Enabled, Permission::ReadOnly)],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
@@ -111,7 +111,7 @@ mod tests {
|
|||||||
Flag {
|
Flag {
|
||||||
id: "foo".to_string(),
|
id: "foo".to_string(),
|
||||||
description: "desc".to_string(),
|
description: "desc".to_string(),
|
||||||
values: vec![Value::default(false, Permission::ReadOnly)],
|
values: vec![Value::default(FlagState::Disabled, Permission::ReadOnly)],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
.unwrap_err();
|
.unwrap_err();
|
||||||
@@ -123,16 +123,20 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_add_override() {
|
fn test_add_override() {
|
||||||
fn check(cache: &Cache, id: &str, expected: (bool, Permission)) -> bool {
|
fn check(cache: &Cache, id: &str, expected: (FlagState, Permission)) -> bool {
|
||||||
let item = cache.iter().find(|&item| item.id == id).unwrap();
|
let item = cache.iter().find(|&item| item.id == id).unwrap();
|
||||||
item.value == expected.0 && item.permission == expected.1
|
item.state == expected.0 && item.permission == expected.1
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut cache = Cache::new(1);
|
let mut cache = Cache::new(1);
|
||||||
let error = cache
|
let error = cache
|
||||||
.add_override(
|
.add_override(
|
||||||
Source::Memory,
|
Source::Memory,
|
||||||
Override { id: "foo".to_string(), value: true, permission: Permission::ReadOnly },
|
Override {
|
||||||
|
id: "foo".to_string(),
|
||||||
|
state: FlagState::Enabled,
|
||||||
|
permission: Permission::ReadOnly,
|
||||||
|
},
|
||||||
)
|
)
|
||||||
.unwrap_err();
|
.unwrap_err();
|
||||||
assert_eq!(&format!("{:?}", error), "failed to override flag foo: unknown flag");
|
assert_eq!(&format!("{:?}", error), "failed to override flag foo: unknown flag");
|
||||||
@@ -143,28 +147,36 @@ mod tests {
|
|||||||
Flag {
|
Flag {
|
||||||
id: "foo".to_string(),
|
id: "foo".to_string(),
|
||||||
description: "desc".to_string(),
|
description: "desc".to_string(),
|
||||||
values: vec![Value::default(true, Permission::ReadOnly)],
|
values: vec![Value::default(FlagState::Enabled, Permission::ReadOnly)],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
dbg!(&cache);
|
dbg!(&cache);
|
||||||
assert!(check(&cache, "foo", (true, Permission::ReadOnly)));
|
assert!(check(&cache, "foo", (FlagState::Enabled, Permission::ReadOnly)));
|
||||||
|
|
||||||
cache
|
cache
|
||||||
.add_override(
|
.add_override(
|
||||||
Source::Memory,
|
Source::Memory,
|
||||||
Override { id: "foo".to_string(), value: false, permission: Permission::ReadWrite },
|
Override {
|
||||||
|
id: "foo".to_string(),
|
||||||
|
state: FlagState::Disabled,
|
||||||
|
permission: Permission::ReadWrite,
|
||||||
|
},
|
||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
dbg!(&cache);
|
dbg!(&cache);
|
||||||
assert!(check(&cache, "foo", (false, Permission::ReadWrite)));
|
assert!(check(&cache, "foo", (FlagState::Disabled, Permission::ReadWrite)));
|
||||||
|
|
||||||
cache
|
cache
|
||||||
.add_override(
|
.add_override(
|
||||||
Source::Memory,
|
Source::Memory,
|
||||||
Override { id: "foo".to_string(), value: true, permission: Permission::ReadWrite },
|
Override {
|
||||||
|
id: "foo".to_string(),
|
||||||
|
state: FlagState::Enabled,
|
||||||
|
permission: Permission::ReadWrite,
|
||||||
|
},
|
||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
assert!(check(&cache, "foo", (true, Permission::ReadWrite)));
|
assert!(check(&cache, "foo", (FlagState::Enabled, Permission::ReadWrite)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -79,12 +79,12 @@ pub fn dump_cache(cache: Cache, format: Format) -> Result<()> {
|
|||||||
match format {
|
match format {
|
||||||
Format::Text => {
|
Format::Text => {
|
||||||
for item in cache.iter() {
|
for item in cache.iter() {
|
||||||
println!("{}: {}", item.id, item.value);
|
println!("{}: {:?}", item.id, item.state);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Format::Debug => {
|
Format::Debug => {
|
||||||
for item in cache.iter() {
|
for item in cache.iter() {
|
||||||
println!("{}: {} ({:?})", item.id, item.value, item.debug);
|
println!("{:?}", item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -94,6 +94,7 @@ pub fn dump_cache(cache: Cache, format: Format) -> Result<()> {
|
|||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
use crate::aconfig::{FlagState, Permission};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_create_cache() {
|
fn test_create_cache() {
|
||||||
@@ -102,8 +103,8 @@ mod tests {
|
|||||||
id: "a"
|
id: "a"
|
||||||
description: "Description of a"
|
description: "Description of a"
|
||||||
value {
|
value {
|
||||||
value: true
|
state: ENABLED
|
||||||
permission: READ_ONLY
|
permission: READ_WRITE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"#;
|
"#;
|
||||||
@@ -111,13 +112,14 @@ mod tests {
|
|||||||
let o = r#"
|
let o = r#"
|
||||||
override {
|
override {
|
||||||
id: "a"
|
id: "a"
|
||||||
value: false
|
state: DISABLED
|
||||||
permission: READ_ONLY
|
permission: READ_ONLY
|
||||||
}
|
}
|
||||||
"#;
|
"#;
|
||||||
let overrides = vec![Input { source: Source::Memory, reader: Box::new(o.as_bytes()) }];
|
let overrides = vec![Input { source: Source::Memory, reader: Box::new(o.as_bytes()) }];
|
||||||
let cache = create_cache(1, aconfigs, overrides).unwrap();
|
let cache = create_cache(1, aconfigs, overrides).unwrap();
|
||||||
let value = cache.iter().find(|&item| item.id == "a").unwrap().value;
|
let item = cache.iter().find(|&item| item.id == "a").unwrap();
|
||||||
assert!(!value);
|
assert_eq!(FlagState::Disabled, item.state);
|
||||||
|
assert_eq!(Permission::ReadOnly, item.permission);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -45,6 +45,9 @@ pub use aconfig_protos::aconfig::Override as ProtoOverride;
|
|||||||
#[cfg(not(feature = "cargo"))]
|
#[cfg(not(feature = "cargo"))]
|
||||||
pub use aconfig_protos::aconfig::Permission as ProtoPermission;
|
pub use aconfig_protos::aconfig::Permission as ProtoPermission;
|
||||||
|
|
||||||
|
#[cfg(not(feature = "cargo"))]
|
||||||
|
pub use aconfig_protos::aconfig::Flag_state as ProtoFlagState;
|
||||||
|
|
||||||
// ---- When building with cargo ----
|
// ---- When building with cargo ----
|
||||||
#[cfg(feature = "cargo")]
|
#[cfg(feature = "cargo")]
|
||||||
include!(concat!(env!("OUT_DIR"), "/aconfig_proto/mod.rs"));
|
include!(concat!(env!("OUT_DIR"), "/aconfig_proto/mod.rs"));
|
||||||
@@ -67,6 +70,9 @@ pub use aconfig::Override as ProtoOverride;
|
|||||||
#[cfg(feature = "cargo")]
|
#[cfg(feature = "cargo")]
|
||||||
pub use aconfig::Permission as ProtoPermission;
|
pub use aconfig::Permission as ProtoPermission;
|
||||||
|
|
||||||
|
#[cfg(feature = "cargo")]
|
||||||
|
pub use aconfig::Flag_state as ProtoFlagState;
|
||||||
|
|
||||||
// ---- Common for both the Android tool-chain and cargo ----
|
// ---- Common for both the Android tool-chain and cargo ----
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user