-
Notifications
You must be signed in to change notification settings - Fork 39
/
ManifestTest.java
95 lines (80 loc) · 3.6 KB
/
ManifestTest.java
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
package com.shippo.model;
import static org.junit.Assert.*;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.TimeZone;
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 ManifestTest extends ShippoTest {
@Test
public void testValidCreate() throws AuthenticationException, InvalidRequestException, APIConnectionException,
APIException {
Manifest testObject = createManifestFixture();
assertEquals("QUEUED", testObject.getStatus());
}
@Test(expected = InvalidRequestException.class)
public void testInvalidCreate() throws AuthenticationException, InvalidRequestException, APIConnectionException,
APIException {
Manifest.create(getInvalidObjectMap());
}
@Test
public void testRetrieve() throws AuthenticationException, InvalidRequestException, APIConnectionException,
APIException {
Manifest testObject = createManifestFixture();
Manifest retrievedObject;
retrievedObject = Manifest.retrieve((String) testObject.objectId);
assertEquals(testObject.objectId, retrievedObject.objectId);
}
@Test(expected = InvalidRequestException.class)
public void testInvalidRetrieve() throws AuthenticationException, InvalidRequestException, APIConnectionException,
APIException {
Manifest.retrieve("invalid_id");
}
@Test
public void testListAll() throws AuthenticationException, InvalidRequestException, APIConnectionException,
APIException {
ManifestCollection objectCollection = Manifest.all(null);
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
ManifestCollection ManifestCollection = Manifest.all(objectMap);
assertEquals(ManifestCollection.getData().size(), 1);
}
public static Manifest createManifestFixture()
throws AuthenticationException, InvalidRequestException, APIConnectionException, APIException {
TimeZone tz = TimeZone.getTimeZone("PST");
DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
df.setTimeZone(tz);
String nowTime = df.format(new Date());
Map<String, Object> objectMap = new HashMap<String, Object>();
Address testAddress = AddressTest.createAddressFixture1();
Transaction transaction = TransactionTest.createTransactionFixture();
List<String> transactions = new ArrayList<String>();
transactions.add(transaction.objectId);
CarrierAccount usps_account = CarrierAccount.getByCarrier("usps");
objectMap.put("carrier_account", usps_account.getObjectId());
objectMap.put("shipment_date", nowTime);
objectMap.put("address_from", testAddress.getObjectId());
objectMap.put("transactions", transactions);
try {
return Manifest.create(objectMap);
} catch (ShippoException e) {
e.printStackTrace();
}
return null;
}
}