-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ApigeeEdgeKernelTestBase as base class for Kernel testcases for…
… Hybrid org (#981)
- Loading branch information
1 parent
647289b
commit 4b31084
Showing
4 changed files
with
90 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<?php | ||
|
||
/** | ||
* Copyright 2023 Google Inc. | ||
* | ||
* This program is free software; you can redistribute it and/or modify it under | ||
* the terms of the GNU General Public License version 2 as published by the | ||
* Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public | ||
* License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program; if not, write to the Free Software Foundation, Inc., 51 | ||
* Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
*/ | ||
|
||
namespace Drupal\Tests\apigee_edge\Kernel\ApigeeX; | ||
|
||
use Drupal\apigee_edge\OauthTokenFileStorage; | ||
use Drupal\apigee_edge\Plugin\EdgeKeyTypeInterface; | ||
use Drupal\KernelTests\KernelTestBase; | ||
|
||
/** | ||
* Base class for kernel tests. | ||
*/ | ||
abstract class ApigeeEdgeKernelTestBase extends KernelTestBase { | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
protected function setUp(): void { | ||
// Skipping the test if instance type is Public. | ||
$instance_type = getenv('APIGEE_EDGE_INSTANCE_TYPE'); | ||
if (!empty($instance_type) && $instance_type === EdgeKeyTypeInterface::INSTANCE_TYPE_PUBLIC) { | ||
$this->markTestSkipped('This test suite is expecting a HYBRID instance type.'); | ||
} | ||
parent::setUp(); | ||
} | ||
|
||
/** | ||
* Stores pre-configured token storage service for testing. | ||
*/ | ||
protected function storeToken() { | ||
// Storing the token for Appigeex Hybrid Org. | ||
$this->testTokenData = [ | ||
'access_token' => mb_strtolower($this->randomMachineName(32)), | ||
'token_type' => 'bearer', | ||
'expires_in' => 300, | ||
'refresh_token' => mb_strtolower($this->randomMachineName(32)), | ||
'scope' => 'create', | ||
]; | ||
$storage = $this->tokenStorage(); | ||
|
||
// Save the token. | ||
$storage->saveToken($this->testTokenData); | ||
} | ||
|
||
/** | ||
* Returns a pre-configured token storage service for testing. | ||
* | ||
* @param bool $rebuild | ||
* Enforces rebuild of the container and with the the token storage | ||
* service. | ||
* | ||
* @return \Drupal\apigee_edge\OauthTokenFileStorage | ||
* The configured and initialized OAuth file token storage service. | ||
* | ||
* @throws \Exception | ||
*/ | ||
private function tokenStorage(bool $rebuild = FALSE): OauthTokenFileStorage { | ||
$config = $this->config('apigee_edge.auth'); | ||
$config->set('oauth_token_storage_location', OauthTokenFileStorage::DEFAULT_DIRECTORY)->save(); | ||
if ($rebuild) { | ||
$this->container->get('kernel')->rebuildContainer(); | ||
} | ||
return $this->container->get('apigee_edge.authentication.oauth_token_storage'); | ||
} | ||
|
||
} |