123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- namespace Composer\Test\Util;
- use Composer\Test\TestCase;
- use Composer\Util\SpdxLicenseIdentifier;
- class SpdxLicenseIdentifierTest extends TestCase
- {
- public static function provideValidLicenses()
- {
- $valid = array_merge(
- array(
- "MIT",
- "NONE",
- "NOASSERTION",
- "LicenseRef-3",
- array("LGPL-2.0", "GPL-3.0+"),
- "(LGPL-2.0 or GPL-3.0+)",
- "(EUDatagrid and GPL-3.0+)",
- ),
- json_decode(file_get_contents(__DIR__ . '/../../../../res/spdx-identifier.json'))
- );
- foreach ($valid as &$r) {
- $r = array($r);
- }
- return $valid;
- }
- public static function provideInvalidLicenses()
- {
- return array(
- array(""),
- array("The system pwns you"),
- array("()"),
- array("(MIT)"),
- array("MIT NONE"),
- array("MIT (MIT and MIT)"),
- array("(MIT and MIT) MIT"),
- array(array("LGPL-2.0", "The system pwns you")),
- array("and GPL-3.0+"),
- array("EUDatagrid and GPL-3.0+"),
- array("(GPL-3.0 and GPL-2.0 or GPL-3.0+)"),
- array("(EUDatagrid and GPL-3.0+ and )"),
- array("(EUDatagrid xor GPL-3.0+)"),
- array("(MIT Or MIT)"),
- array("(NONE or MIT)"),
- array("(NOASSERTION or MIT)"),
- );
- }
- /**
- * @dataProvider provideValidLicenses
- * @param $license
- */
- public function testValidate($license)
- {
- $validator = new SpdxLicenseIdentifier();
- $this->assertTrue($validator->validate($license));
- }
- /**
- * @dataProvider provideInvalidLicenses
- * @param string|array $invalidLicense
- */
- public function testInvalidLicenses($invalidLicense)
- {
- $validator = new SpdxLicenseIdentifier();
- $this->assertFalse($validator->validate($invalidLicense));
- }
- /**
- * @expectedException InvalidArgumentException
- */
- public function testInvalidArgument()
- {
- $validator = new SpdxLicenseIdentifier();
- $validator->validate(null);
- }
- }
|