Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 16 |
ReplicaRangeValidator | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
12 | |
0.00% |
0 / 16 |
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
|||
validate | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 12 |
<?php | |
namespace CirrusSearch\Maintenance\Validators; | |
use CirrusSearch\Maintenance\Printer; | |
use Elastica\Index; | |
use Status; | |
class ReplicaRangeValidator extends Validator { | |
/** | |
* @var Index | |
*/ | |
private $index; | |
/** | |
* @var string | |
*/ | |
protected $replicaCount; | |
/** | |
* @param Index $index | |
* @param string $replicaCount | |
* @param Printer|null $out | |
*/ | |
public function __construct( Index $index, $replicaCount, Printer $out = null ) { | |
parent::__construct( $out ); | |
$this->index = $index; | |
$this->replicaCount = $replicaCount; | |
} | |
/** | |
* @return Status | |
*/ | |
public function validate() { | |
$this->outputIndented( "\tValidating replica range..." ); | |
$settings = $this->index->getSettings()->get(); | |
$actualReplicaCount = $settings['auto_expand_replicas'] ?? 'false'; | |
if ( $actualReplicaCount == $this->replicaCount ) { | |
$this->output( "ok\n" ); | |
} else { | |
$this->output( "is $actualReplicaCount but should be " . $this->replicaCount . '...' ); | |
$this->index->getSettings()->set( [ 'auto_expand_replicas' => $this->replicaCount ] ); | |
$this->output( "corrected\n" ); | |
} | |
return Status::newGood(); | |
} | |
} |