forked from braintree-go/braintree-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init_test.go
84 lines (72 loc) · 2.03 KB
/
init_test.go
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
package braintree
import (
"context"
"flag"
"fmt"
"log"
"os"
"time"
"github.com/lionelbarrow/braintree-go/testhelpers"
)
var testCreditCards = map[string]CreditCard{
"visa": CreditCard{Number: "4111111111111111"},
"mastercard": CreditCard{Number: "5555555555554444"},
"discover": CreditCard{Number: "6011111111111117"},
}
var testGateway = New(
Sandbox,
os.Getenv("BRAINTREE_MERCH_ID"),
os.Getenv("BRAINTREE_PUB_KEY"),
os.Getenv("BRAINTREE_PRIV_KEY"),
)
var testTimeZone = func() *time.Location {
tzName := os.Getenv("BRAINTREE_TIMEZONE")
if tzName == "" {
return time.UTC
}
tz, err := time.LoadLocation(tzName)
if err != nil {
panic(fmt.Errorf("Error loading time zone location %s: %s", tzName, err))
}
return tz
}()
var testMerchantAccountId = os.Getenv("BRAINTREE_MERCH_ACCT_ID")
// Merchant Account which has AVS and CVV checking turned on.
var avsAndCVVTestMerchantAccountId = os.Getenv("BRAINTREE_MERCH_ACCT_ID_FOR_AVS_CVV")
func testSubMerchantAccount() string {
acct := MerchantAccount{
MasterMerchantAccountId: testMerchantAccountId,
TOSAccepted: true,
Id: testhelpers.RandomString(),
Individual: &MerchantAccountPerson{
FirstName: "First",
LastName: "Last",
Email: "firstlast@example.com",
Phone: "0000000000",
DateOfBirth: "1-1-1900",
Address: &Address{
StreetAddress: "222 W Merchandise Mart Plaza",
ExtendedAddress: "Suite 800",
Locality: "Chicago",
Region: "IL",
PostalCode: "00000",
},
},
FundingOptions: &MerchantAccountFundingOptions{
Destination: FUNDING_DEST_MOBILE_PHONE,
MobilePhone: "0000000000",
},
}
merchantAccount, err := testGateway.MerchantAccount().Create(context.Background(), &acct)
if err != nil {
panic(fmt.Errorf("Error creating test sub merchant account: %s", err))
}
return merchantAccount.Id
}
func init() {
logEnabled := flag.Bool("log", false, "enables logging")
flag.Parse()
if *logEnabled {
testGateway.Logger = log.New(os.Stderr, "", 0)
}
}