blob: 7d5ccee438a79dcd4e9a894512db5531e7f2d0e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
package cgeo.geocaching.files;
import static org.assertj.core.api.Assertions.assertThat;
import cgeo.geocaching.Geocache;
import cgeo.geocaching.enumerations.CacheSize;
import cgeo.geocaching.enumerations.CacheType;
import cgeo.geocaching.location.Geopoint;
import cgeo.geocaching.test.AbstractResourceInstrumentationTestCase;
import cgeo.geocaching.test.R;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
public class LocParserTest extends AbstractResourceInstrumentationTestCase {
private List<Geocache> readLoc(int resourceId) throws IOException, ParserException {
final LocParser parser = new LocParser(getTemporaryListId());
Collection<Geocache> caches = null;
final InputStream instream = getResourceStream(resourceId);
try {
caches = parser.parse(instream, null);
assertThat(caches).isNotNull();
assertThat(caches.size() > 0).isTrue();
} finally {
instream.close();
}
return new ArrayList<Geocache>(caches);
}
public void testOCLoc() throws IOException, ParserException {
final List<Geocache> caches = readLoc(R.raw.oc5952_loc);
assertThat(caches).hasSize(1);
final Geocache cache = caches.get(0);
assertThat(cache).isNotNull();
assertThat(cache.getGeocode()).isEqualTo("OC5952");
assertThat(cache.getName()).isEqualTo("Die Schatzinsel / treasure island");
assertThat(cache.getOwnerUserId()).isEqualTo("Die unbesiegbaren Geo - Geparden");
assertEquals(new Geopoint(48.85968, 9.18740), cache.getCoords());
}
public void testGCLoc() throws IOException, ParserException {
final List<Geocache> caches = readLoc(R.raw.gc1bkp3_loc);
assertThat(caches).hasSize(1);
final Geocache cache = caches.get(0);
assertThat(cache).isNotNull();
assertThat(cache.getGeocode()).isEqualTo("GC1BKP3");
assertThat(cache.getName()).isEqualTo("Die Schatzinsel / treasure island");
assertThat(cache.getOwnerUserId()).isEqualTo("Die unbesiegbaren Geo - Geparden");
assertEquals(new Geopoint(48.859683, 9.1874), cache.getCoords());
assertThat(cache.getDifficulty()).isEqualTo(1.0f);
assertThat(cache.getTerrain()).isEqualTo(5.0f);
assertThat(cache.getSize()).isEqualTo(CacheSize.MICRO);
}
public void testWaymarkingLoc() throws IOException, ParserException {
final List<Geocache> waymarks = readLoc(R.raw.waymarking_loc);
assertThat(waymarks).hasSize(1);
final Geocache waymark = waymarks.get(0);
assertThat(waymark).isNotNull();
assertThat(waymark.getGeocode()).isEqualTo("WM7BK7");
assertThat(waymark.getName()).isEqualTo("Römerstrasse Kornwestheim");
assertThat(waymark.getOwnerUserId()).isEqualTo("travelling");
assertEquals(new Geopoint(48.856733, 9.197683), waymark.getCoords());
// links are not yet stored for single caches
// assertThat(waymark.getUrl()).isEqualTo("http://www.waymarking.com/waymarks/WM7BK7_Rmerstrasse_Kornwestheim");
assertThat(waymark.getSize()).isEqualTo(CacheSize.UNKNOWN);
assertThat(waymark.getType()).isEqualTo(CacheType.UNKNOWN);
}
}
|