-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #399 from omise/release-v5.3.1
Bump v5.3.1
- Loading branch information
Showing
8 changed files
with
114 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<?php | ||
|
||
use PHPUnit\Framework\TestCase; | ||
|
||
class Omise_Capabilities_Test extends TestCase | ||
{ | ||
private $omiseSettingMock; | ||
|
||
private $omiseCapabilitiesMock; | ||
|
||
/** | ||
* setup add_action and do_action before the test run | ||
*/ | ||
public function setUp(): void | ||
{ | ||
require_once __DIR__ . '/../../../includes/class-omise-capabilities.php'; | ||
$this->omiseSettingMock = Mockery::mock('alias:Omise_Setting'); | ||
$this->omiseCapabilitiesMock = Mockery::mock('alias:OmiseCapabilities'); | ||
} | ||
|
||
/** | ||
* close mockery after test cases are done | ||
*/ | ||
public function tearDown(): void | ||
{ | ||
Mockery::close(); | ||
} | ||
|
||
/** | ||
* @dataProvider retrieve_data_provider | ||
* @runInSeparateProcess | ||
* @covers Omise_Capabilities | ||
*/ | ||
public function test_retrieve_should_return_value_when_it_should_call_api($isCheckout, $isThankYouPage, $isAdmin, $adminPageName, $expected) | ||
{ | ||
// assigning to global variable, so that we can use in child functions | ||
$GLOBALS['isCheckout'] = $isCheckout; | ||
$GLOBALS['isThankYouPage'] = $isThankYouPage; | ||
$GLOBALS['isAdmin'] = $isAdmin; | ||
|
||
// mocking page name | ||
$_GET['page'] = $adminPageName; | ||
|
||
function is_checkout() { return $GLOBALS['isCheckout']; } | ||
function is_wc_endpoint_url($page) { return $GLOBALS['isThankYouPage']; } | ||
function is_admin() { return $GLOBALS['isAdmin']; } | ||
|
||
if ($expected) { | ||
$this->omiseSettingMock->shouldReceive('instance')->andReturn($this->omiseSettingMock); | ||
$this->omiseSettingMock->shouldReceive('public_key')->andReturn('pkey_xxx'); | ||
$this->omiseSettingMock->shouldReceive('secret_key')->andReturn('skey_xxx'); | ||
$this->omiseCapabilitiesMock->shouldReceive('retrieve')->once(); | ||
$result = Omise_Capabilities::retrieve(); | ||
$this->assertEquals('Omise_Capabilities', get_class($result)); | ||
} else { | ||
$result = Omise_Capabilities::retrieve(); | ||
$this->assertEquals(null, $result); | ||
} | ||
} | ||
|
||
/** | ||
* Data provider for toSubunitReturnCorrectFormat | ||
*/ | ||
public function retrieve_data_provider() | ||
{ | ||
return [ | ||
// checkout page and not thank you page | ||
[true, false, false, '', true], | ||
// // checkout page and also thank you page | ||
[true, true, false, '', false], | ||
// // omise setting page | ||
[true, true, true, 'omise', true], | ||
// // other admin page | ||
[true, true, true, 'other-page', false], | ||
// // non checkout page and also no-admin page | ||
[false, false, false, 'other-page', false], | ||
// // non checkout page, non admin page | ||
[false, false, false, '', false], | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
<?php | ||
|
||
use PHPunit\Framework\TestCase; | ||
use Mockery; | ||
|
||
abstract class Offsite_Test extends TestCase | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
<?php | ||
|
||
use Omise; | ||
use Mockery; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class Omise_Test extends TestCase | ||
|