Exemplo n.º 1
0
        public void It_should_get_transaction_by_oauth_token_and_id()
        {
            // arrange
            const string transactionId = "1240235"; // Todo: Remove TransactionId

            var transactionService = new DwollaTransactionService();

            // act
            DwollaResponse <DwollaTransaction> response = transactionService
                                                          .GetById(transactionId, TestOAuthToken);

            // assert
            response.Success.ShouldBeTrue();
        }
Exemplo n.º 2
0
        public void It_should_get_transaction_by_app_credentials()
        {
            // arrange
            const string transactionId = "1240235"; // Todo: Remove transactionId

            var transactionService = new DwollaTransactionService();

            // act
            DwollaResponse <DwollaTransaction> response = transactionService
                                                          .GetById(transactionId, TestAppKey, TestAppSecret);

            // assert
            response.Success.ShouldBeTrue();
        }
Exemplo n.º 3
0
        public void It_should_retrieve_transaction_stats_by_oauth()
        {
            // arrange
            var transactionService = new DwollaTransactionService();

            var options = new TransactionStatsOptions {
                // OAuth token required
                OAuthToken = TestOAuthToken,

                // get transactions from the previous month
                StartDate = DateTime.Now.AddMonths(-1).ToString()
            };

            // act
            DwollaResponse <DwollaTransactionStats> response = transactionService
                                                               .GetTransactionStats(options);

            // assert
            response.Success.ShouldBeTrue();
        }
Exemplo n.º 4
0
        public void It_should_list_a_users_transactions()
        {
            // arrange
            var transactionService = new DwollaTransactionService();

            var options = new ListTransactionOptions {
                // OAuth token required
                OAuthToken = TestOAuthToken,

                // get transactions from last 2 days
                SinceDate = DateTime.Now.AddDays(-2).ToString()
            };

            // act
            DwollaResponse <IList <DwollaTransaction> > response = transactionService
                                                                   .GetByUser(options);

            // assert
            response.Success.ShouldBeTrue();
        }
Exemplo n.º 5
0
        public void It_should_send_funds()
        {
            // arrange
            var transactionService = new DwollaTransactionService();

            var options = new SendTransactionOptions {
                OAuthToken        = TestOAuthToken,
                Pin               = TestPin,
                DestinationId     = _dwollaReflectorId,
                Amount            = 1,
                FacilitatorAmount = 0
            };

            // act
            DwollaResponse <string> response = transactionService
                                               .SendFunds(options);

            // a successful transaction returns a transactionId

            // assert
            response.Success.ShouldBeTrue();
        }