-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50c3b34
commit 01bcc75
Showing
4 changed files
with
109 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?php | ||
/** | ||
* Copyright 2019 Colopl Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
namespace Colopl\Spanner\Console; | ||
|
||
use Colopl\Spanner\Connection as SpannerConnection; | ||
use Illuminate\Console\Command; | ||
use Illuminate\Database\DatabaseManager; | ||
|
||
class CooldownCommand extends Command | ||
{ | ||
protected $signature = 'spanner:cooldown {connections?* : The database connections to be cleared}'; | ||
|
||
protected $description = 'Deletes all sessions from Spanner\'s Session Pool.'; | ||
|
||
public function handle(DatabaseManager $db): void | ||
{ | ||
$connectionNames = (array)$this->argument('connections'); | ||
if (count($connectionNames) === 0) { | ||
$connectionNames = array_keys((array)config('database.connections')); | ||
} | ||
|
||
$spannerConnectionNames = array_filter( | ||
$connectionNames, | ||
static fn(string $name): bool => config("database.connections.{$name}.driver") === 'spanner', | ||
); | ||
|
||
foreach ($spannerConnectionNames as $name) { | ||
$connection = $db->connection($name); | ||
if ($connection instanceof SpannerConnection) { | ||
$connection->clearSessionPool(); | ||
$this->info("All sessions cleared for {$name}"); | ||
} | ||
} | ||
} | ||
} |
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,56 @@ | ||
<?php | ||
/** | ||
* Copyright 2019 Colopl Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
namespace Console; | ||
|
||
use Colopl\Spanner\Connection; | ||
use Colopl\Spanner\Tests\Console\TestCase; | ||
|
||
class CooldownCommandTest extends TestCase | ||
{ | ||
public function test_no_args(): void | ||
{ | ||
foreach (['main', 'alternative'] as $name) { | ||
$conn = $this->getConnection($name); | ||
assert($conn instanceof Connection); | ||
$this->setUpDatabaseOnce($conn); | ||
$conn->warmupSessionPool(); | ||
} | ||
|
||
$this->artisan('spanner:cooldown') | ||
->expectsOutputToContain("All sessions cleared for main") | ||
->expectsOutputToContain("All sessions cleared for alternative") | ||
->assertSuccessful() | ||
->run(); | ||
} | ||
|
||
public function test_with_args(): void | ||
{ | ||
foreach (['main', 'alternative'] as $name) { | ||
$conn = $this->getConnection($name); | ||
assert($conn instanceof Connection); | ||
$this->setUpDatabaseOnce($conn); | ||
$conn->warmupSessionPool(); | ||
} | ||
|
||
$this->artisan('spanner:cooldown', ['connections' => 'main']) | ||
->expectsOutputToContain("All sessions cleared for main") | ||
->doesntExpectOutputToContain("alternative") | ||
->assertSuccessful() | ||
->run(); | ||
} | ||
} |