Search in sources :

Example 1 with StandardConfiguration

use of org.openstreetmap.atlas.utilities.configuration.StandardConfiguration in project atlas-checks by osmlab.

the class ChallengeTest method testChallengeJSON.

@Test
public void testChallengeJSON() {
    final Configuration configuration = new StandardConfiguration(new ClassResource("org/openstreetmap/atlas/checks/base/InlineChallengeTest.json"));
    final BaseTestCheck testCheck = new BaseTestCheck(configuration);
    Assert.assertEquals("description", testCheck.getChallenge().getDescription().toLowerCase());
    Assert.assertEquals("blurb", testCheck.getChallenge().getBlurb().toLowerCase());
    Assert.assertEquals("instruction", testCheck.getChallenge().getInstruction().toLowerCase());
    Assert.assertEquals(ChallengeDifficulty.EASY, testCheck.getChallenge().getDifficulty());
    Assert.assertEquals(ChallengePriority.LOW, testCheck.getChallenge().getDefaultPriority());
    final JsonObject challengeJSON = testCheck.getChallenge().toJson("TestChallenge");
    final JsonObject highPriority = new Gson().fromJson(challengeJSON.get(Challenge.KEY_HIGH_PRIORITY).getAsString(), JsonObject.class);
    final JsonArray rules = highPriority.getAsJsonArray(Challenge.KEY_PRIORITY_RULES);
    Assert.assertEquals(4, rules.size());
    final JsonObject firstRule = rules.get(0).getAsJsonObject();
    Assert.assertEquals(Challenge.VALUE_RULE_ID, firstRule.get(Challenge.KEY_RULE_ID).getAsString());
    Assert.assertEquals(Challenge.VALUE_RULE_FIELD, firstRule.get(Challenge.KEY_RULE_FIELD).getAsString());
    Assert.assertEquals(Challenge.VALUE_RULE_OPERATOR, firstRule.get(Challenge.KEY_RULE_OPERATOR).getAsString());
    Assert.assertEquals(Challenge.VALUE_RULE_TYPE, firstRule.get(Challenge.KEY_RULE_TYPE).getAsString());
    Assert.assertEquals("highway.motorway", firstRule.get(Challenge.KEY_RULE_VALUE).getAsString());
    Assert.assertEquals("highway.motorway_link", rules.get(1).getAsJsonObject().get(Challenge.KEY_RULE_VALUE).getAsString());
    Assert.assertEquals("highway.trunk", rules.get(2).getAsJsonObject().get(Challenge.KEY_RULE_VALUE).getAsString());
    Assert.assertEquals("highway.trunk_link", rules.get(3).getAsJsonObject().get(Challenge.KEY_RULE_VALUE).getAsString());
}
Also used : ClassResource(org.openstreetmap.atlas.streaming.resource.ClassResource) JsonArray(com.google.gson.JsonArray) Configuration(org.openstreetmap.atlas.utilities.configuration.Configuration) StandardConfiguration(org.openstreetmap.atlas.utilities.configuration.StandardConfiguration) JsonObject(com.google.gson.JsonObject) Gson(com.google.gson.Gson) StandardConfiguration(org.openstreetmap.atlas.utilities.configuration.StandardConfiguration) BaseTestCheck(org.openstreetmap.atlas.checks.base.checks.BaseTestCheck) Test(org.junit.Test)

Aggregations

Gson (com.google.gson.Gson)1 JsonArray (com.google.gson.JsonArray)1 JsonObject (com.google.gson.JsonObject)1 Test (org.junit.Test)1 BaseTestCheck (org.openstreetmap.atlas.checks.base.checks.BaseTestCheck)1 ClassResource (org.openstreetmap.atlas.streaming.resource.ClassResource)1 Configuration (org.openstreetmap.atlas.utilities.configuration.Configuration)1 StandardConfiguration (org.openstreetmap.atlas.utilities.configuration.StandardConfiguration)1