diff options
| author | Yuriy Andamasov <yuriy@andamasov.com> | 2026-05-23 14:22:38 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-23 14:22:38 +0300 |
| commit | c75bb17724896fb0eff97fcefce01c3a2ce9d049 (patch) | |
| tree | ded9334a63052323a074c3531273ee1c667f8855 /src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php | |
| parent | 830ea6cff237235f3b0f21c58d54f062656eee45 (diff) | |
| parent | ed0dee0333acf8a1c79845bba6455506c8210bad (diff) | |
| download | phorge-elasticsearch-modern-c75bb17724896fb0eff97fcefce01c3a2ce9d049.tar.gz phorge-elasticsearch-modern-c75bb17724896fb0eff97fcefce01c3a2ce9d049.zip | |
Merge pull request #4 from vyos/task/e1-setversion
E1: Add setVersion() with strict validation
Diffstat (limited to 'src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php')
| -rw-r--r-- | src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php b/src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php new file mode 100644 index 0000000..7c0755c --- /dev/null +++ b/src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php @@ -0,0 +1,69 @@ +<?php + +/** + * Minimal concrete subclass for unit-testing the abstract engine. + * Only the abstract stubs from PhabricatorFulltextStorageEngine are + * satisfied here; no real Elasticsearch I/O occurs in tests. + */ +final class VyOSElasticModernFulltextStorageEngineTestDouble + extends VyOSElasticModernFulltextStorageEngine { + + public function reindexAbstractDocument( + PhabricatorSearchAbstractDocument $doc) { + // no-op in tests + } + + public function executeSearch(PhabricatorSavedQuery $query) { + return array(); + } + + public function indexExists() { + return false; + } + + public function getIndexStats() { + return array(); + } + +} + +final class VyOSElasticModernFulltextStorageEngineTestCase + extends PhutilTestCase { + + private function newEngine() { + return new VyOSElasticModernFulltextStorageEngineTestDouble(); + } + + public function testSetVersionAcceptsSevenAndAbove() { + foreach (array(7, 8, 9, 100) as $v) { + $engine = $this->newEngine(); + $caught = null; + try { + $engine->setVersion($v); + } catch (Exception $e) { + $caught = $e; + } + $this->assertEqual( + null, + $caught, + pht('Expected no exception for version=%d.', $v)); + $this->assertEqual($v, $engine->getVersion()); + } + } + + public function testSetVersionRejectsBelowSeven() { + foreach (array(0, 1, 2, 5, 6) as $v) { + $engine = $this->newEngine(); + $caught = null; + try { + $engine->setVersion($v); + } catch (Exception $e) { + $caught = $e; + } + $this->assertTrue( + $caught !== null, + pht('Expected an exception for version=%d.', $v)); + } + } + +} |
