1
+ import os
1
2
class MockData :
2
3
HTTP_VALUES = {
3
4
"authentication_type" : "HTTP_SIGNATURE" ,
@@ -6,14 +7,14 @@ class MockData:
6
7
"key_alias" : "testrest" ,
7
8
"key_password" : "testrest" ,
8
9
"key_file_name" : "testrest" ,
9
- "keys_directory" : "../../cybersource_authentication_sdk_python/Resources/" ,
10
+ "keys_directory" : os . path . join ( os . getcwd (), "resources" ) ,
10
11
"merchant_keyid" : "08c94330-f618-42a3-b09d-e1e43be5efda" ,
11
12
"merchant_secretkey" : "yBJxy6LjM2TmcPGu+GaJrHtkke25fPpUX+UY6/L/1tE=" ,
12
- "enable_log" : True ,
13
+ "enable_log" : False ,
13
14
"log_file_name" : "cybs" ,
14
15
"log_maximum_size" : 10485760 ,
15
- "log_directory" : "../../cybersource_authentication_sdk_python/ Logs/" ,
16
- "proxy_address" : "userproxy.visa. com" ,
16
+ "log_directory" : os . path . join ( os . getcwd (), " Logs" ) ,
17
+ "proxy_address" : "userproxy.com" ,
17
18
"proxy_port" : ""
18
19
}
19
20
JWT_VALUES = {
@@ -23,14 +24,14 @@ class MockData:
23
24
"key_alias" : "testrest" ,
24
25
"key_password" : "testrest" ,
25
26
"key_file_name" : "testrest" ,
26
- "keys_directory" : "../../cybersource_authentication_sdk_python/Resources/" ,
27
+ "keys_directory" : os . path . join ( os . getcwd (), "resources" ) ,
27
28
"merchant_keyid" : "08c94330-f618-42a3-b09d-e1e43be5efda" ,
28
29
"merchant_secretkey" : "yBJxy6LjM2TmcPGu+GaJrHtkke25fPpUX+UY6/L/1tE=" ,
29
- "enable_log" : True ,
30
+ "enable_log" : False ,
30
31
"log_file_name" : "cybs" ,
31
32
"log_maximum_size" : 10485760 ,
32
- "log_directory" : "../../cybersource_authentication_sdk_python/ Logs/" ,
33
- "proxy_address" : "userproxy.visa. com" ,
33
+ "log_directory" : os . path . join ( os . getcwd (), " Logs" ) ,
34
+ "proxy_address" : "userproxy.com" ,
34
35
"proxy_port" : ""
35
36
}
36
37
HTTP_DEFAULT_VALUES = {
@@ -40,14 +41,14 @@ class MockData:
40
41
"key_alias" : "testrest" ,
41
42
"key_password" : "testrest" ,
42
43
"key_file_name" : "testrest" ,
43
- "keys_directory" : "../../cybersource_authentication_sdk_python/Resources/" ,
44
+ "keys_directory" : os . path . join ( os . getcwd (), "resources" ) ,
44
45
"merchant_keyid" : "08c94330-f618-42a3-b09d-e1e43be5efda" ,
45
46
"merchant_secretkey" : "yBJxy6LjM2TmcPGu+GaJrHtkke25fPpUX+UY6/L/1tE=" ,
46
47
"enable_log" : "" ,
47
48
"log_file_name" : "cybs" ,
48
49
"log_maximum_size" : "" ,
49
50
"log_directory" : "" ,
50
- "proxy_address" : "userproxy.visa. com" ,
51
+ "proxy_address" : "userproxy.com" ,
51
52
"proxy_port" : ""
52
53
}
53
54
JWT_VALUES_FOR_PRODUCTION = {
@@ -60,11 +61,11 @@ class MockData:
60
61
"keys_directory" : "" ,
61
62
"merchant_keyid" : "08c94330-f618-42a3-b09d-e1e43be5efda" ,
62
63
"merchant_secretkey" : "yBJxy6LjM2TmcPGu+GaJrHtkke25fPpUX+UY6/L/1tE=" ,
63
- "enable_log" : True ,
64
+ "enable_log" : False ,
64
65
"log_file_name" : "cybs" ,
65
66
"log_maximum_size" : 10485760 ,
66
- "log_directory" : "../../cybersource_authentication_sdk_python/ Logs/" ,
67
- "proxy_address" : "userproxy.visa. com" ,
67
+ "log_directory" : os . path . join ( os . getcwd (), " Logs" ) ,
68
+ "proxy_address" : "userproxy.com" ,
68
69
"proxy_port" : ""
69
70
}
70
71
REQUEST_DATA = {
@@ -121,3 +122,16 @@ class MockData:
121
122
}
122
123
}
123
124
}
125
+ TRR_DATA = {
126
+ "startDay" : "23" ,
127
+ "timeZone" : "America/Chicago" ,
128
+ "reportDefinitionName" : "TransactionRequestClass" ,
129
+ "startTime" : "1100" ,
130
+ "reportFrequency" : "DAILY" ,
131
+ "ReportName" : "TRRReport" ,
132
+ "reportFormat" : "csv" ,
133
+ "orgId" : "testrest" ,
134
+ "reportType" : "detail" ,
135
+ "reportFields" : ["Request.RequestID" , "Request.TransactionDate" , "Request.MerchantReferenceNumber" ,
136
+ "Request.MerchantID" ]
137
+ }
0 commit comments