blockchyp 1.24.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Makefile +78 -0
- data/README.md +3917 -0
- data/Rakefile +39 -0
- data/lib/blockchyp/version.rb +5 -0
- data/lib/blockchyp.rb +462 -0
- data/lib/blockchyp_client.rb +416 -0
- data/lib/crypto_utils.rb +25 -0
- data/test/activate_terminal_test.rb +45 -0
- data/test/add_test_merchant_test.rb +56 -0
- data/test/batch_history_test.rb +54 -0
- data/test/boolean_prompt_test.rb +49 -0
- data/test/cancel_payment_link_test.rb +72 -0
- data/test/capture_signature_test.rb +46 -0
- data/test/deactivate_terminal_test.rb +42 -0
- data/test/delete_branding_asset_test.rb +50 -0
- data/test/delete_customer_test.rb +55 -0
- data/test/delete_media_asset_test.rb +53 -0
- data/test/delete_queued_transaction_test.rb +56 -0
- data/test/delete_slide_show_test.rb +50 -0
- data/test/delete_survey_question_test.rb +51 -0
- data/test/delete_test_merchant_test.rb +59 -0
- data/test/delete_token_test.rb +55 -0
- data/test/empty_branding_asset_test.rb +44 -0
- data/test/empty_slide_show_test.rb +45 -0
- data/test/gateway_timeout_test.rb +49 -0
- data/test/get_customer_test.rb +55 -0
- data/test/get_merchants_test.rb +52 -0
- data/test/heartbeat_test.rb +27 -0
- data/test/invite_merchant_user_test.rb +45 -0
- data/test/link_token_test.rb +56 -0
- data/test/list_queued_transactions_test.rb +55 -0
- data/test/list_terminals_test.rb +42 -0
- data/test/media_asset_test.rb +57 -0
- data/test/media_test.rb +42 -0
- data/test/media_upload_test.rb +52 -0
- data/test/merchant_platforms_test.rb +59 -0
- data/test/merchant_profile_test.rb +43 -0
- data/test/merchant_users_test.rb +42 -0
- data/test/new_transaction_display_test.rb +64 -0
- data/test/pan_charge_test.rb +61 -0
- data/test/pan_enroll_test.rb +62 -0
- data/test/pan_preauth_test.rb +60 -0
- data/test/partial_refund_test.rb +58 -0
- data/test/search_customer_test.rb +55 -0
- data/test/send_payment_link_test.rb +67 -0
- data/test/simple_batch_close_test.rb +54 -0
- data/test/simple_capture_test.rb +55 -0
- data/test/simple_gift_activate_test.rb +48 -0
- data/test/simple_locate_test.rb +44 -0
- data/test/simple_message_test.rb +46 -0
- data/test/simple_ping_test.rb +45 -0
- data/test/simple_refund_test.rb +57 -0
- data/test/simple_reversal_test.rb +56 -0
- data/test/simple_void_test.rb +56 -0
- data/test/slide_show_test.rb +51 -0
- data/test/slide_shows_test.rb +49 -0
- data/test/survey_question_test.rb +48 -0
- data/test/survey_questions_test.rb +50 -0
- data/test/survey_results_test.rb +48 -0
- data/test/tc_delete_template_test.rb +51 -0
- data/test/tc_entry_test.rb +56 -0
- data/test/tc_log_test.rb +42 -0
- data/test/tc_template_test.rb +53 -0
- data/test/tc_template_update_test.rb +48 -0
- data/test/tc_templates_test.rb +42 -0
- data/test/terminal_branding_test.rb +42 -0
- data/test/terminal_charge_test.rb +57 -0
- data/test/terminal_clear_test.rb +45 -0
- data/test/terminal_ebt_balance_test.rb +47 -0
- data/test/terminal_ebt_charge_test.rb +59 -0
- data/test/terminal_enroll_test.rb +56 -0
- data/test/terminal_gift_card_balance_test.rb +46 -0
- data/test/terminal_keyed_charge_test.rb +58 -0
- data/test/terminal_manual_ebt_charge_test.rb +60 -0
- data/test/terminal_preauth_test.rb +57 -0
- data/test/terminal_queued_transaction_test.rb +51 -0
- data/test/terminal_status_test.rb +45 -0
- data/test/terminal_timeout_test.rb +46 -0
- data/test/terms_and_conditions_test.rb +50 -0
- data/test/test_helper.rb +64 -0
- data/test/testdata/aviato.png +0 -0
- data/test/text_prompt_test.rb +47 -0
- data/test/token_metadata_test.rb +55 -0
- data/test/transaction_history_test.rb +54 -0
- data/test/unlink_token_test.rb +56 -0
- data/test/update_branding_asset_test.rb +62 -0
- data/test/update_customer_test.rb +49 -0
- data/test/update_merchant_platforms_test.rb +61 -0
- data/test/update_merchant_test.rb +60 -0
- data/test/update_slide_show_test.rb +60 -0
- data/test/update_survey_question_test.rb +47 -0
- data/test/update_transaction_display_test.rb +64 -0
- data/test/upload_status_test.rb +53 -0
- metadata +136 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2019-2022 BlockChyp, Inc. All rights reserved. Use of this code is
|
|
4
|
+
# governed by a license that can be found in the LICENSE file.
|
|
5
|
+
#
|
|
6
|
+
# This file was generated automatically by the BlockChyp SDK Generator.
|
|
7
|
+
# Changes to this file will be lost every time the code is regenerated.
|
|
8
|
+
|
|
9
|
+
require ::File.expand_path('test_helper', __dir__)
|
|
10
|
+
|
|
11
|
+
module BlockChyp
|
|
12
|
+
class UpdateSlideShowTest < TestCase
|
|
13
|
+
def test_update_slide_show
|
|
14
|
+
|
|
15
|
+
puts "Running test_update_slide_show..."
|
|
16
|
+
|
|
17
|
+
config = load_test_config
|
|
18
|
+
|
|
19
|
+
blockchyp = BlockChyp.new(
|
|
20
|
+
config[:apiKey],
|
|
21
|
+
config[:bearerToken],
|
|
22
|
+
config[:signingKey]
|
|
23
|
+
)
|
|
24
|
+
blockchyp.gateway_host = config[:gatewayHost]
|
|
25
|
+
blockchyp.test_gateway_host = config[:testGatewayHost]
|
|
26
|
+
blockchyp.dashboard_host = config[:dashboardHost]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
# Set request parameters
|
|
33
|
+
setup_request = {
|
|
34
|
+
fileName: 'aviato.png',
|
|
35
|
+
fileSize: 18843,
|
|
36
|
+
uploadId: uuid
|
|
37
|
+
}
|
|
38
|
+
file = File.open("test/testdata/aviato.png")
|
|
39
|
+
content = file.read
|
|
40
|
+
response = blockchyp.upload_media(setup_request, content)
|
|
41
|
+
|
|
42
|
+
# Set request parameters
|
|
43
|
+
request = {
|
|
44
|
+
name: 'Test Slide Show',
|
|
45
|
+
delay: 5,
|
|
46
|
+
slides: [
|
|
47
|
+
{
|
|
48
|
+
mediaId: response[:id]
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
response = blockchyp.update_slide_show(request)
|
|
54
|
+
assert_not_nil(response)
|
|
55
|
+
# response assertions
|
|
56
|
+
assert(response[:success])
|
|
57
|
+
assert_equal('Test Slide Show', response[:name])
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
end
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2019-2022 BlockChyp, Inc. All rights reserved. Use of this code is
|
|
4
|
+
# governed by a license that can be found in the LICENSE file.
|
|
5
|
+
#
|
|
6
|
+
# This file was generated automatically by the BlockChyp SDK Generator.
|
|
7
|
+
# Changes to this file will be lost every time the code is regenerated.
|
|
8
|
+
|
|
9
|
+
require ::File.expand_path('test_helper', __dir__)
|
|
10
|
+
|
|
11
|
+
module BlockChyp
|
|
12
|
+
class UpdateSurveyQuestionTest < TestCase
|
|
13
|
+
def test_update_survey_question
|
|
14
|
+
|
|
15
|
+
puts "Running test_update_survey_question..."
|
|
16
|
+
|
|
17
|
+
config = load_test_config
|
|
18
|
+
|
|
19
|
+
blockchyp = BlockChyp.new(
|
|
20
|
+
config[:apiKey],
|
|
21
|
+
config[:bearerToken],
|
|
22
|
+
config[:signingKey]
|
|
23
|
+
)
|
|
24
|
+
blockchyp.gateway_host = config[:gatewayHost]
|
|
25
|
+
blockchyp.test_gateway_host = config[:testGatewayHost]
|
|
26
|
+
blockchyp.dashboard_host = config[:dashboardHost]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
# Set request parameters
|
|
33
|
+
request = {
|
|
34
|
+
ordinal: 1,
|
|
35
|
+
questionText: 'Would you shop here again?',
|
|
36
|
+
questionType: 'yes_no'
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
response = blockchyp.update_survey_question(request)
|
|
40
|
+
assert_not_nil(response)
|
|
41
|
+
# response assertions
|
|
42
|
+
assert(response[:success])
|
|
43
|
+
assert_equal('Would you shop here again?', response[:questionText])
|
|
44
|
+
assert_equal('yes_no', response[:questionType])
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2019-2022 BlockChyp, Inc. All rights reserved. Use of this code is
|
|
4
|
+
# governed by a license that can be found in the LICENSE file.
|
|
5
|
+
#
|
|
6
|
+
# This file was generated automatically by the BlockChyp SDK Generator.
|
|
7
|
+
# Changes to this file will be lost every time the code is regenerated.
|
|
8
|
+
|
|
9
|
+
require ::File.expand_path('test_helper', __dir__)
|
|
10
|
+
|
|
11
|
+
module BlockChyp
|
|
12
|
+
class UpdateTransactionDisplayTest < TestCase
|
|
13
|
+
def test_update_transaction_display
|
|
14
|
+
|
|
15
|
+
puts "Running test_update_transaction_display..."
|
|
16
|
+
|
|
17
|
+
config = load_test_config
|
|
18
|
+
|
|
19
|
+
blockchyp = BlockChyp.new(
|
|
20
|
+
config[:apiKey],
|
|
21
|
+
config[:bearerToken],
|
|
22
|
+
config[:signingKey]
|
|
23
|
+
)
|
|
24
|
+
blockchyp.gateway_host = config[:gatewayHost]
|
|
25
|
+
blockchyp.test_gateway_host = config[:testGatewayHost]
|
|
26
|
+
blockchyp.dashboard_host = config[:dashboardHost]
|
|
27
|
+
|
|
28
|
+
test_delay(blockchyp, 'update_transaction_display_test', config[:defaultTerminalName])
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Set request parameters
|
|
34
|
+
request = {
|
|
35
|
+
test: true,
|
|
36
|
+
terminalName: config[:defaultTerminalName],
|
|
37
|
+
transaction: {
|
|
38
|
+
subtotal: '35.00',
|
|
39
|
+
tax: '5.00',
|
|
40
|
+
total: '70.00',
|
|
41
|
+
items: [
|
|
42
|
+
{
|
|
43
|
+
description: 'Leki Trekking Poles',
|
|
44
|
+
price: '35.00',
|
|
45
|
+
quantity: 2,
|
|
46
|
+
extended: '70.00',
|
|
47
|
+
discounts: [
|
|
48
|
+
{
|
|
49
|
+
description: 'memberDiscount',
|
|
50
|
+
amount: '10.00'
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
response = blockchyp.update_transaction_display(request)
|
|
59
|
+
assert_not_nil(response)
|
|
60
|
+
# response assertions
|
|
61
|
+
assert(response[:success])
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
end
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2019-2022 BlockChyp, Inc. All rights reserved. Use of this code is
|
|
4
|
+
# governed by a license that can be found in the LICENSE file.
|
|
5
|
+
#
|
|
6
|
+
# This file was generated automatically by the BlockChyp SDK Generator.
|
|
7
|
+
# Changes to this file will be lost every time the code is regenerated.
|
|
8
|
+
|
|
9
|
+
require ::File.expand_path('test_helper', __dir__)
|
|
10
|
+
|
|
11
|
+
module BlockChyp
|
|
12
|
+
class UploadStatusTest < TestCase
|
|
13
|
+
def test_upload_status
|
|
14
|
+
|
|
15
|
+
puts "Running test_upload_status..."
|
|
16
|
+
|
|
17
|
+
config = load_test_config
|
|
18
|
+
|
|
19
|
+
blockchyp = BlockChyp.new(
|
|
20
|
+
config[:apiKey],
|
|
21
|
+
config[:bearerToken],
|
|
22
|
+
config[:signingKey]
|
|
23
|
+
)
|
|
24
|
+
blockchyp.gateway_host = config[:gatewayHost]
|
|
25
|
+
blockchyp.test_gateway_host = config[:testGatewayHost]
|
|
26
|
+
blockchyp.dashboard_host = config[:dashboardHost]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
# Set request parameters
|
|
33
|
+
setup_request = {
|
|
34
|
+
fileName: 'aviato.png',
|
|
35
|
+
fileSize: 18843,
|
|
36
|
+
uploadId: uuid
|
|
37
|
+
}
|
|
38
|
+
file = File.open("test/testdata/aviato.png")
|
|
39
|
+
content = file.read
|
|
40
|
+
response = blockchyp.upload_media(setup_request, content)
|
|
41
|
+
|
|
42
|
+
# Set request parameters
|
|
43
|
+
request = {
|
|
44
|
+
uploadId: setup_request[:uploadId]
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
response = blockchyp.upload_status(request)
|
|
48
|
+
assert_not_nil(response)
|
|
49
|
+
# response assertions
|
|
50
|
+
assert(response[:success])
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: blockchyp
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.24.4
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- BlockChyp
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2022-09-29 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description:
|
|
14
|
+
email:
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- Makefile
|
|
20
|
+
- README.md
|
|
21
|
+
- Rakefile
|
|
22
|
+
- lib/blockchyp.rb
|
|
23
|
+
- lib/blockchyp/version.rb
|
|
24
|
+
- lib/blockchyp_client.rb
|
|
25
|
+
- lib/crypto_utils.rb
|
|
26
|
+
- test/activate_terminal_test.rb
|
|
27
|
+
- test/add_test_merchant_test.rb
|
|
28
|
+
- test/batch_history_test.rb
|
|
29
|
+
- test/boolean_prompt_test.rb
|
|
30
|
+
- test/cancel_payment_link_test.rb
|
|
31
|
+
- test/capture_signature_test.rb
|
|
32
|
+
- test/deactivate_terminal_test.rb
|
|
33
|
+
- test/delete_branding_asset_test.rb
|
|
34
|
+
- test/delete_customer_test.rb
|
|
35
|
+
- test/delete_media_asset_test.rb
|
|
36
|
+
- test/delete_queued_transaction_test.rb
|
|
37
|
+
- test/delete_slide_show_test.rb
|
|
38
|
+
- test/delete_survey_question_test.rb
|
|
39
|
+
- test/delete_test_merchant_test.rb
|
|
40
|
+
- test/delete_token_test.rb
|
|
41
|
+
- test/empty_branding_asset_test.rb
|
|
42
|
+
- test/empty_slide_show_test.rb
|
|
43
|
+
- test/gateway_timeout_test.rb
|
|
44
|
+
- test/get_customer_test.rb
|
|
45
|
+
- test/get_merchants_test.rb
|
|
46
|
+
- test/heartbeat_test.rb
|
|
47
|
+
- test/invite_merchant_user_test.rb
|
|
48
|
+
- test/link_token_test.rb
|
|
49
|
+
- test/list_queued_transactions_test.rb
|
|
50
|
+
- test/list_terminals_test.rb
|
|
51
|
+
- test/media_asset_test.rb
|
|
52
|
+
- test/media_test.rb
|
|
53
|
+
- test/media_upload_test.rb
|
|
54
|
+
- test/merchant_platforms_test.rb
|
|
55
|
+
- test/merchant_profile_test.rb
|
|
56
|
+
- test/merchant_users_test.rb
|
|
57
|
+
- test/new_transaction_display_test.rb
|
|
58
|
+
- test/pan_charge_test.rb
|
|
59
|
+
- test/pan_enroll_test.rb
|
|
60
|
+
- test/pan_preauth_test.rb
|
|
61
|
+
- test/partial_refund_test.rb
|
|
62
|
+
- test/search_customer_test.rb
|
|
63
|
+
- test/send_payment_link_test.rb
|
|
64
|
+
- test/simple_batch_close_test.rb
|
|
65
|
+
- test/simple_capture_test.rb
|
|
66
|
+
- test/simple_gift_activate_test.rb
|
|
67
|
+
- test/simple_locate_test.rb
|
|
68
|
+
- test/simple_message_test.rb
|
|
69
|
+
- test/simple_ping_test.rb
|
|
70
|
+
- test/simple_refund_test.rb
|
|
71
|
+
- test/simple_reversal_test.rb
|
|
72
|
+
- test/simple_void_test.rb
|
|
73
|
+
- test/slide_show_test.rb
|
|
74
|
+
- test/slide_shows_test.rb
|
|
75
|
+
- test/survey_question_test.rb
|
|
76
|
+
- test/survey_questions_test.rb
|
|
77
|
+
- test/survey_results_test.rb
|
|
78
|
+
- test/tc_delete_template_test.rb
|
|
79
|
+
- test/tc_entry_test.rb
|
|
80
|
+
- test/tc_log_test.rb
|
|
81
|
+
- test/tc_template_test.rb
|
|
82
|
+
- test/tc_template_update_test.rb
|
|
83
|
+
- test/tc_templates_test.rb
|
|
84
|
+
- test/terminal_branding_test.rb
|
|
85
|
+
- test/terminal_charge_test.rb
|
|
86
|
+
- test/terminal_clear_test.rb
|
|
87
|
+
- test/terminal_ebt_balance_test.rb
|
|
88
|
+
- test/terminal_ebt_charge_test.rb
|
|
89
|
+
- test/terminal_enroll_test.rb
|
|
90
|
+
- test/terminal_gift_card_balance_test.rb
|
|
91
|
+
- test/terminal_keyed_charge_test.rb
|
|
92
|
+
- test/terminal_manual_ebt_charge_test.rb
|
|
93
|
+
- test/terminal_preauth_test.rb
|
|
94
|
+
- test/terminal_queued_transaction_test.rb
|
|
95
|
+
- test/terminal_status_test.rb
|
|
96
|
+
- test/terminal_timeout_test.rb
|
|
97
|
+
- test/terms_and_conditions_test.rb
|
|
98
|
+
- test/test_helper.rb
|
|
99
|
+
- test/testdata/aviato.png
|
|
100
|
+
- test/text_prompt_test.rb
|
|
101
|
+
- test/token_metadata_test.rb
|
|
102
|
+
- test/transaction_history_test.rb
|
|
103
|
+
- test/unlink_token_test.rb
|
|
104
|
+
- test/update_branding_asset_test.rb
|
|
105
|
+
- test/update_customer_test.rb
|
|
106
|
+
- test/update_merchant_platforms_test.rb
|
|
107
|
+
- test/update_merchant_test.rb
|
|
108
|
+
- test/update_slide_show_test.rb
|
|
109
|
+
- test/update_survey_question_test.rb
|
|
110
|
+
- test/update_transaction_display_test.rb
|
|
111
|
+
- test/upload_status_test.rb
|
|
112
|
+
homepage: https://github.com/blockchyp/blockchyp-ruby
|
|
113
|
+
licenses:
|
|
114
|
+
- MIT
|
|
115
|
+
metadata:
|
|
116
|
+
github_repo: ssh://github.com/blockchyp/blockchyp-ruby.git
|
|
117
|
+
post_install_message:
|
|
118
|
+
rdoc_options: []
|
|
119
|
+
require_paths:
|
|
120
|
+
- lib
|
|
121
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
122
|
+
requirements:
|
|
123
|
+
- - ">="
|
|
124
|
+
- !ruby/object:Gem::Version
|
|
125
|
+
version: 2.3.0
|
|
126
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - ">="
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '0'
|
|
131
|
+
requirements: []
|
|
132
|
+
rubygems_version: 3.0.3.1
|
|
133
|
+
signing_key:
|
|
134
|
+
specification_version: 4
|
|
135
|
+
summary: BlockChyp Ruby SDK
|
|
136
|
+
test_files: []
|