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,48 @@
|
|
|
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 TCTemplateUpdateTest < TestCase
|
|
13
|
+
def test_tc_template_update
|
|
14
|
+
|
|
15
|
+
puts "Running test_tc_template_update..."
|
|
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
|
+
alias: uuid,
|
|
35
|
+
name: 'HIPPA Disclosure',
|
|
36
|
+
content: 'Lorem ipsum dolor sit amet.'
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
response = blockchyp.tc_update_template(request)
|
|
40
|
+
assert_not_nil(response)
|
|
41
|
+
# response assertions
|
|
42
|
+
assert(response[:success])
|
|
43
|
+
assert(!response[:alias].empty?)
|
|
44
|
+
assert_equal('HIPPA Disclosure', response[:name])
|
|
45
|
+
assert_equal('Lorem ipsum dolor sit amet.', response[:content])
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
end
|
|
@@ -0,0 +1,42 @@
|
|
|
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 TCTemplatesTest < TestCase
|
|
13
|
+
def test_tc_templates
|
|
14
|
+
|
|
15
|
+
puts "Running test_tc_templates..."
|
|
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
|
+
}
|
|
35
|
+
|
|
36
|
+
response = blockchyp.tc_templates(request)
|
|
37
|
+
assert_not_nil(response)
|
|
38
|
+
# response assertions
|
|
39
|
+
assert(response[:success])
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
@@ -0,0 +1,42 @@
|
|
|
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 TerminalBrandingTest < TestCase
|
|
13
|
+
def test_terminal_branding
|
|
14
|
+
|
|
15
|
+
puts "Running test_terminal_branding..."
|
|
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
|
+
}
|
|
35
|
+
|
|
36
|
+
response = blockchyp.terminal_branding(request)
|
|
37
|
+
assert_not_nil(response)
|
|
38
|
+
# response assertions
|
|
39
|
+
assert(response[:success])
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
@@ -0,0 +1,57 @@
|
|
|
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 TerminalChargeTest < TestCase
|
|
13
|
+
def test_terminal_charge
|
|
14
|
+
|
|
15
|
+
puts "Running test_terminal_charge..."
|
|
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, 'terminal_charge_test', config[:defaultTerminalName])
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Set request parameters
|
|
34
|
+
request = {
|
|
35
|
+
terminalName: config[:defaultTerminalName],
|
|
36
|
+
amount: '25.15',
|
|
37
|
+
test: true
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
response = blockchyp.charge(request)
|
|
41
|
+
assert_not_nil(response)
|
|
42
|
+
# response assertions
|
|
43
|
+
assert(response[:success])
|
|
44
|
+
assert(response[:approved])
|
|
45
|
+
assert(response[:test])
|
|
46
|
+
assert_equal(response[:authCode].length, 6)
|
|
47
|
+
assert(!response[:transactionId].empty?)
|
|
48
|
+
assert(!response[:timestamp].empty?)
|
|
49
|
+
assert(!response[:tickBlock].empty?)
|
|
50
|
+
assert_equal('approved', response[:responseDescription])
|
|
51
|
+
assert(!response[:paymentType].empty?)
|
|
52
|
+
assert(!response[:maskedPan].empty?)
|
|
53
|
+
assert(!response[:entryMethod].empty?)
|
|
54
|
+
assert_equal('25.15', response[:authorizedAmount])
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
@@ -0,0 +1,45 @@
|
|
|
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 TerminalClearTest < TestCase
|
|
13
|
+
def test_terminal_clear
|
|
14
|
+
|
|
15
|
+
puts "Running test_terminal_clear..."
|
|
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, 'terminal_clear_test', config[:defaultTerminalName])
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Set request parameters
|
|
34
|
+
request = {
|
|
35
|
+
test: true,
|
|
36
|
+
terminalName: config[:defaultTerminalName]
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
response = blockchyp.clear(request)
|
|
40
|
+
assert_not_nil(response)
|
|
41
|
+
# response assertions
|
|
42
|
+
assert(response[:success])
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
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 TerminalEBTBalanceTest < TestCase
|
|
13
|
+
def test_terminal_ebt_balance
|
|
14
|
+
|
|
15
|
+
puts "Running test_terminal_ebt_balance..."
|
|
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, 'terminal_ebt_balance_test', config[:defaultTerminalName])
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Set request parameters
|
|
34
|
+
request = {
|
|
35
|
+
test: true,
|
|
36
|
+
terminalName: config[:defaultTerminalName],
|
|
37
|
+
cardType: CardType::EBT
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
response = blockchyp.balance(request)
|
|
41
|
+
assert_not_nil(response)
|
|
42
|
+
# response assertions
|
|
43
|
+
assert(response[:success])
|
|
44
|
+
assert(!response[:remainingBalance].empty?)
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
@@ -0,0 +1,59 @@
|
|
|
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 TerminalEBTChargeTest < TestCase
|
|
13
|
+
def test_terminal_ebt_charge
|
|
14
|
+
|
|
15
|
+
puts "Running test_terminal_ebt_charge..."
|
|
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, 'terminal_ebt_charge_test', config[:defaultTerminalName])
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Set request parameters
|
|
34
|
+
request = {
|
|
35
|
+
terminalName: config[:defaultTerminalName],
|
|
36
|
+
amount: '25.00',
|
|
37
|
+
test: true,
|
|
38
|
+
cardType: CardType::EBT
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
response = blockchyp.charge(request)
|
|
42
|
+
assert_not_nil(response)
|
|
43
|
+
# response assertions
|
|
44
|
+
assert(response[:success])
|
|
45
|
+
assert(response[:approved])
|
|
46
|
+
assert(response[:test])
|
|
47
|
+
assert_equal(response[:authCode].length, 6)
|
|
48
|
+
assert(!response[:transactionId].empty?)
|
|
49
|
+
assert(!response[:timestamp].empty?)
|
|
50
|
+
assert(!response[:tickBlock].empty?)
|
|
51
|
+
assert_equal('approved', response[:responseDescription])
|
|
52
|
+
assert(!response[:paymentType].empty?)
|
|
53
|
+
assert(!response[:maskedPan].empty?)
|
|
54
|
+
assert(!response[:entryMethod].empty?)
|
|
55
|
+
assert_equal('25.00', response[:authorizedAmount])
|
|
56
|
+
assert_equal('75.00', response[:remainingBalance])
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
end
|
|
@@ -0,0 +1,56 @@
|
|
|
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 TerminalEnrollTest < TestCase
|
|
13
|
+
def test_terminal_enroll
|
|
14
|
+
|
|
15
|
+
puts "Running test_terminal_enroll..."
|
|
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, 'terminal_enroll_test', config[:defaultTerminalName])
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Set request parameters
|
|
34
|
+
request = {
|
|
35
|
+
terminalName: config[:defaultTerminalName],
|
|
36
|
+
test: true
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
response = blockchyp.enroll(request)
|
|
40
|
+
assert_not_nil(response)
|
|
41
|
+
# response assertions
|
|
42
|
+
assert(response[:success])
|
|
43
|
+
assert(response[:approved])
|
|
44
|
+
assert(response[:test])
|
|
45
|
+
assert_equal(response[:authCode].length, 6)
|
|
46
|
+
assert(!response[:transactionId].empty?)
|
|
47
|
+
assert(!response[:timestamp].empty?)
|
|
48
|
+
assert(!response[:tickBlock].empty?)
|
|
49
|
+
assert_equal('approved', response[:responseDescription])
|
|
50
|
+
assert(!response[:paymentType].empty?)
|
|
51
|
+
assert(!response[:maskedPan].empty?)
|
|
52
|
+
assert(!response[:entryMethod].empty?)
|
|
53
|
+
assert(!response[:token].empty?)
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
end
|
|
@@ -0,0 +1,46 @@
|
|
|
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 TerminalGiftCardBalanceTest < TestCase
|
|
13
|
+
def test_terminal_gift_card_balance
|
|
14
|
+
|
|
15
|
+
puts "Running test_terminal_gift_card_balance..."
|
|
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, 'terminal_gift_card_balance_test', config[:defaultTerminalName])
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Set request parameters
|
|
34
|
+
request = {
|
|
35
|
+
test: true,
|
|
36
|
+
terminalName: config[:defaultTerminalName]
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
response = blockchyp.balance(request)
|
|
40
|
+
assert_not_nil(response)
|
|
41
|
+
# response assertions
|
|
42
|
+
assert(response[:success])
|
|
43
|
+
assert(!response[:remainingBalance].empty?)
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
@@ -0,0 +1,58 @@
|
|
|
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 TerminalKeyedChargeTest < TestCase
|
|
13
|
+
def test_terminal_keyed_charge
|
|
14
|
+
|
|
15
|
+
puts "Running test_terminal_keyed_charge..."
|
|
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, 'terminal_keyed_charge_test', config[:defaultTerminalName])
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Set request parameters
|
|
34
|
+
request = {
|
|
35
|
+
terminalName: config[:defaultTerminalName],
|
|
36
|
+
amount: '11.11',
|
|
37
|
+
manualEntry: true,
|
|
38
|
+
test: true
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
response = blockchyp.charge(request)
|
|
42
|
+
assert_not_nil(response)
|
|
43
|
+
# response assertions
|
|
44
|
+
assert(response[:success])
|
|
45
|
+
assert(response[:approved])
|
|
46
|
+
assert(response[:test])
|
|
47
|
+
assert_equal(response[:authCode].length, 6)
|
|
48
|
+
assert(!response[:transactionId].empty?)
|
|
49
|
+
assert(!response[:timestamp].empty?)
|
|
50
|
+
assert(!response[:tickBlock].empty?)
|
|
51
|
+
assert_equal('approved', response[:responseDescription])
|
|
52
|
+
assert(!response[:paymentType].empty?)
|
|
53
|
+
assert(!response[:maskedPan].empty?)
|
|
54
|
+
assert(!response[:entryMethod].empty?)
|
|
55
|
+
assert_equal('11.11', response[:authorizedAmount])
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
end
|
|
@@ -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 TerminalManualEBTChargeTest < TestCase
|
|
13
|
+
def test_terminal_manual_ebt_charge
|
|
14
|
+
|
|
15
|
+
puts "Running test_terminal_manual_ebt_charge..."
|
|
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, 'terminal_manual_ebt_charge_test', config[:defaultTerminalName])
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Set request parameters
|
|
34
|
+
request = {
|
|
35
|
+
terminalName: config[:defaultTerminalName],
|
|
36
|
+
amount: '27.00',
|
|
37
|
+
test: true,
|
|
38
|
+
cardType: CardType::EBT,
|
|
39
|
+
manualEntry: true
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
response = blockchyp.charge(request)
|
|
43
|
+
assert_not_nil(response)
|
|
44
|
+
# response assertions
|
|
45
|
+
assert(response[:success])
|
|
46
|
+
assert(response[:approved])
|
|
47
|
+
assert(response[:test])
|
|
48
|
+
assert_equal(response[:authCode].length, 6)
|
|
49
|
+
assert(!response[:transactionId].empty?)
|
|
50
|
+
assert(!response[:timestamp].empty?)
|
|
51
|
+
assert(!response[:tickBlock].empty?)
|
|
52
|
+
assert_equal('approved', response[:responseDescription])
|
|
53
|
+
assert(!response[:paymentType].empty?)
|
|
54
|
+
assert(!response[:maskedPan].empty?)
|
|
55
|
+
assert(!response[:entryMethod].empty?)
|
|
56
|
+
assert_equal('27.00', response[:authorizedAmount])
|
|
57
|
+
assert_equal('73.00', response[:remainingBalance])
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
end
|
|
@@ -0,0 +1,57 @@
|
|
|
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 TerminalPreauthTest < TestCase
|
|
13
|
+
def test_terminal_preauth
|
|
14
|
+
|
|
15
|
+
puts "Running test_terminal_preauth..."
|
|
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, 'terminal_preauth_test', config[:defaultTerminalName])
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Set request parameters
|
|
34
|
+
request = {
|
|
35
|
+
terminalName: config[:defaultTerminalName],
|
|
36
|
+
amount: '15.15',
|
|
37
|
+
test: true
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
response = blockchyp.preauth(request)
|
|
41
|
+
assert_not_nil(response)
|
|
42
|
+
# response assertions
|
|
43
|
+
assert(response[:success])
|
|
44
|
+
assert(response[:approved])
|
|
45
|
+
assert(response[:test])
|
|
46
|
+
assert_equal(response[:authCode].length, 6)
|
|
47
|
+
assert(!response[:transactionId].empty?)
|
|
48
|
+
assert(!response[:timestamp].empty?)
|
|
49
|
+
assert(!response[:tickBlock].empty?)
|
|
50
|
+
assert_equal('approved', response[:responseDescription])
|
|
51
|
+
assert(!response[:paymentType].empty?)
|
|
52
|
+
assert(!response[:maskedPan].empty?)
|
|
53
|
+
assert(!response[:entryMethod].empty?)
|
|
54
|
+
assert_equal('15.15', response[:authorizedAmount])
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
@@ -0,0 +1,51 @@
|
|
|
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 TerminalQueuedTransactionTest < TestCase
|
|
13
|
+
def test_terminal_queued_transaction
|
|
14
|
+
|
|
15
|
+
puts "Running test_terminal_queued_transaction..."
|
|
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, 'terminal_queued_transaction_test', config[:defaultTerminalName])
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Set request parameters
|
|
34
|
+
request = {
|
|
35
|
+
terminalName: config[:defaultTerminalName],
|
|
36
|
+
transactionRef: uuid,
|
|
37
|
+
description: '1060 West Addison',
|
|
38
|
+
amount: '25.15',
|
|
39
|
+
test: true,
|
|
40
|
+
queue: true
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
response = blockchyp.charge(request)
|
|
44
|
+
assert_not_nil(response)
|
|
45
|
+
# response assertions
|
|
46
|
+
assert(response[:success])
|
|
47
|
+
assert(!response[:approved])
|
|
48
|
+
assert_equal('Queued', response[:responseDescription])
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
end
|