Skip to content

Commit 7eeebf6

Browse files
author
AllSecure
committed
url fix
1 parent 31991c5 commit 7eeebf6

File tree

2 files changed

+25
-25
lines changed

2 files changed

+25
-25
lines changed

example_core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"billing.street1": "Amazonstda",
7373
"billing.postcode": "12345678",
7474
"customParameters[BRADESCO_cpfsacado]": "11111111111",
75-
"shopperResultUrl": "https://docs.oppwa.com",
75+
"shopperResultUrl": "https://allsecure.docs.oppwa.com",
7676
"testMode": "EXTERNAL"})
7777

7878
print("------Registration with async payment method------")

tests/test_data_utils.py

+24-24
Original file line numberDiff line numberDiff line change
@@ -229,39 +229,39 @@ def random_sync_payment_brand():
229229
"billing.street1": "Amazonstda",
230230
"billing.postcode": "12345678",
231231
"customParameters[BRADESCO_cpfsacado]": "11111111111",
232-
"shopperResultUrl": "https://docs.oppwa.com", "testMode": "EXTERNAL",
232+
"shopperResultUrl": "https://allsecure.docs.oppwa.com", "testMode": "EXTERNAL",
233233
"testMode": "EXTERNAL"}
234234

235235
CHINAUNIONPAY = {"amount": "12.12",
236236
"currency": "USD",
237237
"paymentBrand": "CHINAUNIONPAY",
238-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
238+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
239239

240240
DAOPAY = {"amount": "12.12",
241241
"currency": "EUR",
242242
"paymentBrand": "DAOPAY",
243243
"billing.country": "DE",
244-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
244+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
245245

246246
EPS = {"amount": "12.12",
247247
"currency": "EUR",
248248
"paymentBrand": "EPS",
249249
"bankAccount.country": "AT",
250-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
250+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
251251

252252
GIROPAY = {"amount": "12.12",
253253
"currency": "EUR",
254254
"paymentBrand": "GIROPAY",
255255
"bankAccount.bic": "TESTDETT421",
256256
"bankAccount.iban": "DE14940593100000012346",
257-
"bankAccount.country": "DE", "shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
257+
"bankAccount.country": "DE", "shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
258258

259259
IDEAL = {"amount": "92.12",
260260
"currency": "EUR",
261261
"paymentBrand": "IDEAL",
262262
"bankAccount.bankName": "ING_TEST",
263263
"bankAccount.country": "NL",
264-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
264+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
265265

266266
KLARNA_INSTALLMENTS = {"amount": "92.12",
267267
"currency": "EUR",
@@ -275,7 +275,7 @@ def random_sync_payment_brand():
275275
"cart.items[0].name": "Product 1",
276276
"cart.items[0].price": "1.00",
277277
"cart.items[0].tax": "6.00",
278-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
278+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
279279

280280
KLARNA_INVOICE = {"amount": "92.12",
281281
"currency": "EUR",
@@ -289,12 +289,12 @@ def random_sync_payment_brand():
289289
"cart.items[0].name": "Product 1",
290290
"cart.items[0].price": "1.00",
291291
"cart.items[0].tax": "6.00",
292-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
292+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
293293

294294
MONEYBOOKERS = {"amount": "92.12",
295295
"currency": "USD",
296296
"paymentBrand": "MONEYBOOKERS",
297-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
297+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
298298

299299
PAYOLUTION_ELV = {"amount": "92.12",
300300
"currency": "EUR",
@@ -312,7 +312,7 @@ def random_sync_payment_brand():
312312
"customParameters[PAYOLUTION_ITEM_PRICE_2]": "3.00",
313313
"customParameters[PAYOLUTION_ITEM_DESCR_2]": "Test item #2",
314314
"testMode": "EXTERNAL",
315-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
315+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
316316

317317
PAYOLUTION_INS = {"amount": "92.12",
318318
"currency": "EUR",
@@ -330,7 +330,7 @@ def random_sync_payment_brand():
330330
"customParameters[PAYOLUTION_ITEM_PRICE_2]": "3.00",
331331
"customParameters[PAYOLUTION_ITEM_DESCR_2]": "Test item #2",
332332
"testMode": "EXTERNAL",
333-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
333+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
334334

335335
PAYOLUTION_INVOICE = {"amount": "92.12",
336336
"currency": "EUR",
@@ -348,55 +348,55 @@ def random_sync_payment_brand():
348348
"customParameters[PAYOLUTION_ITEM_PRICE_2]": "3.00",
349349
"customParameters[PAYOLUTION_ITEM_DESCR_2]": "Test item #2",
350350
"testMode": "EXTERNAL",
351-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
351+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
352352

353353
PAYPAL = {"amount": "92.12",
354354
"currency": "EUR",
355355
"paymentBrand": "PAYPAL",
356-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
356+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
357357

358358
PAYSAFECARD = {"amount": "92.12",
359359
"currency": "EUR",
360360
"paymentBrand": "PAYSAFECARD",
361-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
361+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
362362

363363
PAYTRAIL = {"amount": "92.12",
364364
"currency": "EUR",
365365
"paymentBrand": "PAYTRAIL",
366366
"bankAccount.bankName": "Bank Paytrail",
367367
"bankAccount.country": "FI",
368368
"bankAccount.holder": "Jane Jones",
369-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
369+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
370370

371371
PF_KARTE_DIRECT = {"amount": "92.12",
372372
"currency": "CHF",
373373
"paymentBrand": "PF_KARTE_DIRECT",
374-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
374+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
375375

376376
POLI = {"amount": "92.12",
377377
"currency": "AUD",
378378
"paymentBrand": "POLI",
379379
"bankAccount.country": "AU",
380-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
380+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
381381

382382
PREPAYMENT = {"amount": "92.12",
383383
"currency": "EUR",
384384
"paymentBrand": "PREPAYMENT",
385-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
385+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
386386

387387
PRZELEWY = {"amount": "92.12",
388388
"currency": "PLN",
389389
"paymentBrand": "PRZELEWY",
390390
"customer.givenName": "Jane",
391391
"customer.surname": "Jones",
392392
"customer.email": "test@test.com",
393-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
393+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
394394

395395
SOFORTUEBERWEISUNG = {"amount": "92.12",
396396
"currency": "EUR",
397397
"paymentBrand": "SOFORTUEBERWEISUNG",
398398
"bankAccount.country": "AT",
399-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
399+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
400400

401401
TRUSTLY = {"amount": "92.12",
402402
"currency": "EUR",
@@ -406,7 +406,7 @@ def random_sync_payment_brand():
406406
"customer.surname": "Jones",
407407
"billing.country": "DE",
408408
"merchantTransactionId": "abc123",
409-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
409+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
410410

411411
TRUSTPAY_VA = {"amount": "92.12",
412412
"currency": "EUR",
@@ -415,14 +415,14 @@ def random_sync_payment_brand():
415415
"customer.surname": "Jones",
416416
"customer.email": "test@test.com",
417417
"testMode": "EXTERNAL",
418-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
418+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
419419

420420
UKASH = {"amount": "92.12",
421421
"currency": "EUR",
422422
"paymentBrand": "UKASH",
423-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
423+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}
424424

425425
YANDEX = {"amount": "92.12",
426426
"currency": "RUB",
427427
"paymentBrand": "YANDEX",
428-
"shopperResultUrl": "https://docs.oppwa.com/?q=initial-payment"}
428+
"shopperResultUrl": "https://allsecure.docs.oppwa.com/?q=initial-payment"}

0 commit comments

Comments
 (0)