-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathTestRunner.java
551 lines (459 loc) · 25 KB
/
TestRunner.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
package net.authorize.sample.SampleCodeTest;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.security.SecureRandom;
import java.text.DecimalFormat;
import org.junit.Test;
import junit.framework.Assert;
import net.authorize.api.contract.v1.ANetApiResponse;
import net.authorize.api.contract.v1.ARBCreateSubscriptionResponse;
import net.authorize.api.contract.v1.ARBGetSubscriptionResponse;
import net.authorize.api.contract.v1.ARBGetSubscriptionStatusResponse;
import net.authorize.api.contract.v1.ARBUpdateSubscriptionResponse;
import net.authorize.api.contract.v1.CreateCustomerPaymentProfileResponse;
import net.authorize.api.contract.v1.CreateCustomerProfileResponse;
import net.authorize.api.contract.v1.CreateCustomerShippingAddressResponse;
import net.authorize.api.contract.v1.CreateTransactionResponse;
import net.authorize.api.contract.v1.DeleteCustomerPaymentProfileResponse;
import net.authorize.api.contract.v1.DeleteCustomerShippingAddressResponse;
import net.authorize.api.contract.v1.GetCustomerPaymentProfileResponse;
import net.authorize.api.contract.v1.GetCustomerProfileResponse;
import net.authorize.api.contract.v1.GetCustomerShippingAddressResponse;
import net.authorize.api.contract.v1.GetHostedProfilePageResponse;
import net.authorize.api.contract.v1.MessageTypeEnum;
import net.authorize.api.contract.v1.UpdateCustomerPaymentProfileResponse;
import net.authorize.api.contract.v1.UpdateCustomerProfileResponse;
import net.authorize.api.contract.v1.UpdateCustomerShippingAddressResponse;
import net.authorize.api.contract.v1.ValidateCustomerPaymentProfileResponse;
import net.authorize.sample.AcceptSuite.GetAcceptCustomerProfilePage;
import net.authorize.sample.AcceptSuite.GetAnAcceptPaymentPage;
import net.authorize.sample.CustomerProfiles.CreateCustomerPaymentProfile;
import net.authorize.sample.CustomerProfiles.CreateCustomerProfile;
import net.authorize.sample.CustomerProfiles.CreateCustomerProfileFromTransaction;
import net.authorize.sample.CustomerProfiles.CreateCustomerShippingAddress;
import net.authorize.sample.CustomerProfiles.DeleteCustomerPaymentProfile;
import net.authorize.sample.CustomerProfiles.DeleteCustomerProfile;
import net.authorize.sample.CustomerProfiles.DeleteCustomerShippingAddress;
import net.authorize.sample.CustomerProfiles.GetAcceptCustomerProfilePage;
import net.authorize.sample.CustomerProfiles.GetCustomerPaymentProfile;
import net.authorize.sample.CustomerProfiles.GetCustomerProfile;
import net.authorize.sample.CustomerProfiles.GetCustomerShippingAddress;
import net.authorize.sample.CustomerProfiles.UpdateCustomerPaymentProfile;
import net.authorize.sample.CustomerProfiles.UpdateCustomerProfile;
import net.authorize.sample.CustomerProfiles.UpdateCustomerShippingAddress;
import net.authorize.sample.CustomerProfiles.ValidateCustomerPaymentProfile;
import net.authorize.sample.PayPalExpressCheckout.AuthorizationAndCapture;
import net.authorize.sample.PayPalExpressCheckout.AuthorizationAndCaptureContinued;
import net.authorize.sample.PayPalExpressCheckout.AuthorizationOnly;
import net.authorize.sample.PayPalExpressCheckout.AuthorizationOnlyContinued;
import net.authorize.sample.PayPalExpressCheckout.Credit;
import net.authorize.sample.PayPalExpressCheckout.GetDetails;
import net.authorize.sample.PayPalExpressCheckout.PriorAuthorizationCapture;
import net.authorize.sample.PaymentTransactions.AuthorizeCreditCard;
import net.authorize.sample.PaymentTransactions.CaptureFundsAuthorizedThroughAnotherChannel;
import net.authorize.sample.PaymentTransactions.CapturePreviouslyAuthorizedAmount;
import net.authorize.sample.PaymentTransactions.ChargeCreditCard;
import net.authorize.sample.PaymentTransactions.ChargeCustomerProfile;
import net.authorize.sample.PaymentTransactions.ChargeTokenizedCreditCard;
import net.authorize.sample.PaymentTransactions.CreditBankAccount;
import net.authorize.sample.PaymentTransactions.DebitBankAccount;
import net.authorize.sample.PaymentTransactions.GetAnAcceptPaymentPage;
import net.authorize.sample.PaymentTransactions.RefundTransaction;
import net.authorize.sample.PaymentTransactions.VoidTransaction;
import net.authorize.sample.RecurringBilling.CancelSubscription;
import net.authorize.sample.RecurringBilling.CreateSubscription;
import net.authorize.sample.RecurringBilling.CreateSubscriptionFromCustomerProfile;
import net.authorize.sample.RecurringBilling.GetSubscription;
import net.authorize.sample.RecurringBilling.GetSubscriptionStatus;
import net.authorize.sample.RecurringBilling.UpdateSubscription;
import net.authorize.sample.TransactionReporting.GetAccountUpdaterJobDetails;
import net.authorize.sample.TransactionReporting.GetTransactionDetails;
public class TestRunner {
String apiLoginId = Constants.API_LOGIN_ID;
String transactionKey = Constants.TRANSACTION_KEY;
String TransactionID = Constants.TRANSACTION_ID;
String payerID = Constants.PAYER_ID;
static SecureRandom rgenerator = new SecureRandom();
private static String getEmail()
{
return rgenerator.nextInt(1000000) + "@test.com";
}
private static Double getAmount()
{
double d = (double)(1.05 + (450.0 * rgenerator.nextDouble()));
DecimalFormat df = new DecimalFormat("#.##");
d = Double.valueOf(df.format(d));
return d;
}
private static short getDays()
{
return (short) (rgenerator.nextInt(358) + 7);
}
@Test
public void TestAllSampleCodes()
{
String fileName = Constants.CONFIG_FILE;
int numRetries = 3;
BufferedReader reader = null;
try {
reader = new BufferedReader(new FileReader(fileName));
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
TestRunner tr = new TestRunner();
int cnt = 0;
String line;
try {
while ((line = reader.readLine()) != null)
{
String[] items = line.split("\t");
String apiName = items[0];
String isDependent = items[1];
String shouldApiRun = items[2];
System.out.println(apiName);
if (!shouldApiRun.equals("1"))
continue;
System.out.println("-------------------");
System.out.println("Running test case for :: " + apiName);
System.out.println("-------------------");
ANetApiResponse response = null;
cnt++;
for (int i = 0;i<numRetries;++i)
{
try
{
if (isDependent.equals("0"))
{
response = InvokeRunMethod(apiName);
}
else
{
String[] namespace = apiName.split("\\.");
String className = namespace[1];
Class classType = this.getClass();
response = (ANetApiResponse)classType.getMethod("Test" + className).invoke(tr);
}
if ((response != null) && (response.getMessages().getResultCode() == MessageTypeEnum.OK))
break;
}
catch (Exception e)
{
System.out.println("Exception in " + apiName + " " + e.toString());
System.out.println(e.getMessage());
}
}
Assert.assertNotNull(response);
Assert.assertEquals(response.getMessages().getResultCode(), MessageTypeEnum.OK);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("Total Sample Runs: " + cnt);
}
public ANetApiResponse InvokeRunMethod(String className)
{
String fqClassName = "net.authorize.sample." + className;
Class classType = null;
try {
classType = Class.forName(fqClassName);
} catch (ClassNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
Method runMethod = null;
try {
runMethod = classType.getMethod("run",String.class, String.class);
} catch (NoSuchMethodException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (SecurityException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
try {
return (ANetApiResponse)runMethod.invoke(null, Constants.API_LOGIN_ID, Constants.TRANSACTION_KEY);
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InvocationTargetException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
public ANetApiResponse TestValidateCustomerPaymentProfile()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse) CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
CreateCustomerPaymentProfileResponse customerPaymentProfile = (CreateCustomerPaymentProfileResponse)CreateCustomerPaymentProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
System.out.println(response.getCustomerProfileId());
System.out.println(customerPaymentProfile.getCustomerPaymentProfileId());
ValidateCustomerPaymentProfileResponse validateResponse = (ValidateCustomerPaymentProfileResponse) ValidateCustomerPaymentProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId(), customerPaymentProfile.getCustomerPaymentProfileId());
DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
return validateResponse;
}
public ANetApiResponse TestUpdateCustomerShippingAddress()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
CreateCustomerShippingAddressResponse shippingResponse = (CreateCustomerShippingAddressResponse)CreateCustomerShippingAddress.run(apiLoginId, transactionKey, response.getCustomerProfileId());
UpdateCustomerShippingAddressResponse updateResponse = (UpdateCustomerShippingAddressResponse) UpdateCustomerShippingAddress.run(apiLoginId, transactionKey, response.getCustomerProfileId(), shippingResponse.getCustomerAddressId());
DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
return updateResponse;
}
public ANetApiResponse TestUpdateCustomerProfile()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
UpdateCustomerProfileResponse updateResponse = (UpdateCustomerProfileResponse) UpdateCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
return updateResponse;
}
public ANetApiResponse TestUpdateCustomerPaymentProfile()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
CreateCustomerPaymentProfileResponse paymentProfileResponse = (CreateCustomerPaymentProfileResponse)CreateCustomerPaymentProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
UpdateCustomerPaymentProfileResponse updateResponse = (UpdateCustomerPaymentProfileResponse) UpdateCustomerPaymentProfile.run(apiLoginId, transactionKey,
response.getCustomerProfileId(), paymentProfileResponse.getCustomerPaymentProfileId());
DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
return updateResponse;
}
public ANetApiResponse TestGetCustomerShippingAddress()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
CreateCustomerShippingAddressResponse shippingResponse = (CreateCustomerShippingAddressResponse)CreateCustomerShippingAddress.run(apiLoginId, transactionKey, response.getCustomerProfileId());
GetCustomerShippingAddressResponse getResponse = (GetCustomerShippingAddressResponse) GetCustomerShippingAddress.run(apiLoginId, transactionKey,
response.getCustomerProfileId(), shippingResponse.getCustomerAddressId());
DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
return getResponse;
}
public ANetApiResponse TestGetCustomerProfile()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
GetCustomerProfileResponse profileResponse = (GetCustomerProfileResponse) GetCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
return profileResponse;
}
public ANetApiResponse TestGetAcceptCustomerProfilePage()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
GetHostedProfilePageResponse profileResponse = (GetHostedProfilePageResponse) GetAcceptCustomerProfilePage.run(apiLoginId, transactionKey, response.getCustomerProfileId());
DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
return profileResponse;
}
public ANetApiResponse TestGetCustomerPaymentProfile()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
CreateCustomerPaymentProfileResponse paymentProfileResponse = (CreateCustomerPaymentProfileResponse)CreateCustomerPaymentProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
GetCustomerPaymentProfileResponse getResponse = (GetCustomerPaymentProfileResponse) GetCustomerPaymentProfile.run(apiLoginId, transactionKey,
response.getCustomerProfileId(), paymentProfileResponse.getCustomerPaymentProfileId());
DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
return getResponse;
}
public ANetApiResponse TestDeleteCustomerShippingAddress()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
CreateCustomerShippingAddressResponse shippingResponse = (CreateCustomerShippingAddressResponse)CreateCustomerShippingAddress.run(apiLoginId, transactionKey, response.getCustomerProfileId());
DeleteCustomerShippingAddressResponse deleteResponse = (DeleteCustomerShippingAddressResponse) DeleteCustomerShippingAddress.run(apiLoginId, transactionKey,
response.getCustomerProfileId(), shippingResponse.getCustomerAddressId());
DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
return deleteResponse;
}
public ANetApiResponse TestDeleteCustomerProfile()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
return DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
}
public ANetApiResponse TestDeleteCustomerPaymentProfile()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
CreateCustomerPaymentProfileResponse paymentProfileResponse = (CreateCustomerPaymentProfileResponse)CreateCustomerPaymentProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
DeleteCustomerPaymentProfileResponse deleteResponse = (DeleteCustomerPaymentProfileResponse) DeleteCustomerPaymentProfile.run(apiLoginId, transactionKey,
response.getCustomerProfileId(), paymentProfileResponse.getCustomerPaymentProfileId());
DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
return deleteResponse;
}
public ANetApiResponse TestCreateCustomerShippingAddress()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
CreateCustomerShippingAddressResponse shippingResponse = (CreateCustomerShippingAddressResponse)CreateCustomerShippingAddress.run(apiLoginId, transactionKey, response.getCustomerProfileId());
DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
return shippingResponse;
}
public ANetApiResponse TestAuthorizeCreditCard()
{
CreateTransactionResponse response = (CreateTransactionResponse)AuthorizeCreditCard.run(apiLoginId, transactionKey, getAmount());
return response;
}
public ANetApiResponse TestDebitBankAccount()
{
CreateTransactionResponse response = (CreateTransactionResponse)DebitBankAccount.run(apiLoginId, transactionKey, getAmount());
return response;
}
public ANetApiResponse TestChargeTokenizedCreditCard()
{
CreateTransactionResponse response = (CreateTransactionResponse)ChargeTokenizedCreditCard.run(apiLoginId, transactionKey, getAmount());
return response;
}
public ANetApiResponse TestGetTransactionDetails()
{
CreateTransactionResponse response = (CreateTransactionResponse)AuthorizeCreditCard.run(apiLoginId, transactionKey, getAmount());
return GetTransactionDetails.run(apiLoginId, transactionKey, response.getTransactionResponse().getTransId());
}
public ANetApiResponse TestChargeCreditCard()
{
return ChargeCreditCard.run(apiLoginId, transactionKey, getAmount());
}
public ANetApiResponse TestCreateCustomerProfileFromTransaction()
{
return CreateCustomerProfileFromTransaction.run(apiLoginId, transactionKey, getAmount(), getEmail());
}
public ANetApiResponse TestCapturePreviouslyAuthorizedAmount()
{
CreateTransactionResponse response = (CreateTransactionResponse)AuthorizeCreditCard.run(apiLoginId, transactionKey, getAmount());
return CapturePreviouslyAuthorizedAmount.run(apiLoginId, transactionKey, response.getTransactionResponse().getTransId());
}
public ANetApiResponse TestRefundTransaction()
{
CreateTransactionResponse response = (CreateTransactionResponse)AuthorizeCreditCard.run(apiLoginId, transactionKey, getAmount());
response = (CreateTransactionResponse)CapturePreviouslyAuthorizedAmount.run(apiLoginId, transactionKey, response.getTransactionResponse().getTransId());
return RefundTransaction.run(apiLoginId, transactionKey, getAmount(), response.getTransactionResponse().getTransId());
}
public ANetApiResponse TestVoidTransaction()
{
CreateTransactionResponse response = (CreateTransactionResponse)AuthorizeCreditCard.run(apiLoginId, transactionKey, getAmount());
return VoidTransaction.run(apiLoginId, transactionKey, response.getTransactionResponse().getTransId());
}
public ANetApiResponse TestCreditBankAccount()
{
return CreditBankAccount.run(apiLoginId, transactionKey, TransactionID, getAmount());
}
public ANetApiResponse TestChargeCustomerProfile()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
CreateCustomerPaymentProfileResponse paymentProfileResponse = (CreateCustomerPaymentProfileResponse)CreateCustomerPaymentProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
CreateTransactionResponse chargeResponse = (CreateTransactionResponse) ChargeCustomerProfile.run(apiLoginId, transactionKey,
response.getCustomerProfileId(), paymentProfileResponse.getCustomerPaymentProfileId(), getAmount());
DeleteCustomerProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
return chargeResponse;
}
public ANetApiResponse TestPayPalVoid()
{
CreateTransactionResponse response = (CreateTransactionResponse)AuthorizationAndCapture.run(apiLoginId, transactionKey, getAmount());
return net.authorize.sample.PayPalExpressCheckout.Void.run(apiLoginId, transactionKey, response.getTransactionResponse().getTransId());
}
public ANetApiResponse TestPayPalAuthorizationAndCapture()
{
return AuthorizationAndCapture.run(apiLoginId, transactionKey, getAmount());
}
public ANetApiResponse TestPayPalAuthorizationAndCaptureContinued()
{
CreateTransactionResponse response = (CreateTransactionResponse)AuthorizationAndCapture.run(apiLoginId, transactionKey, getAmount());
return AuthorizationAndCaptureContinued.run(apiLoginId, transactionKey, response.getTransactionResponse().getTransId(), payerID, getAmount());
}
public ANetApiResponse TestPayPalAuthorizationOnly()
{
return AuthorizationOnly.run(apiLoginId, transactionKey, getAmount());
}
public ANetApiResponse TestPayPalAuthorizationOnlyContinued()
{
CreateTransactionResponse response = (CreateTransactionResponse)AuthorizationAndCapture.run(apiLoginId, transactionKey, getAmount());
return AuthorizationOnlyContinued.run(apiLoginId, transactionKey, response.getTransactionResponse().getTransId(), payerID, getAmount());
}
public ANetApiResponse TestPayPalCredit()
{
return Credit.run(apiLoginId, transactionKey, TransactionID);
}
public ANetApiResponse TestPayPalGetDetails()
{
CreateTransactionResponse response = (CreateTransactionResponse)AuthorizationAndCapture.run(apiLoginId, transactionKey, getAmount());
return GetDetails.run(apiLoginId, transactionKey, response.getTransactionResponse()
.getTransId());
}
public ANetApiResponse TestPayPalPriorAuthorizationCapture()
{
CreateTransactionResponse response = (CreateTransactionResponse)AuthorizationAndCapture.run(apiLoginId, transactionKey, getAmount());
return PriorAuthorizationCapture.run(apiLoginId, transactionKey, response.getTransactionResponse().getTransId());
}
public ANetApiResponse TestCancelSubscription()
{
ARBCreateSubscriptionResponse response = (ARBCreateSubscriptionResponse)CreateSubscription.run(apiLoginId, transactionKey, getDays(), getAmount());
return CancelSubscription.run(apiLoginId, transactionKey, response.getSubscriptionId());
}
public ANetApiResponse TestCreateSubscription()
{
ARBCreateSubscriptionResponse response = (ARBCreateSubscriptionResponse)CreateSubscription.run(apiLoginId, transactionKey, getDays(), getAmount());
CancelSubscription.run(apiLoginId, transactionKey, response.getSubscriptionId());
return response;
}
public ANetApiResponse TestCreateSubscriptionFromCustomerProfile()
{
CreateCustomerProfileResponse profileResponse = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
CreateCustomerPaymentProfileResponse paymentResponse = (CreateCustomerPaymentProfileResponse) CreateCustomerPaymentProfile.
run(apiLoginId, transactionKey, profileResponse.getCustomerProfileId());
CreateCustomerShippingAddressResponse shippingResponse = (CreateCustomerShippingAddressResponse)CreateCustomerShippingAddress.
run(apiLoginId, transactionKey, profileResponse.getCustomerProfileId());
try
{
Thread.sleep(10000);
}
catch (InterruptedException e)
{
e.printStackTrace();
}
ARBCreateSubscriptionResponse response = (ARBCreateSubscriptionResponse) CreateSubscriptionFromCustomerProfile.run(apiLoginId, transactionKey, getDays(), getAmount(), profileResponse.getCustomerProfileId(),
paymentResponse.getCustomerPaymentProfileId(), shippingResponse.getCustomerAddressId());
CancelSubscription.run(apiLoginId, transactionKey, response.getSubscriptionId());
DeleteCustomerProfile.run(apiLoginId, transactionKey, profileResponse.getCustomerProfileId());
return response;
}
public ANetApiResponse TestGetSubscriptionStatus()
{
ARBCreateSubscriptionResponse response = (ARBCreateSubscriptionResponse)CreateSubscription.run(apiLoginId, transactionKey, getDays(), getAmount());
ARBGetSubscriptionStatusResponse subscriptionResponse = (ARBGetSubscriptionStatusResponse) GetSubscriptionStatus.run(apiLoginId, transactionKey, response.getSubscriptionId());
return subscriptionResponse;
}
public ANetApiResponse TestGetSubscription()
{
ARBCreateSubscriptionResponse response = (ARBCreateSubscriptionResponse)CreateSubscription.run(apiLoginId, transactionKey, getDays(), getAmount());
ARBGetSubscriptionResponse getResponse = (ARBGetSubscriptionResponse) GetSubscription.run(apiLoginId, transactionKey, response.getSubscriptionId());
CancelSubscription.run(apiLoginId, transactionKey, response.getSubscriptionId());
return getResponse;
}
public ANetApiResponse TestUpdateSubscription()
{
ARBCreateSubscriptionResponse response = (ARBCreateSubscriptionResponse)CreateSubscription.run(apiLoginId, transactionKey, getDays(), getAmount());
ARBUpdateSubscriptionResponse updateResponse = (ARBUpdateSubscriptionResponse) UpdateSubscription.run(apiLoginId, transactionKey, response.getSubscriptionId());
CancelSubscription.run(apiLoginId, transactionKey, response.getSubscriptionId());
return updateResponse;
}
public ANetApiResponse TestCreateCustomerProfile()
{
return CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
}
public ANetApiResponse TestCaptureFundsAuthorizedThroughAnotherChannel()
{
return CaptureFundsAuthorizedThroughAnotherChannel.run(apiLoginId, transactionKey, getAmount());
}
public ANetApiResponse TestCreateCustomerPaymentProfile()
{
CreateCustomerProfileResponse response = (CreateCustomerProfileResponse)CreateCustomerProfile.run(apiLoginId, transactionKey, getEmail());
return CreateCustomerPaymentProfile.run(apiLoginId, transactionKey, response.getCustomerProfileId());
}
public ANetApiResponse TestGetAnAcceptPaymentPage()
{
return GetAnAcceptPaymentPage.run(apiLoginId, transactionKey, getAmount());
}
/*---Added for GetAccountUpdaterJobDetails---*/
public ANetApiResponse TestGetAccountUpdaterJobDetails()
{
return GetAccountUpdaterJobDetails.run(apiLoginId, transactionKey);
}
/*---End---*/
}