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
|
package cgeo.geocaching;
import cgeo.geocaching.test.R;
import cgeo.geocaching.utils.BaseUtils;
import android.test.InstrumentationTestCase;
import java.io.InputStream;
import java.util.List;
import java.util.Scanner;
public class TrackablesTest extends InstrumentationTestCase {
public void testLogPageWithTrackables() {
List<cgTrackableLog> tbLogs = cgBase.parseTrackableLog(getFileContent(R.raw.log_with_2tb));
assertNotNull(tbLogs);
assertEquals(2, tbLogs.size());
cgTrackableLog log = tbLogs.get(0);
assertEquals("Steffen's Kaiserwagen", log.name);
assertEquals("1QG1EE", log.trackCode);
}
public void testLogPageWithoutTrackables() {
List<cgTrackableLog> tbLogs = cgBase.parseTrackableLog(getFileContent(R.raw.log_without_tb));
assertNotNull(tbLogs);
assertEquals(0, tbLogs.size());
}
public void testTrackable() {
final cgTrackable trackable = getTB2R124();
assertEquals("TB2R124", trackable.getGeocode());
assertEquals("Bor. Dortmund - FC Schalke 04", trackable.getName());
assertEquals("Spiridon Lui", trackable.getOwner());
}
public void testTrackableWithoutImage() {
final cgTrackable trackable = getTB2R124();
assertNull(trackable.getImage());
assertNotNull(trackable.getDetails());
}
public void testParseTrackableWithoutReleaseDate() {
cgTrackable trackable = cgBase.parseTrackable(getFileContent(R.raw.tb14wfv), null);
assertNotNull(trackable);
assertEquals("The Brickster", trackable.getName());
assertEquals("Adrian C", trackable.getOwner());
assertTrue(trackable.getGoal().startsWith("I'm on the run from the law."));
assertTrue(trackable.getGoal().endsWith("what I've seen."));
assertEquals(8451.9, trackable.getDistance(), 0.01);
// the next two items are normally available for trackables, but not for this one, so explicitly test for null
assertNull(trackable.getReleased());
assertNull(trackable.getOrigin());
}
private String getFileContent(int resourceId) {
InputStream ins = getInstrumentation().getContext().getResources().openRawResource(resourceId);
return new Scanner(ins).useDelimiter("\\A").next();
}
private cgTrackable getTB2R124() {
return cgBase.parseTrackable(BaseUtils.replaceWhitespace(getFileContent(R.raw.trackable_tb2r124)), null);
}
}
|