use of de.westnordost.osmapi.map.data.OsmLatLon in project StreetComplete by westnordost.
the class OsmQuestDaoTest method testGetAllByBBox.
public void testGetAllByBBox() {
OsmQuest quest1 = createNewQuest(11, Element.Type.NODE);
OsmQuest quest2 = createNewQuest(12, Element.Type.NODE, new ElementGeometry(new OsmLatLon(11, 11)));
addToDaos(quest1, quest2);
assertEquals(1, dao.getAll(new BoundingBox(0, 0, 10, 10), null, null, null, null).size());
assertEquals(2, dao.getAll(null, null, null, null, null).size());
}
use of de.westnordost.osmapi.map.data.OsmLatLon in project StreetComplete by westnordost.
the class OsmQuestDaoTest method testGetAllByMultipleQuestTypes.
public void testGetAllByMultipleQuestTypes() {
ElementGeometry geom = new ElementGeometry(new OsmLatLon(5, 5));
OsmQuest quest1 = createNewQuest(new TestQuestType(), 1, Element.Type.NODE, geom);
OsmQuest quest2 = createNewQuest(new TestQuestType2(), 2, Element.Type.NODE, geom);
addToDaos(quest1, quest2);
List<OsmQuest> only1 = dao.getAll(null, null, Collections.singletonList(TestQuestType.class.getSimpleName()));
assertEquals(1, only1.size());
List<OsmQuest> both = dao.getAll(null, null, Arrays.asList(TestQuestType.class.getSimpleName(), TestQuestType2.class.getSimpleName()));
assertEquals(2, both.size());
}
use of de.westnordost.osmapi.map.data.OsmLatLon in project StreetComplete by westnordost.
the class OsmQuestDaoTest method testGetNextNewAt.
public void testGetNextNewAt() {
ElementGeometry geom = new ElementGeometry(new OsmLatLon(5, 5));
OsmQuest quest = createNewQuest(new TestQuestType(), 1, Element.Type.NODE, geom);
quest.setStatus(QuestStatus.ANSWERED);
addToDaos(quest, createNewQuest(new TestQuestType2(), 1, Element.Type.NODE, geom), createNewQuest(new TestQuestType3(), 1, Element.Type.NODE, geom), createNewQuest(new TestQuestType4(), 1, Element.Type.NODE, geom), createNewQuest(new TestQuestType5(), 1, Element.Type.NODE, geom));
OsmQuest nextQuest = dao.getNextNewAt(1, Arrays.asList("TestQuestType4", "TestQuestType3", "TestQuestType5"));
assertEquals(nextQuest.getType().getClass().getSimpleName(), "TestQuestType4");
}
use of de.westnordost.osmapi.map.data.OsmLatLon in project StreetComplete by westnordost.
the class OsmQuestDaoTest method testGetNoFittingNextNewAt.
public void testGetNoFittingNextNewAt() {
ElementGeometry geom = new ElementGeometry(new OsmLatLon(5, 5));
OsmQuest quest = createNewQuest(new TestQuestType(), 1, Element.Type.NODE, geom);
quest.setStatus(QuestStatus.ANSWERED);
addToDaos(quest, createNewQuest(new TestQuestType2(), 2, Element.Type.NODE, geom));
assertNull(dao.getNextNewAt(1, Arrays.asList("TestQuestType")));
}
use of de.westnordost.osmapi.map.data.OsmLatLon in project StreetComplete by westnordost.
the class CreateNoteDaoTest method testCountOne.
public void testCountOne() {
CreateNote note1 = new CreateNote();
note1.position = new OsmLatLon(0.5, 0.5);
note1.text = "joho";
dao.add(note1);
assertEquals(1, dao.getCount());
}
Aggregations