diff --git a/generator/cybersource-php-template/ApiClient.mustache b/generator/cybersource-php-template/ApiClient.mustache index 34601dde..4b0a1bbe 100644 --- a/generator/cybersource-php-template/ApiClient.mustache +++ b/generator/cybersource-php-template/ApiClient.mustache @@ -235,7 +235,7 @@ class ApiClient // debugging for curl if ($this->config->getDebug()) { - //$postData = $this->dataMasking($postData); + $postData = $this->dataMasking($postData); error_log("[DEBUG] HTTP Request body ~BEGIN~".PHP_EOL.print_r($postData, true).PHP_EOL."~END~".PHP_EOL, 3, $this->config->getDebugFile()); curl_setopt($curl, CURLOPT_VERBOSE, 1); @@ -252,7 +252,7 @@ class ApiClient $http_header_size = curl_getinfo($curl, CURLINFO_HEADER_SIZE); $http_header = $this->httpParseHeaders(substr($response, 0, $http_header_size)); $http_body = substr($response, $http_header_size); - //$http_body = $this->dataMasking($http_body); + $http_body = $this->dataMasking($http_body); $response_info = curl_getinfo($curl); // debug HTTP response body diff --git a/lib/ApiClient.php b/lib/ApiClient.php index 768e8fa5..3305d229 100644 --- a/lib/ApiClient.php +++ b/lib/ApiClient.php @@ -31,7 +31,6 @@ use CyberSource\Authentication\Core\Authentication as Authentication; use CyberSource\Authentication\Util\GlobalParameter as GlobalParameter; use CyberSource\Authentication\PayloadDigest\PayloadDigest as PayloadDigest; - /** * ApiClient Class Doc Comment * @@ -147,12 +146,12 @@ public function callApi($resourcePath, $method, $queryParams, $postData, $header (array)$this->config->getDefaultHeaders(), (array)$headerParams ); - - if (!empty($queryParams)) { + + if (!empty($queryParams)) { $resourcePath = ($resourcePath . '?' . http_build_query($queryParams)); $queryParams=null; } - + foreach ($headerParams as $key => $val) { $headers[] = "$key: $val"; } @@ -163,10 +162,13 @@ public function callApi($resourcePath, $method, $queryParams, $postData, $header } elseif ((is_object($postData) or is_array($postData)) and !in_array('Content-Type: multipart/form-data', $headers, true)) { // json model $postData = json_encode(\CyberSource\ObjectSerializer::sanitizeForSerialization($postData)); } - $resourcePath= utf8_encode($resourcePath); - $authHeader = $this->callAuthenticationHeader($method, $postData, $resourcePath); + $resourcePath= utf8_encode($resourcePath); + $authHeader = $this->callAuthenticationHeader($method, $postData, $resourcePath); $headers = array_merge($headers, $authHeader); - print_r($headers); + foreach ($headers as $value) { + $splitArr= explode(":", $value, 2); + $this->config->addRequestHeader($splitArr[0], $splitArr[1]); + } $url = GlobalParameter::HTTPS_PREFIX.$this->config->getHost() . $resourcePath; $curl = curl_init(); @@ -183,6 +185,7 @@ public function callApi($resourcePath, $method, $queryParams, $postData, $header curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); + // disable SSL verification, if needed if ($this->config->getSSLVerification() === false) { curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); @@ -210,7 +213,7 @@ public function callApi($resourcePath, $method, $queryParams, $postData, $header if (!empty($queryParams)) { $url = ($url . '?' . http_build_query($queryParams)); } - + if ($this->config->getAllowEncoding()) { curl_setopt($curl, CURLOPT_ENCODING, ''); } @@ -242,6 +245,8 @@ public function callApi($resourcePath, $method, $queryParams, $postData, $header // debugging for curl if ($this->config->getDebug()) { + //Added Infy for masking request + $postData = $this->dataMasking($postData); error_log("[DEBUG] HTTP Request body ~BEGIN~".PHP_EOL.print_r($postData, true).PHP_EOL."~END~".PHP_EOL, 3, $this->config->getDebugFile()); curl_setopt($curl, CURLOPT_VERBOSE, 1); @@ -258,6 +263,8 @@ public function callApi($resourcePath, $method, $queryParams, $postData, $header $http_header_size = curl_getinfo($curl, CURLINFO_HEADER_SIZE); $http_header = $this->httpParseHeaders(substr($response, 0, $http_header_size)); $http_body = substr($response, $http_header_size); + //Added Infy for masking response + $http_body = $this->dataMasking($http_body); $response_info = curl_getinfo($curl); // debug HTTP response body @@ -383,12 +390,11 @@ protected function httpParseHeaders($raw_headers) /* * Purpose : This function calling the Authentication and making an Auth Header - * + * Added infy Authentication SDK */ public function callAuthenticationHeader($method, $postData, $resourcePath) { - require_once 'Resources/ExternalConfiguration.php'; - + require_once './Resources/ExternalConfiguration.php'; $ExternalConfigurationObj = new ExternalConfiguration(); $merchantConfig = $ExternalConfigurationObj->merchantConfigObject(); $authentication = new Authentication(); @@ -420,5 +426,44 @@ public function callAuthenticationHeader($method, $postData, $resourcePath) } return $headers; + } + //set Fields to be mask + //Added infy for masking + public function dataMasking($postData_json_raw) + { + $toBeMask = array("email"=>"XXXXX","firstName"=>"XXXXX","lastName"=>"XXXXX","phoneNumber"=>"XXXXX","type"=>"XXXXX","securityCode"=>"XXXXX"); + + $postData_json = json_decode($postData_json_raw, JSON_UNESCAPED_SLASHES); + if($postData_json == null){ + return $postData_json_raw; + }else { + $postData_json = $this->dataMaskingIterate($postData_json, $toBeMask); + return json_encode($postData_json); + + } + + } + + //Data masking iteration + //Added infy for masking + public function dataMaskingIterate($responceArr, $callback) + { + if(!empty($responceArr)){ + foreach ($responceArr as $k => $v) + { + if(is_array($v)) { + $responceArr[$k] = $this->dataMaskingIterate($v, $callback); + } + else + { + if(array_key_exists($k, $callback)) + { + $responceArr[$k]="XXXXXX"; + } + } + } + } + return $responceArr; + } } diff --git a/lib/Authentication/Log/Logger.php b/lib/Authentication/Log/Logger.php index e0e1aaa0..d7167a07 100644 --- a/lib/Authentication/Log/Logger.php +++ b/lib/Authentication/Log/Logger.php @@ -42,8 +42,9 @@ private function rotateLogFile($path, $fileName, $logSize) { if($fileMemory >= $logSize){ $updateOldFile = $path."Cybs_".date("YmdHis").".log"; rename($filePath, $updateOldFile); + fopen($filePath, "w"); } - fopen($filePath, "w"); + } } diff --git a/lib/Configuration.php b/lib/Configuration.php index 5244e6c1..cc588b5c 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -82,6 +82,13 @@ class Configuration * @var array */ protected $defaultHeaders = []; + + /** + * The default header(s) + * + * @var array + */ + protected $requestHeaders = []; /** * The host @@ -341,8 +348,7 @@ public function getDefaultHeaders() { return $this->defaultHeaders; } - - /** + /** * Deletes a default header * * @param string $headerName the header to delete @@ -354,6 +360,48 @@ public function deleteDefaultHeader($headerName) unset($this->defaultHeaders[$headerName]); return $this; } + + /** + * Adds a request header + * + * @param string $headerName header name (e.g. Token) + * @param string $headerValue header value (e.g. 1z8wp3) + * + * @throws \InvalidArgumentException + * @return $this + */ + public function addRequestHeader($headerName, $headerValue) + { + if (!is_string($headerName)) { + throw new \InvalidArgumentException('Header name must be a string.'); + } + + $this->requestHeaders[$headerName] = $headerValue; + return $this; + } + + /** + * Gets the request header + * + * @return array An array of request header(s) + */ + public function getRequestHeaders() + { + return $this->requestHeaders; + } + + /** + * Deletes a request header + * + * @param string $headerName the header to delete + * + * @return $this + */ + public function deleteRequestHeader($headerName) + { + unset($this->requestHeaders[$headerName]); + return $this; + } /** * Sets the host diff --git a/test/SamplesQA/CSV_Files/Driver/driver.csv b/test/SamplesQA/CSV_Files/Driver/driver.csv new file mode 100644 index 00000000..94f8b462 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Driver/driver.csv @@ -0,0 +1,43 @@ +dirName,fileName,Flag +Flex/CoreServices,GenerateKey,0 +Flex/CoreServices,TokenizeCard,0 +Payouts/CoreServices,ProcessPayout,0 +TMS/CoreServices,CreateInstrumentIdentifier,0 +TMS/CoreServices,CreatePaymentInstrument,0 +TMS/CoreServices,RetrieveAllPaymentInstruments,0 +TMS/CoreServices,RetrieveInstrumentIdentifier,0 +TMS/CoreServices,RetrievePaymentInstrument,0 +TMS/CoreServices,UpdateInstrumentIdentifier,0 +TMS/CoreServices,UpdatePaymentInstrument,0 +TMS/CoreServices,DeleteInstrumentIdentifier,0 +TMS/CoreServices,DeletePaymentInstrument,0 +Payments/CoreServices,ProcessPayment,0 +Payments/CoreServices,CapturePayment,0 +Payments/CoreServices,ProcessAuthorizationReversal,0 +Payments/CoreServices,RefundPayment,0 +Payments/CoreServices,RefundCapture,0 +Payments/CoreServices,ProcessCredit,0 +Payments/CoreServices,VoidPayment,0 +Payments/CoreServices,VoidCapture,0 +Payments/CoreServices,VoidRefund,0 +Payments/CoreServices,VoidCredit,0 +TransactionSearch/CoreServices,CreateSearchRequest,0 +TransactionSearch/CoreServices,GetSearchResults,0 +UserManagement/CoreServices,GetUserInformation,0 +TransactionBatches/CoreServices,GetIndividualBatchFile,0 +TransactionBatches/CoreServices,GetListOfBatchFiles,0 +TransactionDetails/CoreServices,RetrieveTransaction,0 +SecureFileShare/CoreServices,DownloadFileWithFileIdentifier,0 +SecureFileShare/CoreServices,GetListOfFiles,0 +Reporting/CoreServices,GetNotificationOfChanges,0 +Reporting/CoreServices,GetPurchaseAndRefundDetails,0 +Reporting/CoreServices,GetReportDefinition,0 +Reporting/CoreServices,GetReportingResourceInformation,0 +Reporting/CoreServices,GetAllSubscriptions,0 +Reporting/CoreServices,GetSubscriptionForReportName,0 +Reporting/CoreServices,CreateReportSubscriptionForReportNameByOrganization,0 +Reporting/CoreServices,DeleteSubscriptionOfReportNameByOrganization,0 +Reporting/CoreServices,RetrieveAvailableReports,0 +Reporting/CoreServices,CreateAdhocReport,0 +Reporting/CoreServices,GetReportBasedOnReportid,0 +Reporting/CoreServices,DownloadReport,0 \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Flex/CoreServices/GenerateKey.csv b/test/SamplesQA/CSV_Files/Flex/CoreServices/GenerateKey.csv new file mode 100644 index 00000000..8e9596cd --- /dev/null +++ b/test/SamplesQA/CSV_Files/Flex/CoreServices/GenerateKey.csv @@ -0,0 +1,3 @@ +testCaseId,encryptionType,message +CKeyGen_01,None,Success +CKeyGen_02,SSRT,Fails due to invalid encryptionType diff --git a/test/SamplesQA/CSV_Files/Flex/CoreServices/TokenizeCard.csv b/test/SamplesQA/CSV_Files/Flex/CoreServices/TokenizeCard.csv new file mode 100644 index 00000000..21394898 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Flex/CoreServices/TokenizeCard.csv @@ -0,0 +1,4 @@ +testCaseId,keyId,message +CTokC_01,08rV37jKiBShwrjkzXouukjYuGigYi4p,Success +CTokC_02,0023154mudgshfyrtdgfj456fhdggdg1,Fails due to invalid keyId + diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateAmexOptima.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateAmexOptima.csv new file mode 100644 index 00000000..c8e091e4 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateAmexOptima.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAO_01,2854.00,Success +CAO_02,200.0,Fails due to mismatch amount +CAO_03,ADHJ5,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateMaestroInternational.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateMaestroInternational.csv new file mode 100644 index 00000000..d6fc2f05 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateMaestroInternational.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMI_01,2016.05,Success +CMI_02,200.0,Fails due to mismatch amount +CMI_03,ZNK9,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateMaestroUKDomestic.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateMaestroUKDomestic.csv new file mode 100644 index 00000000..484a4bb4 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateMaestroUKDomestic.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMUD_01,2016.05,Success +CMUD_02,200.0,Fails due to mismatch amount +CMUD_03,QWERT3,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateSoloUK.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateSoloUK.csv new file mode 100644 index 00000000..46adf1fa --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateSoloUK.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CSU_01,106.00,Success +CSU_02,200.0,Fails due to mismatch amount +CSU_03,SDRT12,Fails due to onvalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateVisa.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateVisa.csv new file mode 100644 index 00000000..7df32573 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSNonUsSupportedCardTypes/CreateVisa.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CV_01,100.00,Success +CV_02,200.0,Fails due to mismatch amount +CV_03,HGFWQ3,Fails due to invalid \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSRelaxAvs/CreateNonRetail.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSRelaxAvs/CreateNonRetail.csv new file mode 100644 index 00000000..96635234 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSRelaxAvs/CreateNonRetail.csv @@ -0,0 +1,3 @@ +testCaseId,amount,message +CNR_01,2401.00,Success +CNR_02,FDE32,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSRelaxAvs/CreateRetail.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSRelaxAvs/CreateRetail.csv new file mode 100644 index 00000000..3c4b905b --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSRelaxAvs/CreateRetail.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CR_01,100.00,Success +CR_02,200.0,Fails due to mismatch amount +CR_03,DSWAZ1,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSonly.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSonly.csv new file mode 100644 index 00000000..669fef7c --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSonly.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAVSO_01,2861.00,Success +CAVSO_02,2500,Fails due to mismatch amount +CAVSO_03,LKA9,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSusSupportedCardTypes/CreateAmericanExpress.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSusSupportedCardTypes/CreateAmericanExpress.csv new file mode 100644 index 00000000..c2420098 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSusSupportedCardTypes/CreateAmericanExpress.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAE_01,100.00,Success +CAE_02,200.0,Fails due to mismatch amount +CAE_03,KLTR7,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSusSupportedCardTypes/CreateDiscover.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSusSupportedCardTypes/CreateDiscover.csv new file mode 100644 index 00000000..62cc786a --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSusSupportedCardTypes/CreateDiscover.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CD_01,2016.05,Success +CD_02,200.0,Fails due to mismatch amount +CD_03,GHTR3,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSusSupportedCardTypes/CreateMasterCard.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSusSupportedCardTypes/CreateMasterCard.csv new file mode 100644 index 00000000..62242355 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSusSupportedCardTypes/CreateMasterCard.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMC_01,2016.05,Success +CMC_02,200.0,Fails due to mismatch amount +CMC_03,HGWQ5,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSusSupportedCardTypes/CreateVisa.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSusSupportedCardTypes/CreateVisa.csv new file mode 100644 index 00000000..b05dc627 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AVSusSupportedCardTypes/CreateVisa.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CV_01,100.00,Success +CV_02,200.0,Fails due to mismatch amount +CV_03,POTR8,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AmericanExpressSafekey.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AmericanExpressSafekey.csv new file mode 100644 index 00000000..0de86141 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/AmericanExpressSafekey.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAES_01,100.00,Success +CAES_02,200,Fails due to mismatch amount +CAES_03,GHP12,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/BasicPaymentAuthorization.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/BasicPaymentAuthorization.csv new file mode 100644 index 00000000..cafbc97b --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/BasicPaymentAuthorization.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CBPA_01,72210.00,Success +CBPA_02,6700,Fails due to mismatch amount +CBPA_03,AQWA9,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateAmexCID.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateAmexCID.csv new file mode 100644 index 00000000..49fed50e --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateAmexCID.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAC_01,2854.00,Success +CAC_02,200.0,Fails due to mismatch amount +CAC_03,ZDFRT6,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateDiscoverCID.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateDiscoverCID.csv new file mode 100644 index 00000000..d231b725 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateDiscoverCID.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CDC_01,2839.00,Success +CDC_02,200.0,Fails due to mismatch amount +CDC_03,GHTR56,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateMaestroInternationalCopy.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateMaestroInternationalCopy.csv new file mode 100644 index 00000000..3338f6f6 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateMaestroInternationalCopy.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMIC_01,2016.05,Success +CMIC_02,200.0,Fails due to mismatch amount +CMIC_03,BVFC27,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateMaestroUKDomestic.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateMaestroUKDomestic.csv new file mode 100644 index 00000000..2ca0c4eb --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateMaestroUKDomestic.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMUD_01,2016.05,Success +CMUD_02,200.0,Fails due to mismatch amount +CMUD_03,IUYTR2,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateMasterCardCVC2.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateMasterCardCVC2.csv new file mode 100644 index 00000000..f794a8f5 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateMasterCardCVC2.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMC_01,106.00,Success +CMC_02,200.0,Fails due to mismatch amount +CMC_03,ASDU4,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateVisaCVV2.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateVisaCVV2.csv new file mode 100644 index 00000000..966824af --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CVN/CreateVisaCVV2.csv @@ -0,0 +1,3 @@ +testCaseId,amount,message +CVC_01,2531,Success +CVC_02,DFRE2,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CardBrand/CreateMaestroSecureCode.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CardBrand/CreateMaestroSecureCode.csv new file mode 100644 index 00000000..3e56d229 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CardBrand/CreateMaestroSecureCode.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMSC_01,106.00,Success +CMSC_02,200.0,Fails due to mismatch amount +CMSC_03,KLM76,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CardBrand/CreateMasterCard.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CardBrand/CreateMasterCard.csv new file mode 100644 index 00000000..3c9a250d --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CardBrand/CreateMasterCard.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMC_01,106.00,Success +CMC_02,200.0,,Fails due to mismatch amount +CMC_03,KLM76,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CardBrand/CreateSoloUK.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CardBrand/CreateSoloUK.csv new file mode 100644 index 00000000..ead765ae --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CardBrand/CreateSoloUK.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CSU_01,106.00,Success +CSU_02,200,,Fails due to mismatch amount +CSU_03,KLM76,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CardBrand/CreateVisa.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CardBrand/CreateVisa.csv new file mode 100644 index 00000000..ade63ac5 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CardBrand/CreateVisa.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CV_01,0.00,Success +CV_02,200,,Fails due to mismatch amount +CV_03,KLM76,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CurrenciesSupported.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CurrenciesSupported.csv new file mode 100644 index 00000000..3ddcff85 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CurrenciesSupported.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CCS_01,100.00,Success +CCS_02,200,Fails due to mismatch amount +CCS_03,LKI7,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CurrencySupport/AuthorizationOnly0exponentcurrencies.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CurrencySupport/AuthorizationOnly0exponentcurrencies.csv new file mode 100644 index 00000000..3053a117 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CurrencySupport/AuthorizationOnly0exponentcurrencies.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAEC_01,100.00,Success +CAEC_02,200.0,Fails due to mismatch amount +CAEC_03,MNBHJ6,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CurrencySupport/AuthorizationOnly2exponentcurrenciesnonUSD.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CurrencySupport/AuthorizationOnly2exponentcurrenciesnonUSD.csv new file mode 100644 index 00000000..69004c75 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/CurrencySupport/AuthorizationOnly2exponentcurrenciesnonUSD.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAECNU_01,100.00,Success +CAECNU_02,200.0,Fails due to mismatch amount +CAECNU_03,LKOP59,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/AndroidPay/CreateAndroidPay.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/AndroidPay/CreateAndroidPay.csv new file mode 100644 index 00000000..4ced8192 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/AndroidPay/CreateAndroidPay.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAnP_01,100.00,Success +CAnP_02,200.0,Fails due to mismatch amount +CAnP_03,GHP34,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/AndroidPay/CreateAuthorizeAndroidPayCybersourceDecryption.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/AndroidPay/CreateAuthorizeAndroidPayCybersourceDecryption.csv new file mode 100644 index 00000000..00a2b853 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/AndroidPay/CreateAuthorizeAndroidPayCybersourceDecryption.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAAnCD_01,100.00,Success +CAAnCD_02,200.0,Fails due to mismatch amount +CAAnCD_03,QHJG34,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/AndroidPay/CreateAuthorizeAndroidPayMerchantDecryption.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/AndroidPay/CreateAuthorizeAndroidPayMerchantDecryption.csv new file mode 100644 index 00000000..e34027ff --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/AndroidPay/CreateAuthorizeAndroidPayMerchantDecryption.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAAnMD_01,100.00,Success +CAAnMD_02,200.0,Fails due to mismatch amount +CAAnMD_03,GHKF39,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/ApplePay/CreateApplePay.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/ApplePay/CreateApplePay.csv new file mode 100644 index 00000000..f9af1192 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/ApplePay/CreateApplePay.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAP_01,100.00,Success +CAP_02,200.0,Fails due to mismatch amount +CAP_03,GHJ34,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/ApplePay/CreateAuthorizeApplePayCybersourceDecryption.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/ApplePay/CreateAuthorizeApplePayCybersourceDecryption.csv new file mode 100644 index 00000000..714ddbba --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/ApplePay/CreateAuthorizeApplePayCybersourceDecryption.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAACD_01,100.00,Success +CAACD_02,200.0,Fails due to mismatch amount +CAACD_03,GHJ34,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/ApplePay/CreateAuthorizeApplePayMerchantDecryption.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/ApplePay/CreateAuthorizeApplePayMerchantDecryption.csv new file mode 100644 index 00000000..9a1f84af --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/ApplePay/CreateAuthorizeApplePayMerchantDecryption.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAAMD_01,100.00,Success +CAAMD_02,200.0,Fails due to mismatch amount +CAAMD_03,GHK39,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/Chasepay/CreateChasePay.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/Chasepay/CreateChasePay.csv new file mode 100644 index 00000000..84de960b --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/Chasepay/CreateChasePay.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CCP_01,100.00,Success +CCP_02,200,Fails due to mismatch amount +CCP_03,GHJ34,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/Googlepay/CreateAuthorizeGooglePayCybersourceDecryption.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/Googlepay/CreateAuthorizeGooglePayCybersourceDecryption.csv new file mode 100644 index 00000000..70e33e04 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/Googlepay/CreateAuthorizeGooglePayCybersourceDecryption.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAGCD_01,115.00,Success +CAGCD_02,200.0,Fails due to mismatch amount +CAGCD_03,QHJ34,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/Googlepay/CreateAuthorizeGooglePayMerchantDecryption.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/Googlepay/CreateAuthorizeGooglePayMerchantDecryption.csv new file mode 100644 index 00000000..d0fd8f35 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/Googlepay/CreateAuthorizeGooglePayMerchantDecryption.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAGMD_01,2012.00,Success +CAGMD_02,2012,Fails due to mismatch amount +CAGMD_03,GHKF39,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/Googlepay/CreateGooglePay.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/Googlepay/CreateGooglePay.csv new file mode 100644 index 00000000..d8728460 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/Googlepay/CreateGooglePay.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CGP_01,100.00,Success +CGP_02,200,Fails due to mismatch amount +CGP_03,GHP34,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateAuthorizeSamsungPayCybersourceDecryption.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateAuthorizeSamsungPayCybersourceDecryption.csv new file mode 100644 index 00000000..00e78ac9 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateAuthorizeSamsungPayCybersourceDecryption.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CASCD_01,100.00,Success +CASCD_02,200.0,Fails due to mismatch amount +CASCD_03,GHJ34,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateAuthorizeSamsungPayMerchantDecryption.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateAuthorizeSamsungPayMerchantDecryption.csv new file mode 100644 index 00000000..1c191bc1 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateAuthorizeSamsungPayMerchantDecryption.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CASMD_01,100.00,Success +CASMD_02,200.0,Fails due to mismatch amount +CASMD_03,GHJ39,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateSamsungPayRetailEMVcontact.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateSamsungPayRetailEMVcontact.csv new file mode 100644 index 00000000..df6f62fc --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateSamsungPayRetailEMVcontact.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CSREC_01,100.00,Success +CSREC_02,200.0,Fails due to mismatch amount +CSREC_03,GHJ34,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateSamsungPayRetailEMVcontactless.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateSamsungPayRetailEMVcontactless.csv new file mode 100644 index 00000000..d8b26fa1 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateSamsungPayRetailEMVcontactless.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CSRECl_01,100.00,Success +CSRECl_02,200.0,Fails due to mismatch amount +CSRECl_03,GHJ34,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateSamsungPayRetailEMVmsd.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateSamsungPayRetailEMVmsd.csv new file mode 100644 index 00000000..e1945268 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/DigitalPayments/SamsungPay/CreateSamsungPayRetailEMVmsd.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CSREM_01,100.00,Success +CSREM_02,200.0,Fails due to mismatch amount +CSREM_03,GHJ34,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/Dollar0Authorization.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/Dollar0Authorization.csv new file mode 100644 index 00000000..04a65934 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/Dollar0Authorization.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CDZAuth_01,0.00,Success +CDZAuth_02,0,Fails due to mismatch amount +CDZAuth_03,GHL6,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/Dollar0AuthorizationMasterCard.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/Dollar0AuthorizationMasterCard.csv new file mode 100644 index 00000000..3b91b82b --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/Dollar0AuthorizationMasterCard.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CDZAuthMC_01,0.00,Success +CDZAuthMC_02,0,Fails due to mismatch amount +CDZAuthMC_03,GHA9,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/ECIsSupported.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/ECIsSupported.csv new file mode 100644 index 00000000..9b098e8f --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/ECIsSupported.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CECIS_01,102.21,Success +CECIS_02,100,Fails due to mismatch amount +CECIS_03,AGH2,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/ForcedCaptures.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/ForcedCaptures.csv new file mode 100644 index 00000000..d668191f --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/ForcedCaptures.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CFC_01,100.00,Success +CFC_02,200,Fails due to mismatch amount +CFC_03,AGP5,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/GetPayment.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/GetPayment.csv new file mode 100644 index 00000000..ea2d79ad --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/GetPayment.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CGP_01,102.21,Success +CGP_02,200,Fails due to mismatch amount +CGP_03,ZXSD3,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/JCBJSecure.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/JCBJSecure.csv new file mode 100644 index 00000000..c7657d91 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/JCBJSecure.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CJCBJ_01,100.00,Success +CJCBJ_02,125,Fails due to mismatch amount +CJCBJ_03,ZESD3,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/Level2Data.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/Level2Data.csv new file mode 100644 index 00000000..166dd245 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/Level2Data.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CL2D_01,100.00,Success +CL2D_02,125,Fails due to mismatch +CL2D_03,ZESD3,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/Level3Data.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/Level3Data.csv new file mode 100644 index 00000000..576aa434 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/Level3Data.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CL3D_01,114.00,Success +CL3D_02,150,Fails due to mismatch amount +CL3D_03,RET2,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MasterCardSecureCode.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MasterCardSecureCode.csv new file mode 100644 index 00000000..88ae96ed --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MasterCardSecureCode.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMSC_01,102.21,Success +CMSC_02,200,Fails due to mismatch amount +CMSC_03,YTR4,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MasterCardSecureCode1.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MasterCardSecureCode1.csv new file mode 100644 index 00000000..539619a3 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MasterCardSecureCode1.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMSC1_01,105.00,Success +CMSC1_02,200,Fails due to mismatch amount +CMSC1_03,RWT2,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantDescriptorAuth.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantDescriptorAuth.csv new file mode 100644 index 00000000..ee67a7b0 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantDescriptorAuth.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMDA_01,72210.00,Success +CMDA_02,5000,Fails due to mismatch amount +CMDA_03,VBN4,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantIntiatedReversalsAndVoids/CreateAltTestHaveQuestion.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantIntiatedReversalsAndVoids/CreateAltTestHaveQuestion.csv new file mode 100644 index 00000000..00b55827 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantIntiatedReversalsAndVoids/CreateAltTestHaveQuestion.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CATQ_01,3000.00,Success +CATQ_02,200,Fails due to mismatch amount +CATQ_03,ZHJ7,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantIntiatedReversalsAndVoids/CreateAuthReversal.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantIntiatedReversalsAndVoids/CreateAuthReversal.csv new file mode 100644 index 00000000..a5f0ca75 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantIntiatedReversalsAndVoids/CreateAuthReversal.csv @@ -0,0 +1,4 @@ +testCaseId,paymentId,amount,message +CAuthRev_01,5305395916686582801541,3000.00,Success +CAuthRev_02,5305395916686582801541,3000,Fails due to mismatch amount +CAuthRev_03,1234567898726221234599,3000.00,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantIntiatedReversalsAndVoids/CreateOriginalRequestAuth.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantIntiatedReversalsAndVoids/CreateOriginalRequestAuth.csv new file mode 100644 index 00000000..ecff5c1a --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantIntiatedReversalsAndVoids/CreateOriginalRequestAuth.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CORA_01,3000.00,Success +CORA_02,200,Fails due to mismatch amount +CORA_03,HJK6,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantIntiatedReversalsAndVoids/CreateVoid.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantIntiatedReversalsAndVoids/CreateVoid.csv new file mode 100644 index 00000000..dd384713 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/MerchantIntiatedReversalsAndVoids/CreateVoid.csv @@ -0,0 +1,3 @@ +testCaseId,paymentId,message +CV_01,5305395588436558001541,Success +CV_02,9864132033846812355655,Fails due to invalid payment id \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/NetworkTokenization/CybersourcePaymentTokenization.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/NetworkTokenization/CybersourcePaymentTokenization.csv new file mode 100644 index 00000000..7342612b --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/NetworkTokenization/CybersourcePaymentTokenization.csv @@ -0,0 +1,3 @@ +testCaseId,amount,message +CPT_01,2719.00,Success +CPT_02,FBDS45,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/NetworkTokenization/PaymentNetworkTokenization.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/NetworkTokenization/PaymentNetworkTokenization.csv new file mode 100644 index 00000000..9ddb816a --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/NetworkTokenization/PaymentNetworkTokenization.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CPNT_01,100.00,Success +CPNT_02,200,Fails due to mismatch amount +CPNT_03,HKLPO9,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/POSTransactions/CreateBluefin.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/POSTransactions/CreateBluefin.csv new file mode 100644 index 00000000..6b1c5161 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/POSTransactions/CreateBluefin.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CB_01,100.00,Success +CB_02,200,Fails due to mismatch amount +CB_03,FDR,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/POSTransactions/CreateEMV.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/POSTransactions/CreateEMV.csv new file mode 100644 index 00000000..b0202b9d --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/POSTransactions/CreateEMV.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CEMV_01,100.00,Success +CEMV_02,300,Fails due to mismatch amount +CEMV_03,NBM7,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PartialAuthorization.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PartialAuthorization.csv new file mode 100644 index 00000000..3e6bdff3 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PartialAuthorization.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CPA_01,7012.00,Success +CPA_02,6500,Fails due to mismatch amount +CPA_03,ZCD4,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel2/CreateAmericanExpress.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel2/CreateAmericanExpress.csv new file mode 100644 index 00000000..300329d6 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel2/CreateAmericanExpress.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAE_01,113.00,Success +CAE_02,200,Fails due to mismatch amount +CAE_03,FGYT7,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel2/CreateMasterCard.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel2/CreateMasterCard.csv new file mode 100644 index 00000000..d0831ba3 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel2/CreateMasterCard.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMC_01,112.00,Success +CMC_02,200,Fails due to mismatch amount +CMC_03,GFDSE4,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel2/CreateVisa.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel2/CreateVisa.csv new file mode 100644 index 00000000..b16ff965 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel2/CreateVisa.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CV_01,112.00,Success +CV_02,200,Fails due to mismatch amount +CV_03,OIUYT69,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel3/CreateMasterCard.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel3/CreateMasterCard.csv new file mode 100644 index 00000000..77194e35 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel3/CreateMasterCard.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CMC_01,112.00,Success +CMC_02,200,Fails due to mismatch amount +CMC_03,AWQRT5,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel3/CreateVisa.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel3/CreateVisa.csv new file mode 100644 index 00000000..43947a6f --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel3/CreateVisa.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CV_01,114.00,Success +CV_02,200,Fails due to mismatch amount +CV_03,MNKL09,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel3/CreateVisaCopy.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel3/CreateVisaCopy.csv new file mode 100644 index 00000000..b9dfa2fa --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/PurchaseCardsLevel3/CreateVisaCopy.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CVC_01,114.00,Success +CVC_02,200,Fails due to mismatch amount +CVC_03,DSUM87,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/RecurringBilling.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/RecurringBilling.csv new file mode 100644 index 00000000..3c1e87fd --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/RecurringBilling.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CRB_01,5432.00,Success +CRB_02,3000,Fails due to mismatch amount +CRB_03,KLP7,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/RecurringIndicator.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/RecurringIndicator.csv new file mode 100644 index 00000000..a1c31531 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/RecurringIndicator.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CRI_01,102.21,Success +CRI_02,200,Fails due to mismatch amount +CRI_03,TGF5,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/ServiceFees.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/ServiceFees.csv new file mode 100644 index 00000000..058ec157 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/ServiceFees.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CSF_01,102.21,Success +CSF_02,300,Fails due to mismatch amount +CSF_03,XCVD42,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateAuthorizationOnlyCommerceIndicatorMoto.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateAuthorizationOnlyCommerceIndicatorMoto.csv new file mode 100644 index 00000000..3e8654fd --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateAuthorizationOnlyCommerceIndicatorMoto.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAuthOnlyCM_01,109.00,Success +CAuthOnlyCM_02,200,Fails due to mismatch amount +CAuthOnlyCM_03,LKT2,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateAuthorizationOnlyInternet.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateAuthorizationOnlyInternet.csv new file mode 100644 index 00000000..c85cbf6a --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateAuthorizationOnlyInternet.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAuthOnlyI_01,100.00,Success +CAuthOnlyI_02,200,Fails due to mismatch amount +CAuthOnlyI_03,ASD89,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateAuthorizationOnlyNonRetail.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateAuthorizationOnlyNonRetail.csv new file mode 100644 index 00000000..7b8a9883 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateAuthorizationOnlyNonRetail.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAuthOnlyNR_01,102.00,Success +CAuthOnlyNR_02,200,Fails due to mismatch amount +CAuthOnlyNR_03,BGF4,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateAuthorizationOnlyRetail.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateAuthorizationOnlyRetail.csv new file mode 100644 index 00000000..a1b2a169 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateAuthorizationOnlyRetail.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAuthOnlyR_01,108.00,Success +CAuthOnlyR_02,200,Fails due to mismatch amount +CAuthOnlyR_03,ZXT9,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateRecurringIndicator.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateRecurringIndicator.csv new file mode 100644 index 00000000..45c269a0 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateRecurringIndicator.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CRI_01,109.00,Success +CRI_02,200,Fails due to mismatch amount +CRI_03,PYT2,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateVisaInstallmentCommerceIndicatorInstall.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateVisaInstallmentCommerceIndicatorInstall.csv new file mode 100644 index 00000000..7f0cf7d9 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/CreateVisaInstallmentCommerceIndicatorInstall.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CVCI_01,109.00,Success +CVCI_02,200,Fails due to mismatch amount +CVCI,FGH6,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailEMVcontact.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailEMVcontact.csv new file mode 100644 index 00000000..5f6f7927 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailEMVcontact.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +REC_01,115.00,Success +REC_02,200,Success due to mismatch amount +REC_03,STY4,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailEMVcontactless.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailEMVcontactless.csv new file mode 100644 index 00000000..05fede05 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailEMVcontactless.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +RECl_01,115.00,Success +RECl_02,200,Fails due to mismatch amount +RECl_03,MKL3,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailEMVcontactlessCopy.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailEMVcontactlessCopy.csv new file mode 100644 index 00000000..83cd2849 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailEMVcontactlessCopy.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +REClC_01,115.00,Success +REClC_02,200,Fails due to mismatch amount +REClC_03,KML2,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailPOSstandardKey.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailPOSstandardKey.csv new file mode 100644 index 00000000..af3fb027 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailPOSstandardKey.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +RPSK_01,108.00,Success +RPSK_02,200,Fails due to mismatch amount +RPSK_03,ZSD6,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailPOSstandardSwipe.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailPOSstandardSwipe.csv new file mode 100644 index 00000000..151fd11e --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/SimpleAuth/RetailPOSstandardSwipe.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +RPSS_01,115.00,Success +RPSS_02,200,Fails due to mismatch amount +RPSS_03,GFTY1,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/VerbalAuthorizationCapture.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/VerbalAuthorizationCapture.csv new file mode 100644 index 00000000..ad482402 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/VerbalAuthorizationCapture.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CVAC_01,100.00,Success +CVAC_02,200,Fails due to mismatch amount +CVAC_03,HGY5,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/VerifiedByVisa.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/VerifiedByVisa.csv new file mode 100644 index 00000000..e8d5cc0b --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/VerifiedByVisa.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CVBV_01,100.00,Success +CVBV_02,300,Fails due to mismatch amount +CVBV_03,NBM7,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/VoiceAuthReferral.csv b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/VoiceAuthReferral.csv new file mode 100644 index 00000000..895a8703 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/AuthorizePayment/VoiceAuthReferral.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CVAR_01,102.21,Success +CVAR_02,100,Fails due to mismatch amount +CVAR_03,GVC5,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreateAuthorizationOnly.csv b/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreateAuthorizationOnly.csv new file mode 100644 index 00000000..b38f1bea --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreateAuthorizationOnly.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CAO_01,100.00,Success +CAO_02,200.0,Fails due to mismatch amount +CAO_03,GFRE2,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreateBillAmtGTthanAuthAmt.csv b/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreateBillAmtGTthanAuthAmt.csv new file mode 100644 index 00000000..27f1f040 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreateBillAmtGTthanAuthAmt.csv @@ -0,0 +1,3 @@ +testCaseId,paymentId,amount,message +CBAGAA_01,5332058267566110304101,1000.00,Fails due to billAmtGtthanAuthAmount +CBAGAA_02,1234567898726221234567,1002.21,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreateCapturePayment.csv b/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreateCapturePayment.csv new file mode 100644 index 00000000..3931febf --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreateCapturePayment.csv @@ -0,0 +1,4 @@ +testCaseId,paymentId,amount,message +CCaP_01,5402270212336207404005,100.00,Success +CCaP_02,5402270576246209004005,100,Fails due to mismatch amount +CCaP_03,1234567898726221234567,102.21,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreatePartialBills.csv b/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreatePartialBills.csv new file mode 100644 index 00000000..87de439c --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreatePartialBills.csv @@ -0,0 +1,4 @@ +testCaseId,paymentId,amount,message +CPB_01,5386630482866466004004,10.00,Success +CPB_02,5386631509756379504005,20,Fails due to mismatch amount +CPB_03,1234567898726221234599,25.00,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreateVisaBillPayment.csv b/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreateVisaBillPayment.csv new file mode 100644 index 00000000..cde31c21 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CapturePayment/SimpleCapture/CreateVisaBillPayment.csv @@ -0,0 +1,4 @@ +testCaseId,paymentId,amount,message +CVBP_01,5402270919736314504004,100.00,Success +CVBP_02,5402271202106523504001,100,Fails due to mismatch amount +CVBP_03,1234567898726221234599,200.00,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/CapturePayment.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/CapturePayment.csv new file mode 100644 index 00000000..4c52001f --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/CapturePayment.csv @@ -0,0 +1,4 @@ +testCaseId,paymentId,amount,message +CapAPay_01,5470112151566861803002,100.00,Success +CapAPay_02,5470112158056348503004,100,Fails due to mismatch amount +CapAPay_03,1234567898726221234599,100.00,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/ProcessAuthorizationReversal.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/ProcessAuthorizationReversal.csv new file mode 100644 index 00000000..96817c50 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/ProcessAuthorizationReversal.csv @@ -0,0 +1,4 @@ +testCaseId,paymentId,amount,message +PAuthRev_01,5470139061316364703003,100.00,Success +PAuthRev_02,5470139066866515103006,100,Fails due to mismatch amount +PAuthRev_03,1234567898726221234599,100.00,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/ProcessCredit.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/ProcessCredit.csv new file mode 100644 index 00000000..de099200 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/ProcessCredit.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +PACre_01,200.00,Success +PACre_02,200,Fails due to mismatch amount +PACre_03,GHTR25,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/ProcessPayment.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/ProcessPayment.csv new file mode 100644 index 00000000..53607c30 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/ProcessPayment.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +PAPay_01,100.00,Success +PAPay_02,100,Success decimal validation +PAPay_03,KLGT4,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/RefundCapture.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/RefundCapture.csv new file mode 100644 index 00000000..39ffad93 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/RefundCapture.csv @@ -0,0 +1,4 @@ +testCaseId,captureId,amount,message +RACap_01,5385744437056874104002,100.00,Success +RACap_02,5385745526926012304003,100,Fails due to mismatch amount +RACap_03,1234567898726221234599,100.00,Fails due to invalid captureId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/RefundPayment.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/RefundPayment.csv new file mode 100644 index 00000000..e2e01c79 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/RefundPayment.csv @@ -0,0 +1,4 @@ +testCaseId,paymentId,amount,message +RAP_01,5388268649896595604003,102.21,Success +RAP_02,5388268652966533104006,102,Fails due to mismatch amount +RAP_03,1234567898726221234599,100.00,Fails due to paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveAuthorizationReversal.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveAuthorizationReversal.csv new file mode 100644 index 00000000..12d9afb2 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveAuthorizationReversal.csv @@ -0,0 +1,3 @@ +testCaseId,reversalId,message +RAuthRev_01,5388242634176468804004,Success +RAuthRev_02,9964213433846812344644,Fails due to invalid reversalId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveCapture.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveCapture.csv new file mode 100644 index 00000000..64455139 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveCapture.csv @@ -0,0 +1,3 @@ +testCaseId,captureId,message +RACap_01,5332051835286063504108,Success +RACap_02,9964123433846812345644,Fails due to invalid captureId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveCredit.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveCredit.csv new file mode 100644 index 00000000..2afb99ce --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveCredit.csv @@ -0,0 +1,3 @@ +testCaseId,creditId,message +RACre_01,5332036920866055004101,Success +RACre_02,9964302033846812345677,Fails due to invalid creditId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrievePayment.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrievePayment.csv new file mode 100644 index 00000000..3aedf89d --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrievePayment.csv @@ -0,0 +1,3 @@ +testCaseId,paymentId,message +RAP_01,5319754772076048103525,Success +RAP_02,9964123433846812345678,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveRefund.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveRefund.csv new file mode 100644 index 00000000..1655cfd7 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveRefund.csv @@ -0,0 +1,3 @@ +testCaseId,refundId,message +RARef_01,5335504389516958903526,Success +RARef_02,9964302033846812355655,Fails due to invalid refundId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveVoid.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveVoid.csv new file mode 100644 index 00000000..b3703e0c --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/RetrieveVoid.csv @@ -0,0 +1,3 @@ +testCaseId,voidId,message +RAV_01,5335528892726038303523,Success +RAV_02,9864132033846812355655,Fails due to invalid voidId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/VoidCapture.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/VoidCapture.csv new file mode 100644 index 00000000..98a768f2 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/VoidCapture.csv @@ -0,0 +1,3 @@ +testCaseId,captureId,statusInput,message +VCap_01,5463406821096353504005,VOIDED,Success +VCap_02,8964213433126812344644,VOIDED,Fails due to invalid captureId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/VoidCredit.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/VoidCredit.csv new file mode 100644 index 00000000..b38b5aa7 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/VoidCredit.csv @@ -0,0 +1,3 @@ +testCaseId,creditId,statusInput,message +VCre_01,5464137525466451204005,VOIDED,Success +VCre_02,8964213433846812344644,VOIDED,Fails due to invalid creditId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/VoidPayment.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/VoidPayment.csv new file mode 100644 index 00000000..4a1b70a1 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/VoidPayment.csv @@ -0,0 +1,3 @@ +testCaseId,paymentId,status,message +VPay_01,5465792535046423904004,VOIDED,Success +VPay_02,8964213433846812344644,VOIDED,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CoreServices/VoidRefund.csv b/test/SamplesQA/CSV_Files/Payments/CoreServices/VoidRefund.csv new file mode 100644 index 00000000..b0a3efb3 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CoreServices/VoidRefund.csv @@ -0,0 +1,3 @@ +testCaseId,refundId,status,message +VAR_01,5464292661676649604002,VOIDED,Success +VAR_02,8964213433846812344644,VOIDED,Fails due to invalid refundId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CreditPayment/CreateFollowonCredit.csv b/test/SamplesQA/CSV_Files/Payments/CreditPayment/CreateFollowonCredit.csv new file mode 100644 index 00000000..87fca9b0 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CreditPayment/CreateFollowonCredit.csv @@ -0,0 +1,3 @@ +testCaseId,captureId,amount,message +CFC_01,5387118630696300304001,100.00,Success +CFC_02,1234567898726221234567,102.21,Fails due to invalid captureId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CreditPayment/CreatePartialCredits.csv b/test/SamplesQA/CSV_Files/Payments/CreditPayment/CreatePartialCredits.csv new file mode 100644 index 00000000..fc4c5d6e --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CreditPayment/CreatePartialCredits.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CPC_01,10.00,Success +CPC_02,20,Fails due to mismatch amount +CPC_03,GORT49,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/CreditPayment/CreateStandaloneCredit.csv b/test/SamplesQA/CSV_Files/Payments/CreditPayment/CreateStandaloneCredit.csv new file mode 100644 index 00000000..74d2ecd9 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/CreditPayment/CreateStandaloneCredit.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +CSC_01,100.00,Success +CSC_02,200,Fails due to mismatch amount +CSC_03,GHRT45,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/RefundPayment/CreateRefundPayment.csv b/test/SamplesQA/CSV_Files/Payments/RefundPayment/CreateRefundPayment.csv new file mode 100644 index 00000000..6266bbe8 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/RefundPayment/CreateRefundPayment.csv @@ -0,0 +1,4 @@ +testCaseId,paymentId,amount,message +CRP_01,5397854164186266404001,100.00,Success +CRP_02,5397854498326025604002,100,Fails due to mismatch amount +CRP_03,1234567898726221234599,100.00,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/ReversePayment/CreateAuthReversal.csv b/test/SamplesQA/CSV_Files/Payments/ReversePayment/CreateAuthReversal.csv new file mode 100644 index 00000000..5c175459 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/ReversePayment/CreateAuthReversal.csv @@ -0,0 +1,4 @@ +testCaseId,paymentId,amount,message +CAR_01,5402262157746167004005,100.00,Success +CAR_02,5402262837316222904002,100,Fails due to mismatch amount +CAR_03,1234567898726221234599,100.00,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/VoidTransactions/VoidaPayment/CreateVoidAPayment.csv b/test/SamplesQA/CSV_Files/Payments/VoidTransactions/VoidaPayment/CreateVoidAPayment.csv new file mode 100644 index 00000000..b431baec --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/VoidTransactions/VoidaPayment/CreateVoidAPayment.csv @@ -0,0 +1,3 @@ +testCaseId,paymentId,amount,message +CVAP_01,5402266412876487604001,100.00,Success +CVAP_02,8964213433846812344644,100.00,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payments/VoidTransactions/VoidaPayment/CreateVoidAPaymentZeroDollar.csv b/test/SamplesQA/CSV_Files/Payments/VoidTransactions/VoidaPayment/CreateVoidAPaymentZeroDollar.csv new file mode 100644 index 00000000..c7b2b49d --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payments/VoidTransactions/VoidaPayment/CreateVoidAPaymentZeroDollar.csv @@ -0,0 +1,3 @@ +testCaseId,paymentId,amount,message +CVAPZD_01,5402266910736297904006,0.00,Success +CVAPZD_02,8964213433846812344644,0.00,Fails due to invalid paymentId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payouts/CoreServices/ProcessPayout.csv b/test/SamplesQA/CSV_Files/Payouts/CoreServices/ProcessPayout.csv new file mode 100644 index 00000000..3d94eac2 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payouts/CoreServices/ProcessPayout.csv @@ -0,0 +1,4 @@ +testCaseId,cleintRefInfoCode,businessAppId,amount,message +PAPayO_01,33557799,FD,100.00,Success +PAPayO_02,54321,GD,200,Fails due to mismatch amount +PAPayO_03,32165,MD,QWARE,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Payouts/Payout.csv b/test/SamplesQA/CSV_Files/Payouts/Payout.csv new file mode 100644 index 00000000..8599ce02 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Payouts/Payout.csv @@ -0,0 +1,4 @@ +testCaseId,cleintRefInfoCode,businessAppId,amount,message +PayO_01,33557799,FD,100.00,Success +PayO_02,12345,GD,200,Fails due to mismatch amount +PayO_03,6789,MD,DSWAZ1,Fails due to invalid amount \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/Reporting/CoreServices/CreateAdhocReport.csv b/test/SamplesQA/CSV_Files/Reporting/CoreServices/CreateAdhocReport.csv new file mode 100644 index 00000000..f1613f33 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Reporting/CoreServices/CreateAdhocReport.csv @@ -0,0 +1,3 @@ +testCaseId,reportDefName,repName,reportSTime,reportETime,message +CAdR_01,TransactionRequestClass,testrest_v2,2018-09-01T12:00:00+05:00,2018-09-02T12:00:00+05:00,Success +CAdR_02,TransactionRequ,testrest_v2,2018-09-01T12:00:00+05:00,2018-09-02T12:00:00+05:00,fails due to invalid reportDefinitionName diff --git a/test/SamplesQA/CSV_Files/Reporting/CoreServices/CreateReportSubscriptionForReportNameByOrganization.csv b/test/SamplesQA/CSV_Files/Reporting/CoreServices/CreateReportSubscriptionForReportNameByOrganization.csv new file mode 100644 index 00000000..53eee47e --- /dev/null +++ b/test/SamplesQA/CSV_Files/Reporting/CoreServices/CreateReportSubscriptionForReportNameByOrganization.csv @@ -0,0 +1,3 @@ +testCaseId,reportDefName,repName,repFrequency,message +CRSFRNO_01,TransactionRequestClass,testrest_subcription_v1,DAILY,Success +CRSFRNO_02,TransactionRes,subscriptionAutomation2,DAILY,Fails due to invalid reportDefinitionName diff --git a/test/SamplesQA/CSV_Files/Reporting/CoreServices/DeleteSubscriptionOfReportNameByOrganization.csv b/test/SamplesQA/CSV_Files/Reporting/CoreServices/DeleteSubscriptionOfReportNameByOrganization.csv new file mode 100644 index 00000000..97a4092d --- /dev/null +++ b/test/SamplesQA/CSV_Files/Reporting/CoreServices/DeleteSubscriptionOfReportNameByOrganization.csv @@ -0,0 +1,3 @@ +testCaseId,repName,message +DSRNO_01,testrest_subcription_v1,Success +DSRNO_02,ghsrrawasbhfhcb,Fails due to invalid reportName diff --git a/test/SamplesQA/CSV_Files/Reporting/CoreServices/DownloadReport.csv b/test/SamplesQA/CSV_Files/Reporting/CoreServices/DownloadReport.csv new file mode 100644 index 00000000..0c14e16b --- /dev/null +++ b/test/SamplesQA/CSV_Files/Reporting/CoreServices/DownloadReport.csv @@ -0,0 +1,4 @@ +testCaseId,orgId,repName,repDate,message +DR_01,testrest,testrest_v2,2018-09-02,Success +DR_02,testrest,testre,2018-09-02,Fails due to invalid reportName +DR_03,testrest,testrest_v2,2018-08-02,Fails due to invalid reportDate diff --git a/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetAllSubscriptions.csv b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetAllSubscriptions.csv new file mode 100644 index 00000000..1a9ccf41 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetAllSubscriptions.csv @@ -0,0 +1,2 @@ +testCaseId,,message +GAS_01,Success diff --git a/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetNotificationOfChanges.csv b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetNotificationOfChanges.csv new file mode 100644 index 00000000..41b1cc2a --- /dev/null +++ b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetNotificationOfChanges.csv @@ -0,0 +1,4 @@ +testCaseId,sTime,eTime,message +GNOC_01,2018-09-01T12:00:00-05:00,2018-09-30T12:00:00-05:00,Success +GNOC_02,2018-01T12:00-05,2018-09-30T12:00:00-05:00,Fails due to invalid startTime +GNOC_03,2018-09-01T12:00:00-05:00,2018-30T12:00-05,Fails due to invalid endTime diff --git a/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetPurchaseAndRefundDetails.csv b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetPurchaseAndRefundDetails.csv new file mode 100644 index 00000000..169a562d --- /dev/null +++ b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetPurchaseAndRefundDetails.csv @@ -0,0 +1,5 @@ +testCaseId,sTime,eTime,orgId,message +GPARD_01,2018-05-01T12:00:00-05:00,2018-05-30T12:00:00-05:00,uday_wf,Success +GPARD_02,2018-01T12:00-05,2018-05-30T12:00:00-05:00,uday_wf,Fails due to invalid startTime +GPARD_03,2018-05-01T12:00:00-05:00,2018-30T12:00-05,uday_wf,Fails due to invalid endTime +GPARD_04,2018-05-01T12:00:00-05:00,2018-05-30T12:00:00-05:00,udapaa,Fails due to invalid organizationId diff --git a/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetReportBasedOnReportid.csv b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetReportBasedOnReportid.csv new file mode 100644 index 00000000..c1407d09 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetReportBasedOnReportid.csv @@ -0,0 +1,4 @@ +testCaseId,orgId,repId,message +GRBRI_01,testrest,79642c43-2368-0cd5-e053-a2588e0a7b3c,Success +GRBRI_02,testrest,79642c43-2368-0cd5-e053-a2588e0a,Fails due to invalid reportId +GRBRI_03,bkalama,79642c43-2368-0cd5-e053-a2588e0a7b3c,Fails due to invalid organizationId diff --git a/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetReportDefinition.csv b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetReportDefinition.csv new file mode 100644 index 00000000..ba00ca88 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetReportDefinition.csv @@ -0,0 +1,3 @@ +testCaseId,reportDefName,message +GRD_01,SubscriptionDetailClass,Success +GRD_02,SubscDetail,Fails due to invalid reportDefinitionName diff --git a/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetReportingResourceInformation.csv b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetReportingResourceInformation.csv new file mode 100644 index 00000000..f09027c5 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetReportingResourceInformation.csv @@ -0,0 +1,3 @@ +testCaseId,orgId,message +GRRI_01,testrest,Success +GRRI_02,bplkmdghd,Fails due to invalid organizationId diff --git a/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetSubscriptionForReportName.csv b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetSubscriptionForReportName.csv new file mode 100644 index 00000000..1fef02cb --- /dev/null +++ b/test/SamplesQA/CSV_Files/Reporting/CoreServices/GetSubscriptionForReportName.csv @@ -0,0 +1,3 @@ +testCaseId,repName,message +GSFRN_01,testrest_subcription_v1,Success +GSFRN_02,bplkmdgsd,Fails due to invalid reportName diff --git a/test/SamplesQA/CSV_Files/Reporting/CoreServices/RetrieveAvailableReports.csv b/test/SamplesQA/CSV_Files/Reporting/CoreServices/RetrieveAvailableReports.csv new file mode 100644 index 00000000..9ce40c63 --- /dev/null +++ b/test/SamplesQA/CSV_Files/Reporting/CoreServices/RetrieveAvailableReports.csv @@ -0,0 +1,5 @@ +testCaseId,sTime,eTime,tQueryType,message +RAR_01,2018-10-02T00:00:00.0Z,2018-10-30T23:59:59.0Z,executedTime,Success +RAR_02,2018-09-01T00:00:00.0Z,2018-09-05T23:59:59.0Z,reportsTime,Fails due to invalid timeQueryType +RAR_03,2018-09-01T00:00:,2018-09-05T23:59:59.0Z,executedTime,Fails due to invalid startTime +RAR_04,2018-09-01T00:00:00.0Z,2018-09-05T23:59,executedTime,Fails due to invalid endTime diff --git a/test/SamplesQA/CSV_Files/SecureFileShare/CoreServices/DownloadFileWithFileIdentifier.csv b/test/SamplesQA/CSV_Files/SecureFileShare/CoreServices/DownloadFileWithFileIdentifier.csv new file mode 100644 index 00000000..09ea020e --- /dev/null +++ b/test/SamplesQA/CSV_Files/SecureFileShare/CoreServices/DownloadFileWithFileIdentifier.csv @@ -0,0 +1,3 @@ +testCaseId,organizationId,fileId,message +DFWFI_01,testrest,VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==,Success +DFWFI_02,testrest,VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0,Fails due to invalid fieldId diff --git a/test/SamplesQA/CSV_Files/SecureFileShare/CoreServices/GetListOfFiles.csv b/test/SamplesQA/CSV_Files/SecureFileShare/CoreServices/GetListOfFiles.csv new file mode 100644 index 00000000..0f2c3b3c --- /dev/null +++ b/test/SamplesQA/CSV_Files/SecureFileShare/CoreServices/GetListOfFiles.csv @@ -0,0 +1,3 @@ +testCaseId,organizationId,startDate,endDate,message +GLF_01,testrest,2018-10-20,2018-10-30,Success + diff --git a/test/SamplesQA/CSV_Files/TMS/CoreServices/CreateInstrumentIdentifier.csv b/test/SamplesQA/CSV_Files/TMS/CoreServices/CreateInstrumentIdentifier.csv new file mode 100644 index 00000000..b7404151 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TMS/CoreServices/CreateInstrumentIdentifier.csv @@ -0,0 +1,3 @@ +testCaseId,prevTransactionId,profileId,message +CInstIden_01,123456789012345,93B32398-AD51-4CC2-A682-EA3E93614EB1,Success +CInstIden_02,123456789012345,25C32588-CD49-6SS3-H123-WQ7T83512NMl,Fails due to invalid profileId diff --git a/test/SamplesQA/CSV_Files/TMS/CoreServices/CreatePaymentInstrument.csv b/test/SamplesQA/CSV_Files/TMS/CoreServices/CreatePaymentInstrument.csv new file mode 100644 index 00000000..1042f6ea --- /dev/null +++ b/test/SamplesQA/CSV_Files/TMS/CoreServices/CreatePaymentInstrument.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,message +CPIns_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,Success +CPIns_02,25C32588-CD49-6SS3-H123-WQ7T83512NMl,Fails due to invalid profileId diff --git a/test/SamplesQA/CSV_Files/TMS/CoreServices/DeleteInstrumentIdentifier.csv b/test/SamplesQA/CSV_Files/TMS/CoreServices/DeleteInstrumentIdentifier.csv new file mode 100644 index 00000000..b196f5e5 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TMS/CoreServices/DeleteInstrumentIdentifier.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +DelInsIden_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,7020000000000787656,Success +DelInsIden_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7020000000001234567,Fails due to invalid tokenId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/TMS/CoreServices/DeletePaymentInstrument.csv b/test/SamplesQA/CSV_Files/TMS/CoreServices/DeletePaymentInstrument.csv new file mode 100644 index 00000000..00726aa8 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TMS/CoreServices/DeletePaymentInstrument.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +DelPIns_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,7C68714643F4D3D4E05341588E0A516C,Success +DelPIns_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7C68714643F4D3D4E053411234567898,Fails due to invalid tokenId diff --git a/test/SamplesQA/CSV_Files/TMS/CoreServices/RetrieveAllPaymentInstruments.csv b/test/SamplesQA/CSV_Files/TMS/CoreServices/RetrieveAllPaymentInstruments.csv new file mode 100644 index 00000000..fdde5072 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TMS/CoreServices/RetrieveAllPaymentInstruments.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +RAPIns_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,7020000000000137654,Success +RAPIns_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7020000000123456789,Fails due to invalid tokenId diff --git a/test/SamplesQA/CSV_Files/TMS/CoreServices/RetrieveInstrumentIdentifier.csv b/test/SamplesQA/CSV_Files/TMS/CoreServices/RetrieveInstrumentIdentifier.csv new file mode 100644 index 00000000..70cdc94e --- /dev/null +++ b/test/SamplesQA/CSV_Files/TMS/CoreServices/RetrieveInstrumentIdentifier.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +RInsIden_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,7020000000000137654,Success +RInsIden_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7654264589567855546,Fails due to invalid tokenId diff --git a/test/SamplesQA/CSV_Files/TMS/CoreServices/RetrievePaymentInstrument.csv b/test/SamplesQA/CSV_Files/TMS/CoreServices/RetrievePaymentInstrument.csv new file mode 100644 index 00000000..30fbea25 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TMS/CoreServices/RetrievePaymentInstrument.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +RPIns_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,82676F046291AB26E05340588D0A5D47,Success +RPIns_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7501E647FA683692E053401234567897,Fails due to invalid tokenId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/TMS/CoreServices/UpdateInstrumentIdentifier.csv b/test/SamplesQA/CSV_Files/TMS/CoreServices/UpdateInstrumentIdentifier.csv new file mode 100644 index 00000000..040429e5 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TMS/CoreServices/UpdateInstrumentIdentifier.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +UpdInsIden_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,7020000000000137654,Success +UpdInsIden_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7020000012345123456,Fails due to invalid tokenId diff --git a/test/SamplesQA/CSV_Files/TMS/CoreServices/UpdatePaymentInstrument.csv b/test/SamplesQA/CSV_Files/TMS/CoreServices/UpdatePaymentInstrument.csv new file mode 100644 index 00000000..aaafeab5 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TMS/CoreServices/UpdatePaymentInstrument.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +UpdPIns_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,7501E647FA683692E05340588D0A131D,Success +UpdPIns_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7501E647FA683692E0531234567898,Fails due to invalid tokenId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/TMS/PaymentsWithToken/CreateAuthorizationWithToken.csv b/test/SamplesQA/CSV_Files/TMS/PaymentsWithToken/CreateAuthorizationWithToken.csv new file mode 100644 index 00000000..1222e8b1 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TMS/PaymentsWithToken/CreateAuthorizationWithToken.csv @@ -0,0 +1,4 @@ +testCaseId,customerId,amount,message +CAuthWT_01,7500BB199B4270EFE05340588D0AFCAD,20.00,Success +CAuthWT_02,7500BB199B4270EFE05340588D0AFCAD,20,Fails due to mismatch amount +CAuthWT_03,8900DD155H1270ABS03260955E0LKCSK,30.00,Fails due to invalid customerId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/TMS/PaymentsWithToken/CreatePaymentsInstrumentForAuthorization.csv b/test/SamplesQA/CSV_Files/TMS/PaymentsWithToken/CreatePaymentsInstrumentForAuthorization.csv new file mode 100644 index 00000000..b7174983 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TMS/PaymentsWithToken/CreatePaymentsInstrumentForAuthorization.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,message +CPIFA_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,Success +CPIFA_02,25C32588-CD49-6SS3-H123-WQ7T83512NMl,Fails due to invalid profileId \ No newline at end of file diff --git a/test/SamplesQA/CSV_Files/TestReport/TestResults.csv b/test/SamplesQA/CSV_Files/TestReport/TestResults.csv new file mode 100644 index 00000000..33de1e6c --- /dev/null +++ b/test/SamplesQA/CSV_Files/TestReport/TestResults.csv @@ -0,0 +1,124 @@ +TestCaseId,APIName,Status,Message,TimeStamp +PAPay_01,ProcessPayment,"Pass :AUTHORIZED - 5493575911636438803002",Success,"05-02-2019 09:06:31" +PAPay_01,ProcessPayment,"Pass :AUTHORIZED - 5493704792906849103004",Success,"05-02-2019 12:41:19" +PAPay_01,ProcessPayment,"Pass :AUTHORIZED - 5493705326626714503002",Success,"05-02-2019 12:42:13" +PAPay_02,ProcessPayment,"Pass :AUTHORIZED - 5493705342946714803002","Success decimal validation","05-02-2019 12:42:14" +PAPay_03,ProcessPayment,"[400] Error connecting to the API (https://apitest.cybersource.com/pts/v2/payments/)","Fails due to invalid amount","05-02-2019 12:42:20" +PAPay_01,ProcessPayment,"Pass :AUTHORIZED - 5493706789556718103002",Success,"05-02-2019 12:44:39" +PAPay_02,ProcessPayment,"Pass :AUTHORIZED - 5493706805786754203001","Success decimal validation","05-02-2019 12:44:41" +PAPay_01,ProcessPayment,"Pass :AUTHORIZED - 5493707588426857003005",Success,"05-02-2019 12:45:59" +PAPay_02,ProcessPayment,"Pass :AUTHORIZED - 5493707605216855503004","Success decimal validation","05-02-2019 12:46:01" +PAPay_01,ProcessPayment,"Pass :AUTHORIZED - 5493709330496758803003",Success,"05-02-2019 12:48:53" +PAPay_02,ProcessPayment,"Pass :AUTHORIZED - 5493709346476760203001","Success decimal validation","05-02-2019 12:48:55" +PAPay_03,ProcessPayment,INVALID_DATA,"Fails due to invalid amount","05-02-2019 12:48:57" +PAPay_01,ProcessPayment,"Pass :AUTHORIZED - 5493710068766761703003",Success,"05-02-2019 12:50:07" +PAPay_02,ProcessPayment,"Pass :AUTHORIZED - 5493710085016761803003","Success decimal validation","05-02-2019 12:50:08" +PAPay_03,ProcessPayment,[400]INVALID_DATA,"Fails due to invalid amount","05-02-2019 12:50:10" +PAPay_01,ProcessPayment,API,Success,"05-02-2019 13:02:06" +PAPay_02,ProcessPayment,API,"Success decimal validation","05-02-2019 13:02:07" +PAPay_03,ProcessPayment,API,"Fails due to invalid amount","05-02-2019 13:02:07" +PAPay_01,ProcessPayment,API,Success,"05-02-2019 13:03:34" +PAPay_02,ProcessPayment,API,"Success decimal validation","05-02-2019 13:03:35" +PAPay_03,ProcessPayment,API,"Fails due to invalid amount","05-02-2019 13:03:35" +CapAPay_01,CapturePayment,API,Success,"05-02-2019 13:03:36" +CapAPay_02,CapturePayment,API,"Fails due to mismatch amount","05-02-2019 13:03:36" +CapAPay_03,CapturePayment,API,"Fails due to invalid paymentId","05-02-2019 13:03:36" +CapAPay_01,CapturePayment,[400]EXCEEDS_AUTH_AMOUNT,Success,"05-02-2019 13:05:11" +CapAPay_02,CapturePayment,"Assertion Failed : 201","Fails due to mismatch amount","05-02-2019 13:05:13" +CapAPay_03,CapturePayment,[400]INVALID_DATA,"Fails due to invalid paymentId","05-02-2019 13:05:18" +CInstIden_01,CreateInstrumentIdentifier,"Pass : - 7020000000000207200",Success,"06-02-2019 09:20:28" +CInstIden_02,CreateInstrumentIdentifier,[400],"Fails due to invalid profileId","06-02-2019 09:20:30" +CInstIden_01,CreateInstrumentIdentifier,API,Success,"07-02-2019 12:02:40" +CInstIden_02,CreateInstrumentIdentifier,API,"Fails due to invalid profileId","07-02-2019 12:02:41" +CInstIden_01,CreateInstrumentIdentifier,"Pass : - 7020000000000207200",Success,"07-02-2019 12:04:06" +CInstIden_02,CreateInstrumentIdentifier,[400],"Fails due to invalid profileId","07-02-2019 12:04:07" +CInstIden_01,CreateInstrumentIdentifier,"Pass : - 7020000000000207200",Success,"08-02-2019 03:26:24" +CInstIden_02,CreateInstrumentIdentifier,[400],"Fails due to invalid profileId","08-02-2019 03:26:25" +CInstIden_01,CreateInstrumentIdentifier,"Pass : - 7020000000000207200",Success,"08-02-2019 03:28:01" +CInstIden_02,CreateInstrumentIdentifier,[400],"Fails due to invalid profileId","08-02-2019 03:28:02" +CInstIden_01,CreateInstrumentIdentifier,"Pass : - 7020000000000207200",Success,"08-02-2019 03:29:45" +CInstIden_02,CreateInstrumentIdentifier,[400],"Fails due to invalid profileId","08-02-2019 03:29:46" +CInstIden_01,CreateInstrumentIdentifier,API,Success,"08-02-2019 03:37:58" +CInstIden_02,CreateInstrumentIdentifier,API,"Fails due to invalid profileId","08-02-2019 03:37:59" +CPIns_01,CreatePaymentInstrument,API,Success,"08-02-2019 03:37:59" +CPIns_02,CreatePaymentInstrument,API,"Fails due to invalid profileId","08-02-2019 03:37:59" +CPIns_01,CreatePaymentInstrument,API,Success,"08-02-2019 03:41:33" +CPIns_02,CreatePaymentInstrument,API,"Fails due to invalid profileId","08-02-2019 03:41:33" +CPIns_01,CreatePaymentInstrument,"Assertion Failed : ",Success,"08-02-2019 03:45:59" +CPIns_02,CreatePaymentInstrument,[400],"Fails due to invalid profileId","08-02-2019 03:46:00" +CPIns_01,CreatePaymentInstrument,API,Success,"08-02-2019 03:46:34" +CPIns_02,CreatePaymentInstrument,API,"Fails due to invalid profileId","08-02-2019 03:46:34" +CPIns_01,CreatePaymentInstrument,API,Success,"08-02-2019 03:46:58" +CPIns_02,CreatePaymentInstrument,API,"Fails due to invalid profileId","08-02-2019 03:46:59" +CPIns_01,CreatePaymentInstrument,"Assertion Failed : {",Success,"08-02-2019 03:58:16" +CPIns_02,CreatePaymentInstrument,[400],"Fails due to invalid profileId","08-02-2019 03:58:17" +CPIns_01,CreatePaymentInstrument,"Pass :ACTIVE - 815B29B51096037FE05340588D0A6C21",Success,"08-02-2019 04:12:10" +CPIns_02,CreatePaymentInstrument,[400],"Fails due to invalid profileId","08-02-2019 04:12:11" +CPIns_01,CreatePaymentInstrument,"Pass :ACTIVE - 815B29B51099037FE05340588D0A6C21",Success,"08-02-2019 04:12:59" +CPIns_02,CreatePaymentInstrument,[400],"Fails due to invalid profileId","08-02-2019 04:13:00" +CPIns_01,CreatePaymentInstrument,"Pass :ACTIVE - 815B2D201B6522EAE05340588D0AF8E9",Success,"08-02-2019 04:13:07" +CPIns_02,CreatePaymentInstrument,[400],"Fails due to invalid profileId","08-02-2019 04:13:09" +CPIns_01,CreatePaymentInstrument,API,Success,"08-02-2019 04:14:36" +CPIns_02,CreatePaymentInstrument,API,"Fails due to invalid profileId","08-02-2019 04:14:36" +CPIns_01,CreatePaymentInstrument,API,Success,"08-02-2019 04:17:03" +CPIns_02,CreatePaymentInstrument,API,"Fails due to invalid profileId","08-02-2019 04:17:03" +CPIns_01,CreatePaymentInstrument,API,Success,"08-02-2019 04:17:41" +CPIns_02,CreatePaymentInstrument,API,"Fails due to invalid profileId","08-02-2019 04:17:42" +DelInsIden_01,DeleteInstrumentIdentifier,API,Success,"13-02-2019 05:09:41" +DelInsIden_02,DeleteInstrumentIdentifier,API,"Fails due to invalid tokenId","13-02-2019 05:09:41" +DelInsIden_01,DeleteInstrumentIdentifier,API,Success,"13-02-2019 05:10:59" +DelInsIden_02,DeleteInstrumentIdentifier,API,"Fails due to invalid tokenId","13-02-2019 05:11:00" +DelInsIden_01,DeleteInstrumentIdentifier,API,Success,"13-02-2019 05:12:27" +DelInsIden_02,DeleteInstrumentIdentifier,API,"Fails due to invalid tokenId","13-02-2019 05:12:28" +DelPIns_01,DeletePaymentInstrument,API,Success,"13-02-2019 05:20:00" +DelPIns_02,DeletePaymentInstrument,API,"Fails due to invalid tokenId","13-02-2019 05:20:00" +RAPIns_01,RetrieveAllPaymentInstruments,API,Success,"13-02-2019 10:12:21" +RAPIns_02,RetrieveAllPaymentInstruments,API,"Fails due to invalid tokenId","13-02-2019 10:12:21" +RAPIns_01,RetrieveAllPaymentInstruments,API,Success,"13-02-2019 10:13:07" +RAPIns_02,RetrieveAllPaymentInstruments,API,"Fails due to invalid tokenId","13-02-2019 10:13:07" +RAPIns_01,RetrieveAllPaymentInstruments,API,Success,"13-02-2019 10:19:44" +RAPIns_02,RetrieveAllPaymentInstruments,API,"Fails due to invalid tokenId","13-02-2019 10:19:44" +RAPIns_01,RetrieveAllPaymentInstruments,API,Success,"13-02-2019 10:20:11" +RAPIns_02,RetrieveAllPaymentInstruments,API,"Fails due to invalid tokenId","13-02-2019 10:20:11" +RAPIns_01,RetrieveAllPaymentInstruments,API,Success,"13-02-2019 10:21:12" +RAPIns_02,RetrieveAllPaymentInstruments,API,"Fails due to invalid tokenId","13-02-2019 10:21:13" +RAPIns_01,RetrieveAllPaymentInstruments,"Assertion Failed : 200",Success,"13-02-2019 10:22:54" +RAPIns_02,RetrieveAllPaymentInstruments,[404],"Fails due to invalid tokenId","13-02-2019 10:22:56" +RAPIns_01,RetrieveAllPaymentInstruments,"Pass : - ",Success,"13-02-2019 10:26:14" +RAPIns_02,RetrieveAllPaymentInstruments,[404],"Fails due to invalid tokenId","13-02-2019 10:26:16" +RInsIden_01,RetrieveInstrumentIdentifier,API,Success,"21-02-2019 06:05:17" +RInsIden_02,RetrieveInstrumentIdentifier,API,"Fails due to invalid tokenId","21-02-2019 06:05:17" +RInsIden_01,RetrieveInstrumentIdentifier,API,Success,"21-02-2019 06:24:12" +RInsIden_02,RetrieveInstrumentIdentifier,API,"Fails due to invalid tokenId","21-02-2019 06:24:12" +RInsIden_01,RetrieveInstrumentIdentifier,API,Success,"21-02-2019 11:44:39" +RInsIden_02,RetrieveInstrumentIdentifier,API,"Fails due to invalid tokenId","21-02-2019 11:44:39" +RInsIden_01,RetrieveInstrumentIdentifier,API,Success,"21-02-2019 11:45:15" +RInsIden_02,RetrieveInstrumentIdentifier,API,"Fails due to invalid tokenId","21-02-2019 11:45:16" +RInsIden_01,RetrieveInstrumentIdentifier,"Assertion Failed : 200",Success,"21-02-2019 11:45:50" +RInsIden_02,RetrieveInstrumentIdentifier,[404],"Fails due to invalid tokenId","21-02-2019 11:45:52" +RInsIden_01,RetrieveInstrumentIdentifier,"Assertion Failed1 : 200",Success,"21-02-2019 11:48:42" +RInsIden_02,RetrieveInstrumentIdentifier,[404],"Fails due to invalid tokenId","21-02-2019 11:48:43" +RPIns_01,RetrievePaymentInstrument,[410],Success,"21-02-2019 11:57:41" +RPIns_02,RetrievePaymentInstrument,[404],"Fails due to invalid tokenId","21-02-2019 11:57:43" +RPIns_01,RetrievePaymentInstrument,API,Success,"21-02-2019 12:01:54" +RPIns_02,RetrievePaymentInstrument,API,"Fails due to invalid tokenId","21-02-2019 12:01:54" +RPIns_01,RetrievePaymentInstrument,API,Success,"21-02-2019 12:03:00" +RPIns_02,RetrievePaymentInstrument,API,"Fails due to invalid tokenId","21-02-2019 12:03:00" +RPIns_01,RetrievePaymentInstrument,[410],Success,"21-02-2019 12:04:05" +RPIns_02,RetrievePaymentInstrument,[404],"Fails due to invalid tokenId","21-02-2019 12:04:06" +UpdInsIden_01,UpdateInstrumentIdentifier,API,Success,"25-02-2019 09:39:17" +UpdInsIden_02,UpdateInstrumentIdentifier,API,"Fails due to invalid tokenId","25-02-2019 09:39:18" +UpdPIns_01,UpdatePaymentInstrument,API,Success,"25-02-2019 09:39:20" +UpdPIns_02,UpdatePaymentInstrument,API,"Fails due to invalid tokenId","25-02-2019 09:39:21" +UpdInsIden_01,UpdateInstrumentIdentifier,API,Success,"25-02-2019 09:40:01" +UpdInsIden_02,UpdateInstrumentIdentifier,API,"Fails due to invalid tokenId","25-02-2019 09:40:01" +UpdPIns_01,UpdatePaymentInstrument,API,Success,"25-02-2019 09:40:02" +UpdPIns_02,UpdatePaymentInstrument,API,"Fails due to invalid tokenId","25-02-2019 09:40:02" +UpdInsIden_01,UpdateInstrumentIdentifier,"Pass :7020000000000137654 - 200",Success,"25-02-2019 09:47:16" +UpdInsIden_02,UpdateInstrumentIdentifier,[404],"Fails due to invalid tokenId","25-02-2019 09:47:17" +UpdPIns_01,UpdatePaymentInstrument,[410],Success,"25-02-2019 09:47:19" +UpdPIns_02,UpdatePaymentInstrument,[400],"Fails due to invalid tokenId","25-02-2019 09:47:20" +UpdInsIden_01,UpdateInstrumentIdentifier,"Pass :7020000000000137654 - 200",Success,"25-02-2019 09:52:01" +UpdInsIden_02,UpdateInstrumentIdentifier,[404],"Fails due to invalid tokenId","25-02-2019 09:52:03" +UpdPIns_01,UpdatePaymentInstrument,[410],Success,"25-02-2019 09:52:04" +UpdPIns_02,UpdatePaymentInstrument,[400],"Fails due to invalid tokenId","25-02-2019 09:52:06" diff --git a/test/SamplesQA/CSV_Files/TransactionBatches/CoreServices/GetIndividualBatchFile.csv b/test/SamplesQA/CSV_Files/TransactionBatches/CoreServices/GetIndividualBatchFile.csv new file mode 100644 index 00000000..53729aa4 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TransactionBatches/CoreServices/GetIndividualBatchFile.csv @@ -0,0 +1,3 @@ +testCaseId,id,message +GIBF_01,Owcyk6pl,Success +GIBF_02,CYBS123,Fails due to invalid Id diff --git a/test/SamplesQA/CSV_Files/TransactionBatches/CoreServices/GetListOfBatchFiles.csv b/test/SamplesQA/CSV_Files/TransactionBatches/CoreServices/GetListOfBatchFiles.csv new file mode 100644 index 00000000..1129a68d --- /dev/null +++ b/test/SamplesQA/CSV_Files/TransactionBatches/CoreServices/GetListOfBatchFiles.csv @@ -0,0 +1,4 @@ +testCaseId,startTime,endTime,message +GLOF_01,2018-10-01T00:00:00.00Z,2018-10-31T23:59:59.59Z,Success +GLOF_02,2018-10-01T00:00,2018-10-31T23:59:59.59Z,Fails due to invalid startDate. +GLOF_03,2018-10-01T00:00:00.00Z,2018-10-31T23:59,Fails due to invalid endDate. diff --git a/test/SamplesQA/CSV_Files/TransactionBatches/TransactionBatchUplaodDateRange.csv b/test/SamplesQA/CSV_Files/TransactionBatches/TransactionBatchUplaodDateRange.csv new file mode 100644 index 00000000..ece39646 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TransactionBatches/TransactionBatchUplaodDateRange.csv @@ -0,0 +1,3 @@ +testCaseId,startTime,endTime,message +TBUDR_01,2018-06-01T00:00:00.00Z,2018-06-30T23:59:59.59Z,Success +TBUDR_02,2018-01T00:00.00Z,2018-30T23:59.59Z,Fails due to invalid date time diff --git a/test/SamplesQA/CSV_Files/TransactionBatches/TransactionBatchUploadBatchId.csv b/test/SamplesQA/CSV_Files/TransactionBatches/TransactionBatchUploadBatchId.csv new file mode 100644 index 00000000..64a4fce6 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TransactionBatches/TransactionBatchUploadBatchId.csv @@ -0,0 +1,3 @@ +testCaseId,transactionBatchId,message +TBUBI_01,CYB00613,Success +TBUBI_02,CYBS123,Fails due to invalid transactionBatchId diff --git a/test/SamplesQA/CSV_Files/TransactionDetails/CoreServices/RetrieveTransaction.csv b/test/SamplesQA/CSV_Files/TransactionDetails/CoreServices/RetrieveTransaction.csv new file mode 100644 index 00000000..9cd405c5 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TransactionDetails/CoreServices/RetrieveTransaction.csv @@ -0,0 +1,3 @@ +testCaseId,id,message +RT_01,5408386919326811103004,Success +RT_02,1234567898745651235454,Fails due to invalid Id diff --git a/test/SamplesQA/CSV_Files/TransactionSearch/CoreServices/CreateSearchRequest.csv b/test/SamplesQA/CSV_Files/TransactionSearch/CoreServices/CreateSearchRequest.csv new file mode 100644 index 00000000..3381e31c --- /dev/null +++ b/test/SamplesQA/CSV_Files/TransactionSearch/CoreServices/CreateSearchRequest.csv @@ -0,0 +1,3 @@ +testCaseId,name,query,message +CSR_01,TSS search,clientReferenceInformation.code:12345,Success +CSR_02,TSS search,clientRefeInfo.code:52465,Fails due to invalid query. diff --git a/test/SamplesQA/CSV_Files/TransactionSearch/CoreServices/GetSearchResults.csv b/test/SamplesQA/CSV_Files/TransactionSearch/CoreServices/GetSearchResults.csv new file mode 100644 index 00000000..db0f1681 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TransactionSearch/CoreServices/GetSearchResults.csv @@ -0,0 +1,3 @@ +testCaseId,id,message +GSR_01,cdc673a7-4d86-4dda-8bb5-2ff644bccd12,Success +GSR_02,343hdgff-88uh-23hh-b6d6-5dfjhdtsufh8,Fails due to invalid Id diff --git a/test/SamplesQA/CSV_Files/TransactionSearch/TSSSearch.csv b/test/SamplesQA/CSV_Files/TransactionSearch/TSSSearch.csv new file mode 100644 index 00000000..0a74c8fa --- /dev/null +++ b/test/SamplesQA/CSV_Files/TransactionSearch/TSSSearch.csv @@ -0,0 +1,3 @@ +testCaseId,name,query,message +TSSS_01,TSS search,clientReferenceInformation.code:12345,Success +TSSS_02,TS Far,clientRefeInfo.code:52565,Fails due to invalid name diff --git a/test/SamplesQA/CSV_Files/TransactionSearch/TSSSearchById.csv b/test/SamplesQA/CSV_Files/TransactionSearch/TSSSearchById.csv new file mode 100644 index 00000000..fcb507d2 --- /dev/null +++ b/test/SamplesQA/CSV_Files/TransactionSearch/TSSSearchById.csv @@ -0,0 +1,3 @@ +testCaseId,searchId,message +TSSBI_01,5b0afa1f-0dab-492c-b26d-2f8930e06428,Success +TSSBI_02,343hdgff-88uh-23hh-b6d6-5dfjhdtsufh8,Fails due to invalid searchId diff --git a/test/SamplesQA/CSV_Files/UserManagement/CoreServices/GetUserInformation.csv b/test/SamplesQA/CSV_Files/UserManagement/CoreServices/GetUserInformation.csv new file mode 100644 index 00000000..ecee2f8e --- /dev/null +++ b/test/SamplesQA/CSV_Files/UserManagement/CoreServices/GetUserInformation.csv @@ -0,0 +1,3 @@ +testCaseId,orgId,userName,permissionId,roleId,message +GUI_01,testrest,tesrest,CustomerProfileViewPermission,admin,Success +GUI_02,testre,tesrest,CustomerProfileViewPermission,admin,Fail due to invalid organizationId diff --git a/test/SamplesQA/CSV_Files/UserManagement/User ManagementOrganizationID.csv b/test/SamplesQA/CSV_Files/UserManagement/User ManagementOrganizationID.csv new file mode 100644 index 00000000..5b99d6be --- /dev/null +++ b/test/SamplesQA/CSV_Files/UserManagement/User ManagementOrganizationID.csv @@ -0,0 +1,3 @@ +testCaseId,organizationId,message +UMOI_01,wfpgcustj,Success +UMOI_02,abckmdgsd,Fails due to invalid organizationId diff --git a/test/SamplesQA/CSV_Files/UserManagement/UserManagementPermissionID.csv b/test/SamplesQA/CSV_Files/UserManagement/UserManagementPermissionID.csv new file mode 100644 index 00000000..972b72db --- /dev/null +++ b/test/SamplesQA/CSV_Files/UserManagement/UserManagementPermissionID.csv @@ -0,0 +1,3 @@ +testCaseId,organizationId,permissionId,message +UMPI_01,wfpgcustj,CustomerProfileViewPermission,Success +UMPI_02,bpwesdgsd,CustomerProfileViewPermission,Fails due to invalid organizationId diff --git a/test/SamplesQA/CSV_Files/UserManagement/UserManagementRoleID.csv b/test/SamplesQA/CSV_Files/UserManagement/UserManagementRoleID.csv new file mode 100644 index 00000000..05e97360 --- /dev/null +++ b/test/SamplesQA/CSV_Files/UserManagement/UserManagementRoleID.csv @@ -0,0 +1,3 @@ +testCaseId,organizationId,roleId,message +UMRI_01,wfpgcustj,custom,Success +UMRI_02,qtwesdgsd,admin,Fails due to invalid organizationId diff --git a/test/SamplesQA/CSV_Files/UserManagement/UserManagementUsername.csv b/test/SamplesQA/CSV_Files/UserManagement/UserManagementUsername.csv new file mode 100644 index 00000000..65a36806 --- /dev/null +++ b/test/SamplesQA/CSV_Files/UserManagement/UserManagementUsername.csv @@ -0,0 +1,3 @@ +testCaseId,organizationId,message +UMU_01,wfpgcustj,Success +UMU_02,bplkmdgsd,Fails due to invalid organizationId diff --git a/test/SamplesQA/Flex/CoreServices/GenerateKey.php b/test/SamplesQA/Flex/CoreServices/GenerateKey.php new file mode 100644 index 00000000..fea84b27 --- /dev/null +++ b/test/SamplesQA/Flex/CoreServices/GenerateKey.php @@ -0,0 +1,53 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\KeyGenerationApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $encryptionType = $value[1]; + $message = $value[2]; + $flexRequestArr = [ + 'encryptionType' => "None", + ]; + $flexRequest = new CyberSource\Model\KeyParameters($flexRequestArr); + $api_response = list($response, $statusCode, $httpHeader)=null; + + try { + $api_response = $api_instance->generatePublicKey($flexRequest); + print_r($api_response); + if($api_response[1] !=200 ){ + + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["keyId"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[0]["status"]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} + +?> diff --git a/test/SamplesQA/Flex/CoreServices/TokenizeCard.php b/test/SamplesQA/Flex/CoreServices/TokenizeCard.php new file mode 100644 index 00000000..e2b66c83 --- /dev/null +++ b/test/SamplesQA/Flex/CoreServices/TokenizeCard.php @@ -0,0 +1,71 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\FlexTokenApi($apiclient); + include_once __DIR__. DIRECTORY_SEPARATOR .'../../../Samples/Flex/KeyGenerationNoEnc.php'; + $data = KeyGenerationNoEnc(true); + $publicKey = $data[1]; + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $keyId = $value[1]; + $message = $value[2]; + $publicKey = "-----BEGIN PUBLIC KEY-----\n".$publicKey."\n-----END PUBLIC KEY-----"; + + $cardInfoArr = [ + 'cardNumber' => "5555555555554444", + 'cardExpirationMonth' => "03", + 'cardExpirationYear' => "2031", + 'cardType' => "002" + ]; + $card_information = new CyberSource\Model\Flexv1tokensCardInfo($cardInfoArr); + $flexRequestArr = [ + 'keyId' => $keyId, + 'cardInfo' => $card_information + ]; + $flexRequest = new CyberSource\Model\TokenizeRequest($flexRequestArr); + $flexRequestArr = json_decode($flexRequest); + echo "The Api Request Body: \n". json_encode($flexRequestArr, JSON_UNESCAPED_SLASHES) ."\n\n"; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->tokenize($flexRequest); + if($api_response[1] !=200 ){ + + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["keyId"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[0]["status"]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])){ + $responseMessage = $respArr[0]. $reasonArr["reason"]; + } + else { + $responseMessage = $respArr[0]; + } + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/MainTestScript.php b/test/SamplesQA/MainTestScript.php new file mode 100644 index 00000000..41ac429c --- /dev/null +++ b/test/SamplesQA/MainTestScript.php @@ -0,0 +1,225 @@ +GetCsvData($csvFilePath); + echo $fileName."\n"; + switch ($fileName) { + case 'ProcessPayment': + $classObject = new ProcessPayment(); + $returnFunction = $classObject->testProcessPayment($returnCsvData, $fileName); + continue; + case 'CreateInstrumentIdentifier': + $classObject = new CreateInstrumentIdentifier(); + $returnFunction = $classObject->testCreateInstrumentIdentifier($returnCsvData, $fileName); + continue; + case 'CreatePaymentInstrument': + $classObject = new CreatePaymentInstrument(); + $returnFunction = $classObject->testCreatePaymentInstrument($returnCsvData, $fileName); + continue; + case 'RetrieveAllPaymentInstruments': + $classObject = new RetrieveAllPaymentInstruments(); + $returnFunction = $classObject->testRetrieveAllPaymentInstruments($returnCsvData, $fileName); + continue; + case 'RetrieveInstrumentIdentifier': + $classObject = new RetrieveInstrumentIdentifier(); + $returnFunction = $classObject->testRetrieveInstrumentIdentifier($returnCsvData, $fileName); + continue; + case 'RetrievePaymentInstrument': + $classObject = new RetrievePaymentInstrument(); + $returnFunction = $classObject->testRetrievePaymentInstrument($returnCsvData, $fileName); + continue; + case 'UpdateInstrumentIdentifier': + $classObject = new UpdateInstrumentIdentifier(); + $returnFunction = $classObject->testUpdateInstrumentIdentifier($returnCsvData, $fileName); + continue; + case 'UpdatePaymentInstrument': + $classObject = new UpdatePaymentInstrument(); + $returnFunction = $classObject->testUpdatePaymentInstrument($returnCsvData, $fileName); + continue; + case 'DeleteInstrumentIdentifier': + $classObject = new DeleteInstrumentIdentifier(); + $returnFunction = $classObject->testDeleteInstrumentIdentifier($returnCsvData, $fileName); + continue; + case 'DeletePaymentInstrument': + $classObject = new DeletePaymentInstrument(); + $returnFunction = $classObject->testDeletePaymentInstrument($returnCsvData, $fileName); + continue; + case 'DownloadReport': + $classObject = new DownloadReport(); + $returnFunction = $classObject->testDownloadReport($returnCsvData, $fileName); + continue; + case 'CreateAdhocReport': + $classObject = new CreateAdhocReport(); + $returnFunction = $classObject->testCreateAdhocReport($returnCsvData, $fileName); + continue; + case 'GetReportBasedOnReportid': + $classObject = new GetReportBasedOnReportid(); + $returnFunction = $classObject->testGetReportBasedOnReportid($returnCsvData, $fileName); + continue; + case 'RetrieveAvailableReports': + $classObject = new RetrieveAvailableReports(); + $returnFunction = $classObject->testRetrieveAvailableReports($returnCsvData, $fileName); + continue; + case 'DeleteSubscriptionOfReportNameByOrganization': + $classObject = new DeleteSubscriptionOfReportNameByOrganization(); + $returnFunction = $classObject->testDeleteSubscriptionOfReportNameByOrganization($returnCsvData, $fileName); + continue; + case 'CreateReportSubscriptionForReportNameByOrganization': + $classObject = new CreateReportSubscriptionForReportNameByOrganization(); + $returnFunction = $classObject->testCreateReportSubscriptionForReportNameByOrganization($returnCsvData, $fileName); + continue; + case 'GetSubscriptionForReportName': + $classObject = new GetSubscriptionForReportName(); + $returnFunction = $classObject->testGetSubscriptionForReportName($returnCsvData, $fileName); + continue; + case 'GetAllSubscriptions': + $classObject = new GetAllSubscriptions(); + $returnFunction = $classObject->testGetAllSubscriptions($returnCsvData, $fileName); + continue; + case 'GetReportDefinition': + $classObject = new GetReportDefinition(); + $returnFunction = $classObject->testGetReportDefinition($returnCsvData, $fileName); + continue; + case 'GetReportingResourceInformation': + $classObject = new GetReportingResourceInformation(); + $returnFunction = $classObject->testGetReportingResourceInformation($returnCsvData, $fileName); + continue; + case 'GetPurchaseAndRefundDetails': + $classObject = new GetPurchaseAndRefundDetails(); + $returnFunction = $classObject->testGetPurchaseAndRefundDetails($returnCsvData, $fileName); + continue; + case 'GetNotificationOfChanges': + $classObject = new GetNotificationOfChanges(); + $returnFunction = $classObject->testGetNotificationOfChanges($returnCsvData, $fileName); + continue; + case 'DownloadFileWithFileIdentifier': + $classObject = new DownloadFileWithFileIdentifier(); + $returnFunction = $classObject->testDownloadFileWithFileIdentifier($returnCsvData, $fileName); + continue; + case 'GetListOfFiles': + $classObject = new GetListOfFiles(); + $returnFunction = $classObject->testGetListOfFiles($returnCsvData, $fileName); + continue; + case 'RetrieveTransaction': + $classObject = new RetrieveTransaction(); + $returnFunction = $classObject->testRetrieveTransaction($returnCsvData, $fileName); + continue; + case 'GetListOfBatchFiles': + $classObject = new GetListOfBatchFiles(); + $returnFunction = $classObject->testGetListOfBatchFiles($returnCsvData, $fileName); + continue; + case 'GetIndividualBatchFile': + $classObject = new GetIndividualBatchFile(); + $returnFunction = $classObject->testGetIndividualBatchFile($returnCsvData, $fileName); + continue; + case 'GetUserInformation': + $classObject = new GetUserInformation(); + $returnFunction = $classObject->testGetUserInformation($returnCsvData, $fileName); + continue; + case 'GetSearchResults': + $classObject = new GetSearchResults(); + $returnFunction = $classObject->testGetSearchResults($returnCsvData, $fileName); + continue; + case 'CreateSearchRequest': + $classObject = new CreateSearchRequest(); + $returnFunction = $classObject->testCreateSearchRequest($returnCsvData, $fileName); + continue; + case 'TokenizeCard': + $classObject = new TokenizeCard(); + $returnFunction = $classObject->testTokenizeCard($returnCsvData, $fileName); + continue; + case 'GenerateKey': + $classObject = new GenerateKey(); + $returnFunction = $classObject->testGenerateKey($returnCsvData, $fileName); + continue; + case 'ProcessPayout': + $classObject = new ProcessPayout(); + $returnFunction = $classObject->testProcessPayout($returnCsvData, $fileName); + continue; + case 'RefundCapture': + $classObject = new RefundCapture(); + $returnFunction = $classObject->testRefundCapture($returnCsvData, $fileName); + continue; + case 'VoidRefund': + $classObject = new VoidRefund(); + $returnFunction = $classObject->testVoidRefund($returnCsvData, $fileName); + continue; + case 'VoidPayment': + $classObject = new VoidPayment(); + $returnFunction = $classObject->testVoidPayment($returnCsvData, $fileName); + continue; + case 'VoidCredit': + $classObject = new VoidCredit(); + $returnFunction = $classObject->testVoidCredit($returnCsvData, $fileName); + continue; + case 'VoidCapture': + $classObject = new VoidCapture(); + $returnFunction = $classObject->testVoidCapture($returnCsvData, $fileName); + continue; + case 'RefundPayment': + $classObject = new RefundPayment(); + $returnFunction = $classObject->testRefundPayment($returnCsvData, $fileName); + continue; + case 'ProcessAuthorizationReversal': + $classObject = new ProcessAuthorizationReversal(); + $returnFunction = $classObject->testProcessAuthorizationReversal($returnCsvData, $fileName); + continue; + case 'ProcessCredit': + $classObject = new ProcessCredit(); + $returnFunction = $classObject->testProcessCredit($returnCsvData, $fileName); + continue; + case 'CapturePayment': + $classObject = new CapturePayment(); + $returnFunction = $classObject->testCapturePayment($returnCsvData, $fileName); + continue; + case 'CreateInstrumentIdentifier': + $classObject = new CreateInstrumentIdentifier(); + $returnFunction = $classObject->testCreateInstrumentIdentifier($returnCsvData, $fileName); + continue; + case 'JCBJSecure': + $classObject = new JCBJSecure(); + $returnFunction = $classObject->testJCBJSecure($returnCsvData, $fileName); + continue; + default: + # code... + break; + } + + } + public function GetCsvData($csvFilePath){ + $paymentList = fopen($csvFilePath,'r'); + fgets($paymentList); + $returnArr = []; + while (($paymentData = fgetcsv($paymentList) ) !== FALSE ) + { + $returnArr[] = $paymentData; + + } + return $returnArr; + } +} + +$obj = new MainTestScript(); +ini_set('auto_detect_line_endings',TRUE); +$csvData = fopen('SamplesQA/CSV_Files/Driver/driver.csv','r'); +fgets($csvData); +while (($rows = fgetcsv($csvData, 10000, ",")) !== FALSE ) { + + if(!empty($rows[2]) && $rows[2]==1){ + echo "\nProcessing for ".$rows[0]." directory with ".$rows[1]." API...\n"; + $obj->PaasDataToFunction(trim($rows[0]), trim($rows[1])); + } + continue; +} +echo "Processing Status info has been logged in TestReport/TestResults.csv File"; + + +?> \ No newline at end of file diff --git a/test/SamplesQA/Payments/CoreServices/CapturePayment.php b/test/SamplesQA/Payments/CoreServices/CapturePayment.php new file mode 100644 index 00000000..b34e5c7f --- /dev/null +++ b/test/SamplesQA/Payments/CoreServices/CapturePayment.php @@ -0,0 +1,71 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\CaptureApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $id = $value[1]; + $amount = $value[2]; + $message = $value[3]; + $cliRefInfoArr = [ + "code" => "test_capture" + ]; + $client_reference_information = new CyberSource\Model\Ptsv2paymentsClientReferenceInformation($cliRefInfoArr); + $amountDetailsArr = [ + "totalAmount" => $amount, + "currency" => "USD" + ]; + $amountDetInfo = new CyberSource\Model\Ptsv2paymentsOrderInformationAmountDetails($amountDetailsArr); + + $orderInfoArry = [ + "amountDetails" => $amountDetInfo + ]; + + $order_information = new CyberSource\Model\Ptsv2paymentsOrderInformation($orderInfoArry); + $requestArr = [ + "clientReferenceInformation" => $client_reference_information, + "orderInformation" => $order_information + ]; + //Creating model + $request = new CyberSource\Model\CapturePaymentRequest($requestArr); + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->capturePayment($request, $id); + if($api_response[0]["status"] != "PENDING" ){ + + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["id"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["orderInformation"]["amountDetails"]["totalAmount"] != $amount){ + $responseMessage = 'Assertion Failed : '.$api_response[1]; + } else { + $responseMessage = "Pass :".$api_response[1]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + $responseMessage = 'Failed : '.$respArr[0] ; + $message = $reasonArr["message"]; + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } + + +} + + +?> diff --git a/test/SamplesQA/Payments/CoreServices/ProcessAuthorizationReversal.php b/test/SamplesQA/Payments/CoreServices/ProcessAuthorizationReversal.php new file mode 100644 index 00000000..9fbf2607 --- /dev/null +++ b/test/SamplesQA/Payments/CoreServices/ProcessAuthorizationReversal.php @@ -0,0 +1,77 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\ReversalApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $id = $value[1]; + $amount = $value[2]; + $message = $value[3]; + require_once __DIR__. DIRECTORY_SEPARATOR .'ProcessPayment.php'; + // $id = ProcessPayment("notallow"); + // $id="5510962017406310204001"; + + $cliRefInfoArr = [ + 'code' => 'TC50171_3' + ]; + $client_reference_information = new CyberSource\Model\Ptsv2paymentsClientReferenceInformation($cliRefInfoArr); + + $amountDetailsArr = [ + "totalAmount" => $amount + ]; + $amountDetInfo = new CyberSource\Model\Ptsv2paymentsidreversalsReversalInformationAmountDetails($amountDetailsArr); + $reversalInformationArr = [ + "amountDetails" => $amountDetInfo, + "reason" => "testing" + ]; + $reversalInformation = new CyberSource\Model\Ptsv2paymentsidreversalsReversalInformation($reversalInformationArr); + + $paymentRequestArr = [ + "clientReferenceInformation" => $client_reference_information, + "reversalInformation" => $reversalInformation + ]; + + $paymentRequest = new CyberSource\Model\AuthReversalRequest($paymentRequestArr); + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->authReversal($id, $paymentRequest); + echo "\n test \n"; + print_r($api_response[0]["status"]); + echo "Resp \n"; + if($api_response[0]["status"] != "REVERSED" ){ + echo "\n Entered reversed...!!! \n"; + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["id"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["reversalAmountDetails"]["reversedAmount"] != $amount){ + $responseMessage = 'Assertion Failed : '.$api_response[1]; + } else { + $responseMessage = "Pass :".$api_response[1]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + $responseMessage = 'Failed : '.$respArr[0] ; + $message = $reasonArr["message"]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} + +?> diff --git a/test/SamplesQA/Payments/CoreServices/ProcessCredit.php b/test/SamplesQA/Payments/CoreServices/ProcessCredit.php new file mode 100644 index 00000000..e9e9bd48 --- /dev/null +++ b/test/SamplesQA/Payments/CoreServices/ProcessCredit.php @@ -0,0 +1,98 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\CreditApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $amount = $value[1]; + $message = $value[2]; + $cliRefInfoArr = [ + "code" => "test_credits" + ]; + $client_reference_information = new CyberSource\Model\Ptsv2paymentsClientReferenceInformation($cliRefInfoArr); + + $amountDetailsArr = [ + "totalAmount" => $amount, + "currency" => "usd" + ]; + $amountDetInfo = new CyberSource\Model\Ptsv2paymentsOrderInformationAmountDetails($amountDetailsArr); + $billtoArr = [ + "firstName" => "John", + "lastName" => "Doe", + "address1" => "1 Market St", + "postalCode" => "94105", + "locality" => "san francisco", + "administrativeArea" => "CA", + "country" => "US", + "phoneNumber" => "4158880000", + "company" => "Visa", + "email" => "test@cybs.com" + ]; + $billto = new CyberSource\Model\Ptsv2paymentsOrderInformationBillTo($billtoArr); + $orderInfoArry = [ + "amountDetails" => $amountDetInfo, + "billTo" => $billto + ]; + + $order_information = new CyberSource\Model\Ptsv2paymentsOrderInformation($orderInfoArry); + $paymentCardInfo = [ + "expirationYear" => "2031", + "number" => "5555555555554444", + "securityCode" => "123", + "expirationMonth" => "12", + "type" => "002" + ]; + $card = new CyberSource\Model\Ptsv2paymentsPaymentInformationCard($paymentCardInfo); + $paymentInfoArr = [ + "card" => $card + + ]; + $payment_information = new CyberSource\Model\Ptsv2paymentsPaymentInformation($paymentInfoArr); + + $paymentRequestArr = [ + "clientReferenceInformation" => $client_reference_information, + "orderInformation" => $order_information, + "paymentInformation" => $payment_information + ]; + + $paymentRequest = new CyberSource\Model\CreateCreditRequest($paymentRequestArr); + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + + $api_response = $api_instance->createCredit($paymentRequest); + if($api_response[0]["status"] != "PENDING" ){ + + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["id"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["creditAmountDetails"]["creditAmount"] != $amount){ + $responseMessage = 'Assertion Failed : '.$api_response[1]; + } else { + $responseMessage = "Pass :".$api_response[1]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + $responseMessage = 'Failed : '.$respArr[0] ; + $message = $reasonArr["message"]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } + +} + +?> diff --git a/test/SamplesQA/Payments/CoreServices/ProcessPayment.php b/test/SamplesQA/Payments/CoreServices/ProcessPayment.php new file mode 100644 index 00000000..7b7850f9 --- /dev/null +++ b/test/SamplesQA/Payments/CoreServices/ProcessPayment.php @@ -0,0 +1,107 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\PaymentsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $amount = $value[1]; + $message = $value[2]; + + + $cliRefInfoArr = [ + "code" => "test_payment" + ]; + $client_reference_information = new CyberSource\Model\Ptsv2paymentsClientReferenceInformation($cliRefInfoArr); + + $processingInformationArr = [ + "commerceIndicator" => "internet" + ]; + + $processingInformation = new CyberSource\Model\Ptsv2paymentsProcessingInformation($processingInformationArr); + + $amountDetailsArr = [ + "totalAmount" => $amount, + "currency" => "USD" + ]; + $amountDetInfo = new CyberSource\Model\Ptsv2paymentsOrderInformationAmountDetails($amountDetailsArr); + $billtoArr = [ + "firstName" => "John", + "lastName" => "Doe", + "address1" => "1 Market St", + "postalCode" => "94105", + "locality" => "san francisco", + "administrativeArea" => "CA", + "country" => "US", + "phoneNumber" => "4158880000", + "company" => "Visa", + "email" => "test@cybs.com" + ]; + $billto = new CyberSource\Model\Ptsv2paymentsOrderInformationBillTo($billtoArr); + $orderInfoArry = [ + "amountDetails" => $amountDetInfo, + "billTo" => $billto + ]; + + $order_information = new CyberSource\Model\Ptsv2paymentsOrderInformation($orderInfoArry); + $paymentCardInfo = [ + "expirationYear" => "2031", + "number" => "4111111111111111", + "securityCode" => "123", + "expirationMonth" => "12" + ]; + $card = new CyberSource\Model\Ptsv2paymentsPaymentInformationCard($paymentCardInfo); + $paymentInfoArr = [ + "card" => $card + + ]; + $payment_information = new CyberSource\Model\Ptsv2paymentsPaymentInformation($paymentInfoArr); + + $paymentRequestArr = [ + "clientReferenceInformation" => $client_reference_information, + "orderInformation" => $order_information, + "paymentInformation" => $payment_information, + "processingInformation" => $processingInformation + ]; + //Creating model + $paymentRequest = new CyberSource\Model\CreatePaymentRequest($paymentRequestArr); + $responseMessage = ""; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + //Calling the Api + $api_response = $api_instance->createPayment($paymentRequest); + if($api_response[0]["status"] != "AUTHORIZED" ){ + + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["id"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["orderInformation"]["amountDetails"]["authorizedAmount"] != $amount){ + $responseMessage = 'Assertion Failed : '.$api_response[1]; + } else { + $responseMessage = "Pass :".$api_response[1]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + $responseMessage = 'Failed : '.$respArr[0] ; + $message = $reasonArr["message"]; + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} + + + +?> diff --git a/test/SamplesQA/Payments/CoreServices/RefundCapture.php b/test/SamplesQA/Payments/CoreServices/RefundCapture.php new file mode 100644 index 00000000..43f82f68 --- /dev/null +++ b/test/SamplesQA/Payments/CoreServices/RefundCapture.php @@ -0,0 +1,70 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\RefundApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $id = $value[1]; + $amount = $value[2]; + $message = $value[3]; + $cliRefInfoArr = [ + "code" => "test_refund_capture" + ]; + $client_reference_information = new CyberSource\Model\Ptsv2paymentsClientReferenceInformation($cliRefInfoArr); + $amountDetailsArr = [ + "totalAmount" => $amount, + "currency" => "USD" + ]; + $amountDetInfo = new CyberSource\Model\Ptsv2paymentsOrderInformationAmountDetails($amountDetailsArr); + + $orderInfoArry = [ + "amountDetails" => $amountDetInfo + ]; + + $order_information = new CyberSource\Model\Ptsv2paymentsOrderInformation($orderInfoArry); + + + $paymentRequestArr = [ + "clientReferenceInformation" => $client_reference_information, + "orderInformation" => $order_information + ]; + + $paymentRequest = new CyberSource\Model\RefundCaptureRequest($paymentRequestArr); + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->refundCapture($paymentRequest, $id); + if($api_response[0]["status"] != "PENDING" ){ + + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["id"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["refundAmountDetails"]["refundAmount"] != $amount){ + $responseMessage = 'Assertion Failed : '.$api_response[1]; + } else { + $responseMessage = "Pass :".$api_response[1]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + $responseMessage = 'Failed : '.$respArr[0] ; + $message = $reasonArr["message"]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} + +?> diff --git a/test/SamplesQA/Payments/CoreServices/RefundPayment.php b/test/SamplesQA/Payments/CoreServices/RefundPayment.php new file mode 100644 index 00000000..65f65c4e --- /dev/null +++ b/test/SamplesQA/Payments/CoreServices/RefundPayment.php @@ -0,0 +1,73 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\RefundApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $id = $value[1]; + $amount = $value[2]; + $message = $value[3]; + $cliRefInfoArr = [ + "code" => "test_refund_payment" + ]; + $client_reference_information = new CyberSource\Model\Ptsv2paymentsClientReferenceInformation($cliRefInfoArr); + $amountDetailsArr = [ + "totalAmount" => $amount, + "currency" => "USD" + ]; + $amountDetInfo = new CyberSource\Model\Ptsv2paymentsOrderInformationAmountDetails($amountDetailsArr); + + $orderInfoArry = [ + "amountDetails" => $amountDetInfo + ]; + + $order_information = new CyberSource\Model\Ptsv2paymentsOrderInformation($orderInfoArry); + $paymentRequestArr = [ + "clientReferenceInformation" => $client_reference_information, + "orderInformation" => $order_information + ]; + + $paymentRequest = new CyberSource\Model\RefundPaymentRequest($paymentRequestArr); + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->refundPayment($paymentRequest, $id); + if($api_response[0]["status"] != "PENDING" ){ + + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["id"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["orderInformation"]["amountDetails"]["authorizedAmount"] != $amount){ + $responseMessage = 'Assertion Failed : '.$api_response[1]; + } else { + $responseMessage = "Pass :".$api_response[0]["status"]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])){ + $responseMessage = $respArr[0]. $reasonArr["reason"]; + } + else { + $responseMessage = $respArr[0]; + } + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } + +} + +?> diff --git a/test/SamplesQA/Payments/CoreServices/VoidCapture.php b/test/SamplesQA/Payments/CoreServices/VoidCapture.php new file mode 100644 index 00000000..87509016 --- /dev/null +++ b/test/SamplesQA/Payments/CoreServices/VoidCapture.php @@ -0,0 +1,55 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\VoidApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $id = $value[1]; + $statusInput = $value[2]; + $message = $value[3]; + $cliRefInfoArr = [ + 'code' => 'test_void' + ]; + $client_reference_information = new CyberSource\Model\Ptsv2paymentsClientReferenceInformation($cliRefInfoArr); + + $paymentRequestArr = [ + "clientReferenceInformation" => $client_reference_information + ]; + + $paymentRequest = new CyberSource\Model\VoidCaptureRequest($paymentRequestArr); + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->voidCapture($paymentRequest, $id); + if($api_response[0]["status"] != $statusInput ){ + + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["id"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + $responseMessage = 'Failed : '.$respArr[0] ; + $message = $reasonArr["message"]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} + +?> diff --git a/test/SamplesQA/Payments/CoreServices/VoidCredit.php b/test/SamplesQA/Payments/CoreServices/VoidCredit.php new file mode 100644 index 00000000..5f860bae --- /dev/null +++ b/test/SamplesQA/Payments/CoreServices/VoidCredit.php @@ -0,0 +1,56 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\VoidApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $id = $value[1]; + $statusInput = $value[2]; + $message = $value[3]; + $cliRefInfoArr = [ + 'code' => 'test_void' + ]; + $client_reference_information = new CyberSource\Model\Ptsv2paymentsClientReferenceInformation($cliRefInfoArr); + + $paymentRequestArr = [ + "clientReferenceInformation" => $client_reference_information + ]; + + $paymentRequest = new CyberSource\Model\VoidCreditRequest($paymentRequestArr); + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->voidCredit($paymentRequest, $id); + if($api_response[0]["status"] != $statusInput ){ + + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["id"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + $responseMessage = 'Failed : '.$respArr[0] ; + $message = $reasonArr["message"]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } + +} + +?> diff --git a/test/SamplesQA/Payments/CoreServices/VoidPayment.php b/test/SamplesQA/Payments/CoreServices/VoidPayment.php new file mode 100644 index 00000000..e5ea08da --- /dev/null +++ b/test/SamplesQA/Payments/CoreServices/VoidPayment.php @@ -0,0 +1,55 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\VoidApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $id = $value[1]; + $statusInput = $value[2]; + $message = $value[3]; + $cliRefInfoArr = [ + 'code' => 'test_void' + ]; + $client_reference_information = new CyberSource\Model\Ptsv2paymentsClientReferenceInformation($cliRefInfoArr); + + $paymentRequestArr = [ + "clientReferenceInformation" => $client_reference_information + ]; + + $paymentRequest = new CyberSource\Model\VoidPaymentRequest($paymentRequestArr); + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->voidPayment($paymentRequest, $id); + if($api_response[0]["status"] != $statusInput ){ + + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["id"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + $responseMessage = 'Failed : '.$respArr[0] ; + $message = $reasonArr["message"]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} + +?> diff --git a/test/SamplesQA/Payments/CoreServices/VoidRefund.php b/test/SamplesQA/Payments/CoreServices/VoidRefund.php new file mode 100644 index 00000000..683f8919 --- /dev/null +++ b/test/SamplesQA/Payments/CoreServices/VoidRefund.php @@ -0,0 +1,55 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\VoidApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $id = $value[1]; + $statusInput = $value[2]; + $message = $value[3]; + $cliRefInfoArr = [ + 'code' => 'test_refund_void' + ]; + $client_reference_information = new CyberSource\Model\Ptsv2paymentsClientReferenceInformation($cliRefInfoArr); + + $paymentRequestArr = [ + "clientReferenceInformation" => $client_reference_information + ]; + + $paymentRequest = new CyberSource\Model\VoidRefundRequest($paymentRequestArr); + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->voidRefund($paymentRequest, $id); + if($api_response[0]["status"] != $statusInput ){ + + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["id"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + $responseMessage = 'Failed : '.$respArr[0] ; + $message = $reasonArr["message"]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} + +?> diff --git a/test/SamplesQA/Payouts/CoreServices/ProcessPayout.php b/test/SamplesQA/Payouts/CoreServices/ProcessPayout.php new file mode 100644 index 00000000..106b9c1f --- /dev/null +++ b/test/SamplesQA/Payouts/CoreServices/ProcessPayout.php @@ -0,0 +1,141 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\ProcessAPayoutApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $cleintRefInfoCode = $value[1]; + $businessAppId = $value[2]; + $amount = $value[3]; + $message = $value[4]; + $cliRefInfoArr = [ + "code" => "33557799" + ]; + $client_reference_information = new CyberSource\Model\PtsV2PaymentsPost201ResponseClientReferenceInformation($cliRefInfoArr); + + $recipientInformationArr = [ + "firstName" => "John", + "lastName" => "Doe", + "address1" => "Paseo Padre Boulevard", + "locality" => "Foster City", + "administrativeArea" => "CA", + "country" => "US", + "postalCode" => "94400", + "phoneNumber" => "6504320556" + ]; + $recipientInformation = new CyberSource\Model\Ptsv2payoutsRecipientInformation($recipientInformationArr); + $accountArr = [ + "fundsSource" => "01", + "number" => "1234567890123456789012345678901234" + ]; + $account = new CyberSource\Model\Ptsv2payoutsSenderInformationAccount($accountArr); + $senderInformationArr = [ + "referenceNumber" => "1234567890", + "account" => $account, + "name" => "Company Name", + "address1" => "900 Metro Center Blvd", + "locality" => "Foster City", + "administrativeArea" => "CA", + "countryCode" => "US" + ]; + $senderInformation = new CyberSource\Model\Ptsv2payoutsSenderInformation($senderInformationArr); + + $processingInformationArr = [ + "businessApplicationId" => "FD", + "commerceIndicator" => "internet" + ]; + $processingInformation = new CyberSource\Model\Ptsv2payoutsProcessingInformation($processingInformationArr); + + $amountDetailsArr = [ + "totalAmount" => "100.00", + "currency" => "USD" + ]; + $amountDetInfo = new CyberSource\Model\Ptsv2payoutsOrderInformationAmountDetails($amountDetailsArr); + + $orderInfoArry = [ + "amountDetails" => $amountDetInfo + ]; + + $order_information = new CyberSource\Model\Ptsv2payoutsOrderInformation($orderInfoArry); + + $merchantDescriptorArr = [ + "name" => "Sending Company Name", + "locality" => "FC", + "country" => "US", + "administrativeArea" => "CA", + "postalCode" => "94440" + + ]; + $merchantDescriptor = new CyberSource\Model\Ptsv2payoutsMerchantInformationMerchantDescriptor($merchantDescriptorArr); + $merchantInformationArr = [ + "merchantDescriptor" => $merchantDescriptor + + ]; + $merchantInformation = new CyberSource\Model\Ptsv2payoutsMerchantInformation($merchantInformationArr); + + $paymentCardInfo = [ + "type" => "001", + "number" => "4111111111111111", + "expirationMonth" => "12", + "expirationYear" => "2025", + "sourceAccountType" => "CH" + ]; + $card = new CyberSource\Model\Ptsv2payoutsPaymentInformationCard($paymentCardInfo); + $paymentInfoArr = [ + "card" => $card + + ]; + $payment_information = new CyberSource\Model\Ptsv2payoutsPaymentInformation($paymentInfoArr); + + $paymentRequestArr = [ + "clientReferenceInformation" => $client_reference_information, + "recipientInformation" => $recipientInformation, + "senderInformation" => $senderInformation, + "merchantInformation" => $merchantInformation, + "orderInformation" => $order_information, + "paymentInformation" => $payment_information, + "processingInformation" => $processingInformation + ]; + + $request = new CyberSource\Model\PtsV2PayoutsPostResponse($paymentRequestArr); + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + + $api_response = $api_instance->octCreatePayment($request); + if($api_response[0]->status != "ACCEPTED" ){ + + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]->id)){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["orderInformation"]["amountDetails"]["authorizedAmount"] != $amount){ + $responseMessage = 'Assertion Failed : '.$api_response[1]; + } else { + $responseMessage = "Pass :".$api_response[0]["status"]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} + +?> diff --git a/test/SamplesQA/Reporting/CoreServices/CreateAdhocReport.php b/test/SamplesQA/Reporting/CoreServices/CreateAdhocReport.php new file mode 100644 index 00000000..015331fe --- /dev/null +++ b/test/SamplesQA/Reporting/CoreServices/CreateAdhocReport.php @@ -0,0 +1,58 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\ReportsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $reportDefinitionName = $value[1]; + $reportName = $value[2]; + $reportStartTime = $value[3]; + $reportEndTime = $value[4]; + $message = $value[5]; + $createReportRequestArr =[ + "reportDefinitionName"=> $reportDefinitionName, + "timezone"=> "GMT", + "reportMimeType"=> "text/csv", + "reportName"=> $reportName, + "reportStartTime"=> $reportStartTime, + "reportEndTime"=> $reportEndTime, + "reportPreferences"=> ["signedAmounts"=>"true","fieldNameConvention"=>"SOAPI"], + "reportFields"=>["Request.RequestID","Request.TransactionDate","Request.MerchantID"] + ]; + + + $reportRequest = new CyberSource\Model\RequestBody1($createReportRequestArr); + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->createReport($reportRequest); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/Reporting/CoreServices/CreateReportSubscriptionForReportNameByOrganization.php b/test/SamplesQA/Reporting/CoreServices/CreateReportSubscriptionForReportNameByOrganization.php new file mode 100644 index 00000000..52fbe113 --- /dev/null +++ b/test/SamplesQA/Reporting/CoreServices/CreateReportSubscriptionForReportNameByOrganization.php @@ -0,0 +1,57 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\ReportSubscriptionsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $reportDefName = $value[1]; + $repName = $value[2]; + $repFrequency = $value[3]; + $message = $value[4]; + $createReportRequestArr = [ + 'reportDefinitionName' => $reportDefName, + 'reportFields' => ["Request.RequestID", + "Request.TransactionDate", + "Request.MerchantID"], + 'reportMimeType' => 'application/xml', + 'reportFrequency' => $repFrequency, + 'reportName' => $repName, + 'timezone' => 'GMT', + 'startTime' => '1103', + 'startDay' => "3" + ]; + $reportRequest = new CyberSource\Model\RequestBody($createReportRequestArr); + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + + $api_response = $api_instance->createSubscription(null,$reportRequest); + if($api_response[1] != 201 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/Reporting/CoreServices/DeleteSubscriptionOfReportNameByOrganization.php b/test/SamplesQA/Reporting/CoreServices/DeleteSubscriptionOfReportNameByOrganization.php new file mode 100644 index 00000000..a84da8c9 --- /dev/null +++ b/test/SamplesQA/Reporting/CoreServices/DeleteSubscriptionOfReportNameByOrganization.php @@ -0,0 +1,42 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\ReportSubscriptionsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $id = $value[1]; + $message = $value[2]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + + $api_response = $api_instance->deleteSubscription($id); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/Reporting/CoreServices/DownloadReport.php b/test/SamplesQA/Reporting/CoreServices/DownloadReport.php new file mode 100644 index 00000000..db858129 --- /dev/null +++ b/test/SamplesQA/Reporting/CoreServices/DownloadReport.php @@ -0,0 +1,44 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\ReportDownloadsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $organizationId = $value[1]; + $reportName = $value[2]; + $reportDate = $value[3]; + $message = $value[4]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->downloadReport($reportDate, $reportName, $organizationId = null); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + + } + } +} +?> diff --git a/test/SamplesQA/Reporting/CoreServices/GetAllSubscriptions.php b/test/SamplesQA/Reporting/CoreServices/GetAllSubscriptions.php new file mode 100644 index 00000000..3793acda --- /dev/null +++ b/test/SamplesQA/Reporting/CoreServices/GetAllSubscriptions.php @@ -0,0 +1,40 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\ReportSubscriptionsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $message = $value[1]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->getAllSubscriptions(); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/Reporting/CoreServices/GetNotificationOfChanges.php b/test/SamplesQA/Reporting/CoreServices/GetNotificationOfChanges.php new file mode 100644 index 00000000..fd44c60e --- /dev/null +++ b/test/SamplesQA/Reporting/CoreServices/GetNotificationOfChanges.php @@ -0,0 +1,43 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\NotificationOfChangesApi($apiclient); + + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $startTime = $value[1]; + $endTime = $value[2]; + $message = $value[3]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->getNotificationOfChangeReport($startTime, $endTime); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/Reporting/CoreServices/GetPurchaseAndRefundDetails.php b/test/SamplesQA/Reporting/CoreServices/GetPurchaseAndRefundDetails.php new file mode 100644 index 00000000..547197bd --- /dev/null +++ b/test/SamplesQA/Reporting/CoreServices/GetPurchaseAndRefundDetails.php @@ -0,0 +1,44 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\PurchaseAndRefundDetailsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $startTime = $value[1]; + $endTime = $value[2]; + $organizationId = $value[3]; + $message = $value[4]; + $api_response = list($response,$statusCode,$httpHeader)=null; + + try { + $api_response = $api_instance->getPurchaseAndRefundDetails($startTime, $endTime, $organizationId = null, $paymentSubtype = 'ALL', $viewBy = 'requestDate', $groupName = null, $offset = null, $limit = '2000'); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/Reporting/CoreServices/GetReportBasedOnReportid.php b/test/SamplesQA/Reporting/CoreServices/GetReportBasedOnReportid.php new file mode 100644 index 00000000..4c327eca --- /dev/null +++ b/test/SamplesQA/Reporting/CoreServices/GetReportBasedOnReportid.php @@ -0,0 +1,49 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\ReportsApi($apiclient); + //$reportId = "79642c43-2368-0cd5-e053-a2588e0a7b3c"; + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $orgId = $value[1]; + $reportId = $value[2]; + $message = $value[3]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->getReportByReportId($reportId,$orgId); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }elseif($api_response[0]["reportId"] != $reportId){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }elseif($api_response[0]["organizationId"] != $orgId){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/Reporting/CoreServices/GetReportDefinition.php b/test/SamplesQA/Reporting/CoreServices/GetReportDefinition.php new file mode 100644 index 00000000..0fec83f8 --- /dev/null +++ b/test/SamplesQA/Reporting/CoreServices/GetReportDefinition.php @@ -0,0 +1,44 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\ReportDefinitionsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $reportDefinitionName = $value[1]; + $message = $value[2]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->getResourceInfoByReportDefinition($reportDefinitionName, $organizationId = null); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }elseif($api_response[0]["reportDefintionName"] != $reportDefinitionName){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/Reporting/CoreServices/GetReportingResourceInformation.php b/test/SamplesQA/Reporting/CoreServices/GetReportingResourceInformation.php new file mode 100644 index 00000000..290a6475 --- /dev/null +++ b/test/SamplesQA/Reporting/CoreServices/GetReportingResourceInformation.php @@ -0,0 +1,41 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\ReportDefinitionsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $organizationId = $value[1]; + $message = $value[2]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->getResourceV2Info($organizationId); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/Reporting/CoreServices/GetSubscriptionForReportName.php b/test/SamplesQA/Reporting/CoreServices/GetSubscriptionForReportName.php new file mode 100644 index 00000000..830e55c2 --- /dev/null +++ b/test/SamplesQA/Reporting/CoreServices/GetSubscriptionForReportName.php @@ -0,0 +1,44 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\ReportSubscriptionsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $reportName = $value[1]; + $message = $value[2]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->getSubscription($reportName); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }elseif($api_response[0]["reportName"] != $reportName){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/Reporting/CoreServices/RetrieveAvailableReports.php b/test/SamplesQA/Reporting/CoreServices/RetrieveAvailableReports.php new file mode 100644 index 00000000..ffe493c1 --- /dev/null +++ b/test/SamplesQA/Reporting/CoreServices/RetrieveAvailableReports.php @@ -0,0 +1,44 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\ReportsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $startTime = $value[1]; + $endTime = $value[2]; + $timeQueryType = $value[3]; + $message = $value[4]; + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->searchReports($startTime, $endTime, $timeQueryType); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/SecureFileShare/CoreServices/DownloadFileWithFileIdentifier.php b/test/SamplesQA/SecureFileShare/CoreServices/DownloadFileWithFileIdentifier.php new file mode 100644 index 00000000..ad13f1da --- /dev/null +++ b/test/SamplesQA/SecureFileShare/CoreServices/DownloadFileWithFileIdentifier.php @@ -0,0 +1,47 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\SecureFileShareApi($apiclient); + + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $organizationId = $value[1]; + $fileId = $value[2]; + $message = $value[3]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->getFile($fileId, $organizationId = "testrest"); + if(empty($api_response[0] != null )){ + $responseMessage = 'Assertion Failed : ' .$api_response[0]; + + }else if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else{ + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} + +?> \ No newline at end of file diff --git a/test/SamplesQA/SecureFileShare/CoreServices/GetListOfFiles.php b/test/SamplesQA/SecureFileShare/CoreServices/GetListOfFiles.php new file mode 100644 index 00000000..c507cffa --- /dev/null +++ b/test/SamplesQA/SecureFileShare/CoreServices/GetListOfFiles.php @@ -0,0 +1,44 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\SecureFileShareApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $organizationId = $value[1]; + $startDate = $value[2]; + $endDate = $value[3]; + $message = $value[4]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->getFileDetails($startDate, $endDate, $organizationId); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} + +?> \ No newline at end of file diff --git a/test/SamplesQA/TMS/CoreServices/CreateInstrumentIdentifier.php b/test/SamplesQA/TMS/CoreServices/CreateInstrumentIdentifier.php new file mode 100644 index 00000000..ccd7ae56 --- /dev/null +++ b/test/SamplesQA/TMS/CoreServices/CreateInstrumentIdentifier.php @@ -0,0 +1,85 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\InstrumentIdentifiersApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $prevTransId = $value[1]; + $profileId = $value[2]; + $message = $value[3]; + + $tmsCardInfo = [ + "number" => "1234567890987200" + ]; + $card = new CyberSource\Model\Tmsv1instrumentidentifiersCard($tmsCardInfo); + $merchantInitiatedTransactionArr = [ + "previousTransactionId" => $prevTransId + + ]; + $merchantInitiatedTransaction = new CyberSource\Model\Tmsv1InitiatorMerchantInitiatedTransaction($merchantInitiatedTransactionArr); + + + $initiatorInfoArr = [ + "merchantInitiatedTransaction" => $merchantInitiatedTransaction + + ]; + $initiatorInformation = new CyberSource\Model\Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiator($initiatorInfoArr); + + $authorizationOptionsArr = [ + 'initiator' => $initiatorInformation + + ]; + $authorizationOptions = new CyberSource\Model\Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptions( $authorizationOptionsArr); + + $processingInformationArr = [ + "authorizationOptions" => $authorizationOptions + + ]; + $processingInformation = new CyberSource\Model\Tmsv1instrumentidentifiersProcessingInformation($processingInformationArr); + + $tmsRequestArr = [ + "card" => $card, + "processingInformation" => $processingInformation + ]; + + $tmsRequest = new CyberSource\Model\Body($tmsRequestArr); + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->tmsV1InstrumentidentifiersPost($profileId, $tmsRequest); + if($api_response[0]["state"] != "ACTIVE" ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]["id"])){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["processingInformation"]["authorizationOptions"]["initiator"]["merchantInitiatedTransaction"]["previousTransactionId"] != $prevTransId){ + $responseMessage = 'Assertion Failed : '.$api_response[1]; + }else { + $responseMessage = "Pass :".$api_response[0]["status"]. " - ".$api_response[0]["id"]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/TMS/CoreServices/CreatePaymentInstrument.php b/test/SamplesQA/TMS/CoreServices/CreatePaymentInstrument.php new file mode 100644 index 00000000..ffd5cf3e --- /dev/null +++ b/test/SamplesQA/TMS/CoreServices/CreatePaymentInstrument.php @@ -0,0 +1,90 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\PaymentInstrumentsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $profileId = $value[1]; + $message = $value[2]; + $tmsCardInfo = [ + "expirationMonth" => "09", + "expirationYear" => "2022", + "type" => "visa" + ]; + $card = new CyberSource\Model\Tmsv1paymentinstrumentsCard($tmsCardInfo); + + $tmsBillToArr = [ + "firstName" => "John", + "lastName" => "Deo", + "company" => "CyberSource", + "address1" => "12 Main Street", + "address2" => "20 My Street", + "locality" => "Foster City", + "administrativeArea" => "CA", + "postalCode" => "90200", + "country" => "US", + "email" => "john.smith@example.com", + "phoneNumber" => "555123456" + ]; + $tmsBillTo = new CyberSource\Model\Tmsv1paymentinstrumentsBillTo($tmsBillToArr); + + $cardArr = [ + "number" => "4111111111111111" + ]; + $instrumentidentifiersCard = new CyberSource\Model\Tmsv1instrumentidentifiersCard($cardArr); + + $instrumentidentifiersArr = [ + "card" => $instrumentidentifiersCard + ]; + $instrumentidentifier = new CyberSource\Model\Tmsv1paymentinstrumentsInstrumentIdentifier($instrumentidentifiersArr); + + $tmsRequestArr = [ + "card" => $card, + "billTo" => $tmsBillTo, + "instrumentIdentifier" => $instrumentidentifier + ]; + $tmsRequest = new CyberSource\Model\Body2($tmsRequestArr); + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + + $api_response = $api_instance->tmsV1PaymentinstrumentsPost($profileId, $tmsRequest); + + if($api_response[0]->state != "ACTIVE" ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(empty($api_response[0]->id)){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + if($api_response[1] >= 200 && $api_response[1] <= 299){ + $responseMessage = "Pass :".$api_response[0]->state. " - ".$api_response[0]->id; + }else{ + $responseMessage = "FAIL :".$api_response[1]. " - ".$api_response[0]->id; + } + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } + +} +?> diff --git a/test/SamplesQA/TMS/CoreServices/DeleteInstrumentIdentifier.php b/test/SamplesQA/TMS/CoreServices/DeleteInstrumentIdentifier.php new file mode 100644 index 00000000..09179dd5 --- /dev/null +++ b/test/SamplesQA/TMS/CoreServices/DeleteInstrumentIdentifier.php @@ -0,0 +1,42 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\InstrumentIdentifierApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $profileId = $value[1]; + $tokenId = $value[2]; + $message = $value[3]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->tmsV1InstrumentidentifiersTokenIdDelete($profileId, $tokenId); + if($api_response[1] != 204 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])){ + $responseMessage = $respArr[0]. $reasonArr["reason"]; + } else { + $responseMessage = $respArr[0]; + } + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } + +} +?> diff --git a/test/SamplesQA/TMS/CoreServices/DeletePaymentInstrument.php b/test/SamplesQA/TMS/CoreServices/DeletePaymentInstrument.php new file mode 100644 index 00000000..aca85bad --- /dev/null +++ b/test/SamplesQA/TMS/CoreServices/DeletePaymentInstrument.php @@ -0,0 +1,42 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\PaymentInstrumentsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $profileId = $value[1]; + $tokenId = $value[2]; + $message = $value[3]; + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->tmsV1PaymentinstrumentsTokenIdDelete($profileId, $tokenId); + if($api_response[1] != 204 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass : ".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])){ + $responseMessage = $respArr[0]. $reasonArr["reason"]; + } else { + $responseMessage = $respArr[0]; + } + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/TMS/CoreServices/RetrieveAllPaymentInstruments.php b/test/SamplesQA/TMS/CoreServices/RetrieveAllPaymentInstruments.php new file mode 100644 index 00000000..a82cf855 --- /dev/null +++ b/test/SamplesQA/TMS/CoreServices/RetrieveAllPaymentInstruments.php @@ -0,0 +1,48 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\PaymentInstrumentsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $profileId = $value[1]; + $tokenId = $value[2]; + $message = $value[3]; + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->tmsV1InstrumentidentifiersTokenIdPaymentinstrumentsGet($profileId, $tokenId); + $tokenlinkArr = explode("/", $api_response[0]["links"]["self"]["href"]); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if( $tokenId != $tokenlinkArr[6]){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$tokenlinkArr[6]. " - ".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])){ + $responseMessage = $respArr[0]. $reasonArr["reason"]; + } else { + $responseMessage = $respArr[0]; + } + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } + +} +?> diff --git a/test/SamplesQA/TMS/CoreServices/RetrieveInstrumentIdentifier.php b/test/SamplesQA/TMS/CoreServices/RetrieveInstrumentIdentifier.php new file mode 100644 index 00000000..1537bd74 --- /dev/null +++ b/test/SamplesQA/TMS/CoreServices/RetrieveInstrumentIdentifier.php @@ -0,0 +1,50 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\InstrumentIdentifierApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $profileId = $value[1]; + $tokenId = $value[2]; + $message = $value[3]; + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->tmsV1InstrumentidentifiersTokenIdGet($profileId, $tokenId); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["state"] != "ACTIVE" ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(trim($api_response[0]["id"]) != trim($tokenId)){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[0]["id"]. " - ".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])){ + $responseMessage = $respArr[0]. $reasonArr["reason"]; + } else { + $responseMessage = $respArr[0]; + } + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } + +} +?> diff --git a/test/SamplesQA/TMS/CoreServices/RetrievePaymentInstrument.php b/test/SamplesQA/TMS/CoreServices/RetrievePaymentInstrument.php new file mode 100644 index 00000000..8f7d3381 --- /dev/null +++ b/test/SamplesQA/TMS/CoreServices/RetrievePaymentInstrument.php @@ -0,0 +1,49 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\PaymentInstrumentsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $profileId = $value[1]; + $tokenId = $value[2]; + $message = $value[3]; + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->tmsV1PaymentinstrumentsTokenIdGet($profileId, $tokenId); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["state"] != "ACTIVE" ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(trim($api_response[0]["id"]) != trim($tokenId)){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[0]["id"]. " - ".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])){ + $responseMessage = $respArr[0]. $reasonArr["reason"]; + } else { + $responseMessage = $respArr[0]; + } + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/TMS/CoreServices/UpdateInstrumentIdentifier.php b/test/SamplesQA/TMS/CoreServices/UpdateInstrumentIdentifier.php new file mode 100644 index 00000000..8f09bb86 --- /dev/null +++ b/test/SamplesQA/TMS/CoreServices/UpdateInstrumentIdentifier.php @@ -0,0 +1,83 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\InstrumentIdentifierApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $profileId = $value[1]; + $tokenId = $value[2]; + $message = $value[3]; + $tmsCardInfo = [ + "number" => "1234567890987654" + ]; + $card = new CyberSource\Model\Tmsv1instrumentidentifiersCard($tmsCardInfo); + $merchantInitiatedTransactionArr = [ + "previousTransactionId" => "123456789012345" + + ]; + $merchantInitiatedTransaction = new CyberSource\Model\Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiatorMerchantInitiatedTransaction($merchantInitiatedTransactionArr); + + + $initiatorInfoArr = [ + "merchantInitiatedTransaction" => $merchantInitiatedTransaction + + ]; + $initiatorInformation = new CyberSource\Model\Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiator($initiatorInfoArr); + + $authorizationOptionsArr = [ + 'initiator' => $initiatorInformation + + ]; + $authorizationOptions = new CyberSource\Model\Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptions( $authorizationOptionsArr); + + $processingInformationArr = [ + "authorizationOptions" => $authorizationOptions + + ]; + $processingInformation = new CyberSource\Model\Tmsv1instrumentidentifiersProcessingInformation($processingInformationArr); + + $tmsRequestArr = [ + "processingInformation" => $processingInformation + ]; + + $tmsRequest = new CyberSource\Model\Body($tmsRequestArr); + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + + $api_response = $api_instance->tmsV1InstrumentidentifiersTokenIdPatch($profileId, $tokenId, $tmsRequest); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["state"] != "ACTIVE" ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(trim($api_response[0]["id"]) != trim($tokenId)){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[0]["id"]. " - ".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])){ + $responseMessage = $respArr[0]. $reasonArr["reason"]; + } else { + $responseMessage = $respArr[0]; + } + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> \ No newline at end of file diff --git a/test/SamplesQA/TMS/CoreServices/UpdatePaymentInstrument.php b/test/SamplesQA/TMS/CoreServices/UpdatePaymentInstrument.php new file mode 100644 index 00000000..8de650fe --- /dev/null +++ b/test/SamplesQA/TMS/CoreServices/UpdatePaymentInstrument.php @@ -0,0 +1,87 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\PaymentInstrumentsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $profileId = $value[1]; + $tokenId = $value[2]; + $message = $value[3]; + $tmsCardInfo = [ + "expirationMonth" => "09", + "expirationYear" => "2022", + "type" => "visa" + ]; + $card = new CyberSource\Model\Tmsv1paymentinstrumentsCard($tmsCardInfo); + + $tmsBillToArr = [ + "firstName" => "John", + "lastName" => "Deo", + "company" => "CyberSource", + "address1" => "12 Main Street", + "address2" => "20 My Street", + "locality" => "Foster City", + "administrativeArea" => "CA", + "postalCode" => "90200", + "country" => "US", + "email" => "john.smith@example.com", + "phoneNumber" => "555123456" + ]; + $tmsBillTo = new CyberSource\Model\Tmsv1paymentinstrumentsBillTo($tmsBillToArr); + $cardArr = [ + "number" => "4111111111111111" + ]; + $instrumentidentifiersCard = new CyberSource\Model\Tmsv1instrumentidentifiersCard($cardArr); + + $strumentidentifiersArr = [ + "card" => $instrumentidentifiersCard ]; + + $instrumentIdentifier = new CyberSource\Model\Tmsv1paymentinstrumentsInstrumentIdentifier($strumentidentifiersArr); + $tmsRequestArr = [ + "card" => $card, + "billTo" => $tmsBillTo, + "instrumentIdentifier" => $instrumentIdentifier + ]; + $tmsRequest = new CyberSource\Model\Body3($tmsRequestArr); + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + + $api_response = $api_instance->tmsV1PaymentinstrumentsTokenIdPatch($profileId, $tokenId, $tmsRequest); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["state"] != "ACTIVE" ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if(trim($api_response[0]["id"]) != trim($tokenId)){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[0]["id"]. " - ".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])){ + $responseMessage = $respArr[0]. $reasonArr["reason"]; + } else { + $responseMessage = $respArr[0]; + } + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } + +} +?> diff --git a/test/SamplesQA/TransactionBatches/CoreServices/GetIndividualBatchFile.php b/test/SamplesQA/TransactionBatches/CoreServices/GetIndividualBatchFile.php new file mode 100644 index 00000000..9b8b0dd5 --- /dev/null +++ b/test/SamplesQA/TransactionBatches/CoreServices/GetIndividualBatchFile.php @@ -0,0 +1,45 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\TransactionBatchApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $id = $value[1]; + $message = $value[2]; + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->ptsV1TransactionBatchesIdGet($id); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]->id != $id){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[0]->status. " - ".$api_response[0]->id; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/TransactionBatches/CoreServices/GetListOfBatchFiles.php b/test/SamplesQA/TransactionBatches/CoreServices/GetListOfBatchFiles.php new file mode 100644 index 00000000..c933f1f9 --- /dev/null +++ b/test/SamplesQA/TransactionBatches/CoreServices/GetListOfBatchFiles.php @@ -0,0 +1,43 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\TransactionBatchesApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $startTime = $value[1]; + $endTime = $value[2]; + $message = $value[3]; + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->ptsV1TransactionBatchesGet($startTime, $endTime); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/TransactionDetails/CoreServices/RetrieveTransaction.php b/test/SamplesQA/TransactionDetails/CoreServices/RetrieveTransaction.php new file mode 100644 index 00000000..d008dd07 --- /dev/null +++ b/test/SamplesQA/TransactionDetails/CoreServices/RetrieveTransaction.php @@ -0,0 +1,42 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\TransactionDetailsApi($apiclient); + + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $id = $value[1]; + $message = $value[2]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->getTransaction($id); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[0]->status. " - ".$api_response[0]->id; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/TransactionSearch/CoreServices/CreateSearchRequest.php b/test/SamplesQA/TransactionSearch/CoreServices/CreateSearchRequest.php new file mode 100644 index 00000000..1ae72bcf --- /dev/null +++ b/test/SamplesQA/TransactionSearch/CoreServices/CreateSearchRequest.php @@ -0,0 +1,57 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\SearchTransactionsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $name = $value[1]; + $query = $value[2]; + $message = $value[3]; + $createSearchRequestArr = [ + "save"=> "false", + "name"=> "TSS search", + "timezone"=> "America/Chicago", + "query"=> "clientReferenceInformation.code:12345", + "offset"=> 0, + "limit"=> 100, + "sort"=> "id:asc, submitTimeUtc:asc" + ]; + $createSearchRequest = new CyberSource\Model\TssV2TransactionsPostResponse($createSearchRequestArr); + $api_response = list($response,$statusCode,$httpHeader)=null; + + try { + + $api_response = $api_instance->createSearch($createSearchRequest); + if($api_response[1] != 201 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]->name != $name){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/TransactionSearch/CoreServices/GetSearchResults.php b/test/SamplesQA/TransactionSearch/CoreServices/GetSearchResults.php new file mode 100644 index 00000000..a6986d3f --- /dev/null +++ b/test/SamplesQA/TransactionSearch/CoreServices/GetSearchResults.php @@ -0,0 +1,45 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\SearchTransactionsApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $id = $value[1]; + $message = $value[2]; + + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->getSearch($id); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]->searchId != $id){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } +} +?> diff --git a/test/SamplesQA/UserManagement/CoreServices/GetUserInformation.php b/test/SamplesQA/UserManagement/CoreServices/GetUserInformation.php new file mode 100644 index 00000000..2582a100 --- /dev/null +++ b/test/SamplesQA/UserManagement/CoreServices/GetUserInformation.php @@ -0,0 +1,48 @@ +ConnectionHost(); + $apiclient = new CyberSource\ApiClient($config); + $api_instance = new CyberSource\Api\UserManagementApi($apiclient); + foreach($dynamicDataArr as $value) + { + $testId = $value[0]; + $orgId = $value[1]; + $userName = $value[2]; + $permissionId = $value[3]; + $roleId = $value[4]; + $message = $value[5]; + $api_response = list($response,$statusCode,$httpHeader)=null; + try { + $api_response = $api_instance->getUsers($organizationId = 'testrest', $userName = null, $permissionId = null, $roleId = null); + if($api_response[1] != 200 ){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else if($api_response[0]["users"][1]["organizationInformation"]["organizationId"] != $orgId){ + $responseMessage = 'Assertion Failed : ' .$api_response[1]; + + }else { + $responseMessage = "Pass :".$api_response[1]; + } + + } catch (Cybersource\ApiException $e) { + $reasonArr= $e->getResponseObject(); + $respArr = explode(" ", $e->getMessage()); + if(isset($reasonArr["reason"])) + $responseMessage = $respArr[0]. $reasonArr["reason"]; + else + $responseMessage = $respArr[0]; + + } + $commonElement->CallTestLogging($testId, $apiName, $responseMessage, $message); + } + } + +} +?>