ruạṛ
<?php // // WARNING: Do not edit by hand, this file was generated by Crank: // https://github.com/gocardless/crank // namespace GoCardlessPro\Integration; class BillingRequestFlowsIntegrationTest extends IntegrationTestBase { public function testResourceModelExists() { $obj = new \GoCardlessPro\Resources\BillingRequestFlow(array()); $this->assertNotNull($obj); } public function testBillingRequestFlowsCreate() { $fixture = $this->loadJsonFixture('billing_request_flows')->create; $this->stub_request($fixture); $service = $this->client->billingRequestFlows(); $response = call_user_func_array(array($service, 'create'), (array)$fixture->url_params); $body = $fixture->body->billing_request_flows; $this->assertInstanceOf('\GoCardlessPro\Resources\BillingRequestFlow', $response); $this->assertEquals($body->authorisation_url, $response->authorisation_url); $this->assertEquals($body->auto_fulfil, $response->auto_fulfil); $this->assertEquals($body->created_at, $response->created_at); $this->assertEquals($body->exit_uri, $response->exit_uri); $this->assertEquals($body->expires_at, $response->expires_at); $this->assertEquals($body->id, $response->id); $this->assertEquals($body->language, $response->language); $this->assertEquals($body->links, $response->links); $this->assertEquals($body->lock_bank_account, $response->lock_bank_account); $this->assertEquals($body->lock_currency, $response->lock_currency); $this->assertEquals($body->lock_customer_details, $response->lock_customer_details); $this->assertEquals($body->prefilled_bank_account, $response->prefilled_bank_account); $this->assertEquals($body->prefilled_customer, $response->prefilled_customer); $this->assertEquals($body->redirect_uri, $response->redirect_uri); $this->assertEquals($body->session_token, $response->session_token); $this->assertEquals($body->show_redirect_buttons, $response->show_redirect_buttons); $this->assertEquals($body->show_success_redirect_button, $response->show_success_redirect_button); $expectedPathRegex = $this->extract_resource_fixture_path_regex($fixture); $dispatchedRequest = $this->history[0]['request']; $this->assertRegExp($expectedPathRegex, $dispatchedRequest->getUri()->getPath()); } public function testBillingRequestFlowsInitialise() { $fixture = $this->loadJsonFixture('billing_request_flows')->initialise; $this->stub_request($fixture); $service = $this->client->billingRequestFlows(); $response = call_user_func_array(array($service, 'initialise'), (array)$fixture->url_params); $body = $fixture->body->billing_request_flows; $this->assertInstanceOf('\GoCardlessPro\Resources\BillingRequestFlow', $response); $this->assertEquals($body->authorisation_url, $response->authorisation_url); $this->assertEquals($body->auto_fulfil, $response->auto_fulfil); $this->assertEquals($body->created_at, $response->created_at); $this->assertEquals($body->exit_uri, $response->exit_uri); $this->assertEquals($body->expires_at, $response->expires_at); $this->assertEquals($body->id, $response->id); $this->assertEquals($body->language, $response->language); $this->assertEquals($body->links, $response->links); $this->assertEquals($body->lock_bank_account, $response->lock_bank_account); $this->assertEquals($body->lock_currency, $response->lock_currency); $this->assertEquals($body->lock_customer_details, $response->lock_customer_details); $this->assertEquals($body->prefilled_bank_account, $response->prefilled_bank_account); $this->assertEquals($body->prefilled_customer, $response->prefilled_customer); $this->assertEquals($body->redirect_uri, $response->redirect_uri); $this->assertEquals($body->session_token, $response->session_token); $this->assertEquals($body->show_redirect_buttons, $response->show_redirect_buttons); $this->assertEquals($body->show_success_redirect_button, $response->show_success_redirect_button); $expectedPathRegex = $this->extract_resource_fixture_path_regex($fixture); $dispatchedRequest = $this->history[0]['request']; $this->assertRegExp($expectedPathRegex, $dispatchedRequest->getUri()->getPath()); } }
cải xoăn