assertEquals(ResponseError.BAD_REQUEST, sse.getError());
}
}
public void testGetExpectedAppData() throws Exception {
DataCollection responseItem = db.getPersonData(
Sets.newHashSet(CANON_USER), SELF_GROUP, APP_ID, Collections.<String>emptySet(),
new FakeGadgetToken()).get();
assertFalse(responseItem.getEntry().isEmpty());
assertFalse(responseItem.getEntry().get(CANONICAL_USER_ID).isEmpty());
assertTrue(responseItem.getEntry().get(CANONICAL_USER_ID).size() == 2);
assertTrue(responseItem.getEntry().get(CANONICAL_USER_ID).containsKey("count"));
assertTrue(responseItem.getEntry().get(CANONICAL_USER_ID).containsKey("size"));
}