use of com.optimizely.ab.config.FeatureVariable in project java-sdk by optimizely.
the class GsonHelpers method parseFeatureFlag.
static FeatureFlag parseFeatureFlag(JsonObject featureFlagJson, JsonDeserializationContext context) {
String id = featureFlagJson.get("id").getAsString();
String key = featureFlagJson.get("key").getAsString();
String layerId = featureFlagJson.get("rolloutId").getAsString();
JsonArray experimentIdsJson = featureFlagJson.getAsJsonArray("experimentIds");
List<String> experimentIds = new ArrayList<String>();
for (JsonElement experimentIdObj : experimentIdsJson) {
experimentIds.add(experimentIdObj.getAsString());
}
List<FeatureVariable> FeatureVariables = new ArrayList<>();
try {
Type FeatureVariableType = new TypeToken<List<FeatureVariable>>() {
}.getType();
FeatureVariables = context.deserialize(featureFlagJson.getAsJsonArray("variables"), FeatureVariableType);
} catch (JsonParseException exception) {
logger.warn("Unable to parse variables for feature \"" + key + "\". JsonParseException: " + exception);
}
return new FeatureFlag(id, key, layerId, experimentIds, FeatureVariables);
}
use of com.optimizely.ab.config.FeatureVariable in project java-sdk by optimizely.
the class GsonConfigParserTest method parseFeatureVariablesWithFutureType.
@Test
public void parseFeatureVariablesWithFutureType() throws Exception {
JsonSimpleConfigParser parser = new JsonSimpleConfigParser();
ProjectConfig actual = parser.parseProjectConfig(validConfigJsonV4());
// unknown type
FeatureFlag featureFlag = actual.getFeatureKeyMapping().get("multi_variate_future_feature");
FeatureVariable variable = featureFlag.getVariableKeyToFeatureVariableMap().get("future_variable");
assertEquals(variable.getType(), "future_type");
}
use of com.optimizely.ab.config.FeatureVariable in project java-sdk by optimizely.
the class JsonConfigParserTest method parseFeatureVariablesWithJsonPatched.
@Test
public void parseFeatureVariablesWithJsonPatched() throws Exception {
JsonSimpleConfigParser parser = new JsonSimpleConfigParser();
ProjectConfig actual = parser.parseProjectConfig(validConfigJsonV4());
// "string" type + "json" subType
FeatureFlag featureFlag = actual.getFeatureKeyMapping().get("multi_variate_feature");
FeatureVariable variable = featureFlag.getVariableKeyToFeatureVariableMap().get("json_patched");
assertEquals(variable.getType(), "json");
}
use of com.optimizely.ab.config.FeatureVariable in project java-sdk by optimizely.
the class JsonSimpleConfigParserTest method parseFeatureVariablesWithJsonNative.
@Test
public void parseFeatureVariablesWithJsonNative() throws Exception {
JsonSimpleConfigParser parser = new JsonSimpleConfigParser();
ProjectConfig actual = parser.parseProjectConfig(validConfigJsonV4());
// native "json" type
FeatureFlag featureFlag = actual.getFeatureKeyMapping().get("multi_variate_future_feature");
FeatureVariable variable = featureFlag.getVariableKeyToFeatureVariableMap().get("json_native");
assertEquals(variable.getType(), "json");
}
use of com.optimizely.ab.config.FeatureVariable in project java-sdk by optimizely.
the class JsonSimpleConfigParserTest method parseFeatureVariablesWithFutureType.
@Test
public void parseFeatureVariablesWithFutureType() throws Exception {
JsonSimpleConfigParser parser = new JsonSimpleConfigParser();
ProjectConfig actual = parser.parseProjectConfig(validConfigJsonV4());
// unknown type
FeatureFlag featureFlag = actual.getFeatureKeyMapping().get("multi_variate_future_feature");
FeatureVariable variable = featureFlag.getVariableKeyToFeatureVariableMap().get("future_variable");
assertEquals(variable.getType(), "future_type");
}
Aggregations