class SecurityAdvisoryTest

Same name in this branch
  1. 9 core/modules/system/tests/src/Functional/SecurityAdvisories/SecurityAdvisoryTest.php \Drupal\Tests\system\Functional\SecurityAdvisories\SecurityAdvisoryTest
Same name and namespace in other branches
  1. 10 core/modules/system/tests/src/Unit/SecurityAdvisories/SecurityAdvisoryTest.php \Drupal\Tests\system\Unit\SecurityAdvisories\SecurityAdvisoryTest
  2. 10 core/modules/system/tests/src/Functional/SecurityAdvisories/SecurityAdvisoryTest.php \Drupal\Tests\system\Functional\SecurityAdvisories\SecurityAdvisoryTest
  3. 11.x core/modules/system/tests/src/Unit/SecurityAdvisories/SecurityAdvisoryTest.php \Drupal\Tests\system\Unit\SecurityAdvisories\SecurityAdvisoryTest
  4. 11.x core/modules/system/tests/src/Functional/SecurityAdvisories/SecurityAdvisoryTest.php \Drupal\Tests\system\Functional\SecurityAdvisories\SecurityAdvisoryTest

@coversDefaultClass \Drupal\system\SecurityAdvisories\SecurityAdvisory

@group system

Hierarchy

Expanded class hierarchy of SecurityAdvisoryTest

File

core/modules/system/tests/src/Unit/SecurityAdvisories/SecurityAdvisoryTest.php, line 13

Namespace

Drupal\Tests\system\Unit\SecurityAdvisories
View 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

Title Sort descending Deprecated Modifiers Object type Summary Overrides
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
SecurityAdvisoryTest::getValidData protected function Gets valid data for a security advisory.
SecurityAdvisoryTest::providerCreateFromArray public function Data provider for testCreateFromArray().
SecurityAdvisoryTest::providerCreateFromArrayInvalidField public function Data provider for testCreateFromArrayInvalidField().
SecurityAdvisoryTest::providerCreateFromArrayMissingField public function Data provider for testCreateFromArrayMissingField().
SecurityAdvisoryTest::testCreateFromArray public function Tests creating with valid data.
SecurityAdvisoryTest::testCreateFromArrayInvalidField public function Tests exceptions for invalid field types.
SecurityAdvisoryTest::testCreateFromArrayMissingField public function Tests exceptions with missing fields.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals Deprecated protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 338
UnitTestCase::setUpBeforeClass public static function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.