public void IllFormedCredentialsTest() { LogHelper.info(Logger, "CreateProfileWithCreateTransactionRequestTest"); var badCredentials = new merchantAuthenticationType { name = "mbld_api_-NPA5n9k", Item = "123123" }; //, ItemElementName = ItemChoiceType.transactionKey }; ApiOperationBase<ANetApiRequest, ANetApiResponse>.MerchantAuthentication = badCredentials; ApiOperationBase<ANetApiRequest, ANetApiResponse>.RunEnvironment = TestEnvironment; //create request var getCpReq = new getCustomerProfileRequest { customerProfileId = "1234" }; try { var getCpCont = new getCustomerProfileController(getCpReq); getCpCont.Execute(); Assert.Fail("You should not reach here"); } catch (Exception e) { Console.WriteLine("An exception expected: " + e.Message); } }
public void InvalidCredentialsTest() { LogHelper.info(Logger, "CreateProfileWithCreateTransactionRequestTest"); var badCredentials = new merchantAuthenticationType { name = "mbld_api_-NPA5n9k", Item = "123123", ItemElementName = ItemChoiceType.transactionKey }; ApiOperationBase<ANetApiRequest, ANetApiResponse>.MerchantAuthentication = badCredentials; ApiOperationBase<ANetApiRequest, ANetApiResponse>.RunEnvironment = TestEnvironment; //create request var getCpReq = new getCustomerProfileRequest { customerProfileId = "1234" }; var getCpCont = new getCustomerProfileController(getCpReq); getCpCont.Execute(); getCustomerProfileResponse getCpResp = getCpCont.GetApiResponse(); Assert.AreEqual("E00007", ((AuthorizeNet.Api.Contracts.V1.ANetApiResponse)(getCpResp)).messages.message[0].code); ValidateErrorCode(((AuthorizeNet.Api.Contracts.V1.ANetApiResponse)(getCpResp)).messages, "E00007"); }
public static void merchantAuthenticationType(merchantAuthenticationType argument) { if (null != argument) { if (argument.Item is fingerPrintType) { fingerPrintType(argument.Item as fingerPrintType); } if (argument.Item is impersonationAuthenticationType) { impersonationAuthenticationType(argument.Item as impersonationAuthenticationType); } } }
private string CreateSubscription( merchantAuthenticationType merchantAuthentication, string RefId) { //create a new subscription //RequestFactoryWithSpecified.paymentType(ArbSubscriptionOne.payment); //RequestFactoryWithSpecified.paymentScheduleType(ArbSubscriptionOne.paymentSchedule); //RequestFactoryWithSpecified.ARBSubscriptionType(ArbSubscriptionOne); var createRequest = new ARBCreateSubscriptionRequest { merchantAuthentication = merchantAuthentication, refId = RefId, subscription = ArbSubscriptionOne, }; var createResponse = ExecuteTestRequestWithSuccess<ARBCreateSubscriptionRequest, ARBCreateSubscriptionResponse, ARBCreateSubscriptionController>(createRequest, TestEnvironment); Assert.IsNotNull(createResponse.subscriptionId); LogHelper.info( Logger, "Created Subscription: {0}", createResponse.subscriptionId); return createResponse.subscriptionId; }
private ARBSubscriptionStatusEnum GetSubscription(merchantAuthenticationType merchantAuthentication, String subscriptionId) { //get a subscription var getRequest = new ARBGetSubscriptionStatusRequest { merchantAuthentication = merchantAuthentication, refId = RefId, subscriptionId = subscriptionId }; var getResponse = ExecuteTestRequestWithSuccess<ARBGetSubscriptionStatusRequest, ARBGetSubscriptionStatusResponse, ARBGetSubscriptionStatusController>(getRequest, TestEnvironment); Assert.IsNotNull(getResponse.status); Logger.info(String.Format("Subscription Status: {0}", getResponse.status)); return getResponse.status; }
private void CancelSubscription(merchantAuthenticationType merchantAuthentication, String subscriptionId) { //cancel the subscription var cancelRequest = new ARBCancelSubscriptionRequest { merchantAuthentication = merchantAuthentication, refId = RefId, subscriptionId = subscriptionId }; var cancelResponse = ExecuteTestRequestWithSuccess<ARBCancelSubscriptionRequest, ARBCancelSubscriptionResponse, ARBCancelSubscriptionController>(cancelRequest, TestEnvironment); Assert.IsNotNull(cancelResponse.messages); Logger.info(String.Format("Subscription Cancelled: {0}", subscriptionId)); }
private ARBGetSubscriptionListRequest SetupSubscriptionListRequest(merchantAuthenticationType merchantAuthentication) { var sorting = new ARBGetSubscriptionListSorting { orderDescending = true, orderBy = ARBGetSubscriptionListOrderFieldEnum.createTimeStampUTC, }; var paging = new Paging { limit = 500, offset = 1, }; var listRequest = new ARBGetSubscriptionListRequest { merchantAuthentication = merchantAuthentication, refId = RefId, searchType = ARBGetSubscriptionListSearchTypeEnum.subscriptionActive, sorting = sorting, paging = paging, }; return listRequest; }
public static void merchantAuthenticationType ( merchantAuthenticationType request) { }