-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #283 from blockchyp/develop
Develop
- Loading branch information
1 parent
47c3438
commit b90b0c6
Showing
5 changed files
with
237 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ | |
|
||
// Populate request values | ||
$request = [ | ||
'merchantId' => '<MERCHANT ID>', | ||
]; | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
// For composer based systems | ||
require_once('vendor/autoload.php'); | ||
|
||
// For manual installation | ||
#require_once('/path/to/blockchyp/init.php'); | ||
|
||
use BlockChyp\BlockChyp; | ||
|
||
BlockChyp::setApiKey(getenv('BC_API_KEY')); | ||
BlockChyp::setBearerToken(getenv('BC_BEARER_TOKEN')); | ||
BlockChyp::setSigningKey(getenv('BC_SIGNING_KEY')); | ||
|
||
// Populate request values | ||
$request = [ | ||
]; | ||
|
||
|
||
$response = BlockChyp::submitApplication($request); | ||
|
||
|
||
// View the result | ||
echo 'Response: ' . print_r($response, true) . PHP_EOL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
<?php | ||
|
||
use BlockChyp\BlockChyp; | ||
|
||
require_once(__DIR__ . '/../BlockChypTestCase.php'); | ||
|
||
class SubmitApplicationTest extends BlockChypTestCase | ||
{ | ||
|
||
/** | ||
* @group itest | ||
*/ | ||
public function testSubmitApplication() | ||
{ | ||
$config = $this->loadTestConfiguration(); | ||
|
||
BlockChyp::setApiKey($config->apiKey); | ||
BlockChyp::setBearerToken($config->bearerToken); | ||
BlockChyp::setSigningKey($config->signingKey); | ||
BlockChyp::setGatewayHost($config->gatewayHost); | ||
BlockChyp::setTestGatewayHost($config->testGatewayHost); | ||
BlockChyp::setDashboardHost($config->dashboardHost); | ||
|
||
echo 'Running SubmitApplicationTest...' . PHP_EOL; | ||
$profile = $config->profiles->partner; | ||
if (!empty($profile)) { | ||
BlockChyp::setApiKey($profile->apiKey); | ||
BlockChyp::setBearerToken($profile->bearerToken); | ||
BlockChyp::setSigningKey($profile->signingKey); | ||
} | ||
// Set request values | ||
$request = [ | ||
'test' => true, | ||
'inviteCode' => 'asdf', | ||
'dbaName' => 'BlockChyp', | ||
'corporateName' => 'BlockChyp Inc.', | ||
'webSite' => 'https://www.blockchyp.com', | ||
'taxIdNumber' => '123456789', | ||
'entityType' => 'CORPORATION', | ||
'stateOfIncorporation' => 'UT', | ||
'merchantType' => 'RETAIL', | ||
'businessDescription' => 'Payment processing solutions', | ||
'yearsInBusiness' => '5', | ||
'businessPhoneNumber' => '5555551234', | ||
'physicalAddress' => [ | ||
'address1' => '355 S 520 W', | ||
'city' => 'Lindon', | ||
'stateOrProvince' => 'UT', | ||
'postalCode' => '84042', | ||
'countryCode' => 'US', | ||
], | ||
'mailingAddress' => [ | ||
'address1' => '355 S 520 W', | ||
'city' => 'Lindon', | ||
'stateOrProvince' => 'UT', | ||
'postalCode' => '84042', | ||
'countryCode' => 'US', | ||
], | ||
'contactFirstName' => 'John', | ||
'contactLastName' => 'Doe', | ||
'contactPhoneNumber' => '5555555678', | ||
'contactEmail' => '[email protected]', | ||
'contactTitle' => 'CEO', | ||
'contactTaxIdNumber' => '987654321', | ||
'contactDOB' => '1980-01-01', | ||
'contactDlNumber' => 'D1234567', | ||
'contactDlStateOrProvince' => 'NY', | ||
'contactDlExpiration' => '2025-12-31', | ||
'contactHomeAddress' => [ | ||
'address1' => '355 S 520 W', | ||
'city' => 'Lindon', | ||
'stateOrProvince' => 'UT', | ||
'postalCode' => '84042', | ||
'countryCode' => 'US', | ||
], | ||
'contactRole' => 'OWNER', | ||
'owners' => [ | ||
[ | ||
'firstName' => 'John', | ||
'lastName' => 'Doe', | ||
'jobTitle' => 'CEO', | ||
'taxIdNumber' => '876543210', | ||
'phoneNumber' => '5555559876', | ||
'dob' => '1981-02-02', | ||
'ownership' => '50', | ||
'email' => '[email protected]', | ||
'dlNumber' => 'D7654321', | ||
'dlStateOrProvince' => 'UT', | ||
'dlExpiration' => '2024-12-31', | ||
'address' => [ | ||
'address1' => '355 S 520 W', | ||
'city' => 'Lindon', | ||
'stateOrProvince' => 'UT', | ||
'postalCode' => '84042', | ||
'countryCode' => 'US', | ||
], | ||
], | ||
], | ||
'manualAccount' => [ | ||
'name' => 'Business Checking', | ||
'bank' => 'Test Bank', | ||
'accountHolderName' => 'BlockChyp Inc.', | ||
'routingNumber' => '124001545', | ||
'accountNumber' => '987654321', | ||
], | ||
'averageTransaction' => '100.00', | ||
'highTransaction' => '1000.00', | ||
'averageMonth' => '10000.00', | ||
'highMonth' => '20000.00', | ||
'refundPolicy' => '30_DAYS', | ||
'refundDays' => '30', | ||
'timeZone' => 'America/Denver', | ||
'batchCloseTime' => '23:59', | ||
'multipleLocations' => 'false', | ||
'ebtRequested' => 'false', | ||
'ecommerce' => 'true', | ||
'cardPresentPercentage' => '70', | ||
'phoneOrderPercentage' => '10', | ||
'ecomPercentage' => '20', | ||
'signerName' => 'John Doe', | ||
]; | ||
|
||
// self::logRequest($request); | ||
|
||
try { | ||
|
||
$response = BlockChyp::submitApplication($request); | ||
|
||
// self::logResponse($response); | ||
|
||
// Response assertions | ||
|
||
$this->assertTrue($response['success']); | ||
|
||
} catch (Exception $ex) { | ||
|
||
echo $ex->getTraceAsString(); | ||
$this->assertEmpty($ex); | ||
|
||
} | ||
$this->processResponseDelay($request); | ||
} | ||
} |