forked from goshippo/shippo-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddressTest.java
More file actions
113 lines (96 loc) · 4.02 KB
/
AddressTest.java
File metadata and controls
113 lines (96 loc) · 4.02 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package com.shippo.model;
import static org.junit.Assert.*;
import java.util.HashMap;
import java.util.Map;
import org.junit.Test;
import com.shippo.exception.APIConnectionException;
import com.shippo.exception.APIException;
import com.shippo.exception.AuthenticationException;
import com.shippo.exception.InvalidRequestException;
import com.shippo.exception.ShippoException;
public class AddressTest extends ShippoTest {
@Test
public void testValidCreate() {
Address testObject = (Address) getDefaultObject();
assertTrue(testObject.getIsComplete());
}
@Test(expected = InvalidRequestException.class)
public void testInvalidCreate() throws AuthenticationException, InvalidRequestException, APIConnectionException,
APIException {
Address.create(getInvalidObjectMap());
}
@Test
public void testRetrieve() throws AuthenticationException, InvalidRequestException, APIConnectionException,
APIException {
Address testObject = (Address) getDefaultObject();
Address retrievedObject;
retrievedObject = Address.retrieve((String) testObject.objectId);
assertEquals(testObject.objectId, retrievedObject.objectId);
}
@Test(expected = InvalidRequestException.class)
public void testInvalidRetrieve() throws AuthenticationException, InvalidRequestException, APIConnectionException,
APIException {
Address.retrieve("invalid_id");
}
@Test
public void testListAll() throws AuthenticationException, InvalidRequestException, APIConnectionException,
APIException {
AddressCollection objectCollection = Address.all(null);
assertNotNull(objectCollection.getCount());
assertNotNull(objectCollection.getData());
}
@Test
public void testListPageSize() throws AuthenticationException, InvalidRequestException, APIConnectionException,
APIException {
Map<String, Object> objectMap = new HashMap<String, Object>();
objectMap.put("results", "1"); // one result per page
objectMap.put("page", "1"); // the first page of results
AddressCollection addressCollection = Address.all(objectMap);
assertEquals(addressCollection.getData().size(), 1);
}
public static Object getDefaultObject() {
Map<String, Object> objectMap = new HashMap<String, Object>();
objectMap.put("name", "Undefault New Wu");
objectMap.put("company", "Shippo");
objectMap.put("street1", "Clayton St.");
objectMap.put("street_no", "215");
objectMap.put("street2", null);
objectMap.put("city", "San Francisco");
objectMap.put("state", "CA");
objectMap.put("zip", "94117");
objectMap.put("country", "US");
objectMap.put("phone", "+1 555 341 9393");
objectMap.put("email", "test@goshipppo.com");
objectMap.put("is_residential", false);
objectMap.put("metadata", "Customer ID 123456");
try {
Address testObject = Address.create(objectMap);
return testObject;
} catch (ShippoException e) {
e.printStackTrace();
}
return null;
}
public static Object getSecondObject() {
Map<String, Object> objectMap = new HashMap<String, Object>();
objectMap.put("name", "Second New Wu");
objectMap.put("company", "Hippo");
objectMap.put("street1", "965 Mission St");
objectMap.put("street2", null);
objectMap.put("city", "San Francisco");
objectMap.put("state", "CA");
objectMap.put("zip", "94103");
objectMap.put("country", "US");
objectMap.put("phone", "+1 415 111 1111");
objectMap.put("email", "test@goshipppo.com");
objectMap.put("is_residential", false);
objectMap.put("metadata", "Customer ID 1234567");
try {
Address testObject = Address.create(objectMap);
return testObject;
} catch (ShippoException e) {
e.printStackTrace();
}
return null;
}
}