Skip to content

Commit

Permalink
Fixed Yaml test + added tests to skip
Browse files Browse the repository at this point in the history
  • Loading branch information
ezimuel committed Nov 14, 2024
1 parent 78badb4 commit ab0fdb4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion util/ActionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ private function do(array $actions): string
];
foreach ($actions as $key => $value) {
if (method_exists($this, $key)) {
$this->$key($value, $vars);
if (!empty($value)) {
$this->$key($value, $vars);
}
} else {
// headers
if (!empty($this->headers)) {
Expand Down
8 changes: 6 additions & 2 deletions util/YamlTests.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,19 @@ class YamlTests
'Cat\Templates\_10_BasicTest::FilteredTemplates' => 'regex mismatch',
'Cat\Templates\_10_BasicTest::SelectColumns' => 'regex mismatch',
'FieldCaps\_50_Fieldtype_FilterTest::*' => 'Bool mismatch',
'Indices\Create\_20_Synthetic_SourceTest::*' => 'Malformed request',
'Indices\GetAlias\_10_BasicTest::GetAliasAgainstClosedIndices' => 'Failed asserting that true is false',
'Indices\GetIndexTemplate\_10_BasicTest::*' => 'Bool mismatch',
'Indices\PutTemplate\_10_BasicTest::PutTemplateCreate' => 'index_template [test] already exists',
'Indices\Refresh\_10_BasicTest::IndicesRefreshTestEmptyArray' => 'empty array?',
'Indices\ResolveCluster\_10_Basic_Resolve_ClusterTest::TestResolveClusterOptionalParamsAreAccepted' => 'Bool mismatch',
'Indices\SimulateIndexTemplate\_10_BasicTest::SimulateIndexTemplateWithIndexNotMatchingAnyTemplate' => 'Bool mismatch',
'Indices\ValidateQuery\_10_SynonymsTest::ValidateQueryWithSynonyms' => 'Failed asserting that two strings are equal',
'IngestGeoip\_20_Geoip_ProcessorTest::*' => 'Undefined array key "geoip"',
'IngestGeoip\_30_Geoip_StatsTest::TestGeoipStats' => 'Undefined array key "_arbitrary_key_"',
'IngestGeoip\_50_Ip_Lookup_ProcessorTest::TestIp_locationProcessorWithDefaults' => 'Undefined array key "ip_location"',
'Search\Suggest\_20_PhraseTest::BreaksTiesBySortingTerms' => 'body not supported',
'Search\_330_Fetch_FieldsTest::TestWithSubobjectsAuto' => 'unknown subobjects value: auto',
'Search\Vectors\_90_Sparse_VectorTest::SparseVectorIn800X8110' => 'Undefined array key error',
'Snapshot\Create\_10_BasicTest::CreateASnapshot' => 'Invalid snapshot name [test_snapshot]',
'Snapshot\Create\_10_BasicTest::CreateASnapshotAndCleanUpRepository' => 'Invalid snapshot name [test_snapshot]',
Expand Down Expand Up @@ -270,15 +274,15 @@ public function build(): array
self::TEMPLATE_FUNCTION_SKIPPED,
[
':name' => $functionName,
':skipped_msg' => $skip[$skippedAllTest]
':skipped_msg' => addslashes($skip[$skippedAllTest])
]
);
} elseif (isset($skip[$skippedTest])) {
$functions .= self::render(
self::TEMPLATE_FUNCTION_SKIPPED,
[
':name' => $functionName,
':skipped_msg' => $skip[$skippedTest]
':skipped_msg' => addslashes($skip[$skippedTest])
]
);
} else {
Expand Down

0 comments on commit ab0fdb4

Please sign in to comment.