class SecurityAdvisoryTest in Drupal 9
Same name in this branch
- 9 core/modules/system/tests/src/Functional/SecurityAdvisories/SecurityAdvisoryTest.php \Drupal\Tests\system\Functional\SecurityAdvisories\SecurityAdvisoryTest
- 9 core/modules/system/tests/src/Unit/SecurityAdvisories/SecurityAdvisoryTest.php \Drupal\Tests\system\Unit\SecurityAdvisories\SecurityAdvisoryTest
@coversDefaultClass \Drupal\system\SecurityAdvisories\SecurityAdvisory
@group system
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, PhpUnitCompatibilityTrait, PhpUnitWarnings
- class \Drupal\Tests\system\Unit\SecurityAdvisories\SecurityAdvisoryTest
Expanded class hierarchy of SecurityAdvisoryTest
File
- core/
modules/ system/ tests/ src/ Unit/ SecurityAdvisories/ SecurityAdvisoryTest.php, line 13
Namespace
Drupal\Tests\system\Unit\SecurityAdvisoriesView source
class SecurityAdvisoryTest extends UnitTestCase {
/**
* Tests creating with valid data.
*
* @param mixed[] $changes
* The changes to the valid data set to test.
* @param mixed[] $expected
* The expected changes for the object methods.
*
* @covers ::createFromArray
* @covers ::isCoreAdvisory
* @covers ::isPsa
*
* @dataProvider providerCreateFromArray
*/
public function testCreateFromArray(array $changes, array $expected = []) : void {
$data = $changes;
$data += $this
->getValidData();
$expected += $data;
$sa = SecurityAdvisory::createFromArray($data);
$this
->assertInstanceOf(SecurityAdvisory::class, $sa);
$this
->assertSame($expected['title'], $sa
->getTitle());
$this
->assertSame($expected['project'], $sa
->getProject());
$this
->assertSame($expected['type'], $sa
->getProjectType());
$this
->assertSame($expected['link'], $sa
->getUrl());
$this
->assertSame($expected['insecure'], $sa
->getInsecureVersions());
$this
->assertSame($expected['is_psa'], $sa
->isPsa());
$this
->assertSame($expected['type'] === 'core', $sa
->isCoreAdvisory());
}
/**
* Data provider for testCreateFromArray().
*/
public function providerCreateFromArray() : array {
return [
// For 'is_psa' the return value should converted to any array.
[
[
'is_psa' => 1,
],
[
'is_psa' => TRUE,
],
],
[
[
'is_psa' => '1',
],
[
'is_psa' => TRUE,
],
],
[
[
'is_psa' => TRUE,
],
[
'is_psa' => TRUE,
],
],
[
[
'is_psa' => 0,
],
[
'is_psa' => FALSE,
],
],
[
[
'is_psa' => '0',
],
[
'is_psa' => FALSE,
],
],
[
[
'is_psa' => FALSE,
],
[
'is_psa' => FALSE,
],
],
// Test cases that ensure ::isCoreAdvisory only returns TRUE for core.
[
[
'type' => 'module',
],
],
[
[
'type' => 'theme',
],
],
[
[
'type' => 'core',
],
],
];
}
/**
* Tests exceptions with missing fields.
*
* @param string $missing_field
* The field to test.
*
* @covers ::createFromArray
*
* @dataProvider providerCreateFromArrayMissingField
*/
public function testCreateFromArrayMissingField(string $missing_field) : void {
$data = $this
->getValidData();
unset($data[$missing_field]);
$this
->expectException(\UnexpectedValueException::class);
$expected_message = 'Malformed security advisory:.*' . preg_quote("[{$missing_field}]:", '/');
$expected_message .= '.*This field is missing';
$this
->expectExceptionMessageMatches("/{$expected_message}/s");
SecurityAdvisory::createFromArray($data);
}
/**
* Data provider for testCreateFromArrayMissingField().
*/
public function providerCreateFromArrayMissingField() : array {
return [
'title' => [
'title',
],
'link' => [
'link',
],
'project' => [
'project',
],
'type' => [
'type',
],
'is_psa' => [
'is_psa',
],
'insecure' => [
'insecure',
],
];
}
/**
* Tests exceptions for invalid field types.
*
* @param string $invalid_field
* The field to test for an invalid value.
* @param string $expected_type_message
* The expected message for the field.
*
* @covers ::createFromArray
*
* @dataProvider providerCreateFromArrayInvalidField
*/
public function testCreateFromArrayInvalidField(string $invalid_field, string $expected_type_message) : void {
$data = $this
->getValidData();
// Set the field a value that is not valid for any of the fields in the
// feed.
$data[$invalid_field] = new \stdClass();
$this
->expectException(\UnexpectedValueException::class);
$expected_message = 'Malformed security advisory:.*' . preg_quote("[{$invalid_field}]:", '/');
$expected_message .= ".*{$expected_type_message}";
$this
->expectExceptionMessageMatches("/{$expected_message}/s");
SecurityAdvisory::createFromArray($data);
}
/**
* Data provider for testCreateFromArrayInvalidField().
*/
public function providerCreateFromArrayInvalidField() : array {
return [
'title' => [
'title',
'This value should be of type string.',
],
'link' => [
'link',
'This value should be of type string.',
],
'project' => [
'project',
'This value should be of type string.',
],
'type' => [
'type',
'This value should be of type string.',
],
'is_psa' => [
'is_psa',
'The value you selected is not a valid choice.',
],
'insecure' => [
'insecure',
'This value should be of type array.',
],
];
}
/**
* Gets valid data for a security advisory.
*
* @return mixed[]
* The data for the security advisory.
*/
protected function getValidData() : array {
return [
'title' => 'Generic Module1 Test - Moderately critical - Access bypass - SA-CONTRIB-2019-02-02',
'link' => 'https://www.drupal.org/SA-CONTRIB-2019-02-02',
'project' => 'generic_module1_test',
'type' => 'module',
'is_psa' => FALSE,
'insecure' => [
'8.x-1.1',
],
'pubDate' => 'Tue, 19 Mar 2019 12 => 50 => 00 +0000',
// New fields added to the JSON feed should be ignored and not cause a
// validation error.
'unknown_field' => 'ignored value',
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PhpUnitWarnings:: |
private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | |
PhpUnitWarnings:: |
public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | |
SecurityAdvisoryTest:: |
protected | function | Gets valid data for a security advisory. | |
SecurityAdvisoryTest:: |
public | function | Data provider for testCreateFromArray(). | |
SecurityAdvisoryTest:: |
public | function | Data provider for testCreateFromArrayInvalidField(). | |
SecurityAdvisoryTest:: |
public | function | Data provider for testCreateFromArrayMissingField(). | |
SecurityAdvisoryTest:: |
public | function | Tests creating with valid data. | |
SecurityAdvisoryTest:: |
public | function | Tests exceptions for invalid field types. | |
SecurityAdvisoryTest:: |
public | function | Tests exceptions with missing fields. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 308 | |
UnitTestCase:: |
public static | function |