Skip to content
Snippets Groups Projects
Commit 85526935 authored by Adam G-H's avatar Adam G-H Committed by Chris Wells
Browse files

Issue #3498564 by phenaproxima, fjgarlin, chrisfromredfin: Do not store error...

Issue #3498564 by phenaproxima, fjgarlin, chrisfromredfin: Do not store error results in KeyValue storage
parent e160e4a0
No related branches found
No related tags found
1 merge request!676Add an empty check
Pipeline #403055 passed
...@@ -134,15 +134,17 @@ class EnabledSourceHandler implements LoggerAwareInterface, EventSubscriberInter ...@@ -134,15 +134,17 @@ class EnabledSourceHandler implements LoggerAwareInterface, EventSubscriberInter
// never store it. // never store it.
$this->getActivationData($project); $this->getActivationData($project);
} }
// Store the results for this query as a set of arguments to // If there were no query errors, store the results as a set of arguments
// ProjectsResultsPage. // to ProjectsResultsPage.
$storage->set($cache_key, [ if (empty($results->error)) {
$results->totalResults, $storage->set($cache_key, [
array_column($results->list, 'id'), $results->totalResults,
$results->pluginLabel, array_column($results->list, 'id'),
$source_id, $results->pluginLabel,
$results->error, $source_id,
]); $results->error,
]);
}
} }
return [$source_id => $results]; return [$source_id => $results];
} }
......
...@@ -54,6 +54,13 @@ class ProjectBrowserTestMock extends ProjectBrowserSourceBase { ...@@ -54,6 +54,13 @@ class ProjectBrowserTestMock extends ProjectBrowserSourceBase {
*/ */
const MAINTAINED_VALUES = [13028, 19370, 9990]; const MAINTAINED_VALUES = [13028, 19370, 9990];
/**
* An error message to flag when querying.
*
* @var string|null
*/
public static ?string $resultsError = NULL;
/** /**
* Constructor for mock API. * Constructor for mock API.
* *
...@@ -393,7 +400,7 @@ class ProjectBrowserTestMock extends ProjectBrowserSourceBase { ...@@ -393,7 +400,7 @@ class ProjectBrowserTestMock extends ProjectBrowserSourceBase {
} }
} }
return $this->createResultsPage($returned_list, $api_response['total_results'] ?? 0); return $this->createResultsPage($returned_list, $api_response['total_results'] ?? 0, static::$resultsError);
} }
/** /**
......
...@@ -6,6 +6,7 @@ namespace Drupal\Tests\project_browser\Functional; ...@@ -6,6 +6,7 @@ namespace Drupal\Tests\project_browser\Functional;
use Drupal\project_browser\EnabledSourceHandler; use Drupal\project_browser\EnabledSourceHandler;
use Drupal\project_browser\ProjectBrowser\Project; use Drupal\project_browser\ProjectBrowser\Project;
use Drupal\project_browser_test\Plugin\ProjectBrowserSource\ProjectBrowserTestMock;
use Drupal\Tests\BrowserTestBase; use Drupal\Tests\BrowserTestBase;
/** /**
...@@ -87,6 +88,29 @@ class EnabledSourceHandlerTest extends BrowserTestBase { ...@@ -87,6 +88,29 @@ class EnabledSourceHandlerTest extends BrowserTestBase {
$this->assertFalse(self::hasActivationData($project)); $this->assertFalse(self::hasActivationData($project));
} }
/**
* Tests that query results are not stored if there was an error.
*/
public function testErrorsAreNotStored(): void {
/** @var \Drupal\project_browser\EnabledSourceHandler $handler */
$handler = $this->container->get(EnabledSourceHandler::class);
$handler->getProjects('project_browser_test_mock');
/** @var \Drupal\Core\KeyValueStore\KeyValueStoreInterface $storage */
$storage = $this->container->get('keyvalue')
->get('project_browser:project_browser_test_mock');
// Query results should have been stored.
$query_cache_key = 'query:' . md5('[]');
$this->assertTrue($storage->has($query_cache_key));
$handler->clearStorage();
ProjectBrowserTestMock::$resultsError = 'Nope!';
$handler->getProjects('project_browser_test_mock');
// No query results should have been stored.
$this->assertFalse($storage->has($query_cache_key));
}
/** /**
* Checks if a project object is carrying activation data. * Checks if a project object is carrying activation data.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment