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
|
package cgeo.geocaching;
import cgeo.geocaching.list.StoredList;
import junit.framework.TestCase;
public class PersonalNoteTest extends TestCase {
public static void testParse() {
final String testString = "Simple cgeo note\n--\nSimple provider note";
Geocache cache = new Geocache();
cache.setPersonalNote(testString);
PersonalNote parsedNote = new PersonalNote(cache);
assertEquals(testString, parsedNote.toString());
assertPersonalNote(parsedNote, "Simple cgeo note", "Simple provider note");
}
public static void testParseProviderOnly() {
final String testString = "Simple provider note";
Geocache cache = new Geocache();
cache.setPersonalNote(testString);
PersonalNote parsedNote = new PersonalNote(cache);
assertEquals(testString, parsedNote.toString());
assertPersonalNote(parsedNote, null, "Simple provider note");
}
public static void testParseCgeoOnly() {
final String testString = "Simple cgeo note";
Geocache cache = new Geocache();
cache.setPersonalNote(testString);
PersonalNote parsedNote = new PersonalNote(cache);
assertEquals("Simple cgeo note", parsedNote.toString());
assertPersonalNote(parsedNote, null, "Simple cgeo note");
}
public static void testSimpleMerge() {
Geocache cache1 = new Geocache(); // not stored
cache1.setPersonalNote("Simple cgeo note\n--\nSimple provider note");
PersonalNote myNote = new PersonalNote(cache1);
Geocache cache2 = new Geocache();
cache2.setListId(StoredList.STANDARD_LIST_ID); // stored
cache2.setPersonalNote("cgeo note\n--\nProvider note");
PersonalNote otherNote = new PersonalNote(cache2);
PersonalNote result = myNote.mergeWith(otherNote);
assertEquals("cgeo note\n--\nSimple provider note", result.toString());
assertPersonalNote(result, "cgeo note", "Simple provider note");
}
public static void testMixedMerge() {
Geocache cache1 = new Geocache(); // not stored
cache1.setPersonalNote("Simple cgeo note\n--\nSimple provider note");
PersonalNote myNote = new PersonalNote(cache1);
Geocache cache2 = new Geocache();
cache2.setListId(StoredList.STANDARD_LIST_ID); // stored
cache2.setPersonalNote("Provider note");
PersonalNote otherNote = new PersonalNote(cache2);
PersonalNote result = myNote.mergeWith(otherNote);
assertEquals("Simple cgeo note\n--\nSimple provider note", result.toString());
assertPersonalNote(result, "Simple cgeo note", "Simple provider note");
result = otherNote.mergeWith(myNote);
assertEquals("Simple cgeo note\n--\nProvider note", result.toString());
assertPersonalNote(result, "Simple cgeo note", "Provider note");
}
private static void assertPersonalNote(final PersonalNote note, final String cgeoNote, final String providerNote) {
assertEquals(cgeoNote, note.getCgeoNote());
assertEquals(providerNote, note.getProviderNote());
}
}
|