aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/App/PlatformRepositoryTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/App/PlatformRepositoryTest.php')
-rw-r--r--tests/lib/App/PlatformRepositoryTest.php63
1 files changed, 63 insertions, 0 deletions
diff --git a/tests/lib/App/PlatformRepositoryTest.php b/tests/lib/App/PlatformRepositoryTest.php
new file mode 100644
index 00000000000..bc0ecb97c5a
--- /dev/null
+++ b/tests/lib/App/PlatformRepositoryTest.php
@@ -0,0 +1,63 @@
+<?php
+
+/**
+ * SPDX-FileCopyrightText: 2020-2023 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-FileCopyrightText: 2014-2016 ownCloud, Inc.
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace Test\App;
+
+use OC\App\PlatformRepository;
+
+class PlatformRepositoryTest extends \Test\TestCase {
+ /**
+ * @param $expected
+ * @param $input
+ */
+ #[\PHPUnit\Framework\Attributes\DataProvider('providesVersions')]
+ public function testVersion($input, $expected): void {
+ $pr = new PlatformRepository();
+ $normalizedVersion = $pr->normalizeVersion($input);
+ $this->assertEquals($expected, $normalizedVersion);
+ }
+
+ public static function providesVersions(): array {
+ return [
+ 'none' => ['1.0.0', '1.0.0.0'],
+ 'none/2' => ['1.2.3.4', '1.2.3.4'],
+ 'parses state' => ['1.0.0RC1dev', '1.0.0.0-RC1-dev'],
+ 'CI parsing' => ['1.0.0-rC15-dev', '1.0.0.0-RC15-dev'],
+ 'delimiters' => ['1.0.0.RC.15-dev', '1.0.0.0-RC15-dev'],
+ 'RC uppercase' => ['1.0.0-rc1', '1.0.0.0-RC1'],
+ 'patch replace' => ['1.0.0.pl3-dev', '1.0.0.0-patch3-dev'],
+ 'forces w.x.y.z' => ['1.0-dev', '1.0.0.0-dev'],
+ 'forces w.x.y.z/2' => ['0', '0.0.0.0'],
+ 'parses long' => ['10.4.13-beta', '10.4.13.0-beta'],
+ 'parses long/2' => ['10.4.13beta2', '10.4.13.0-beta2'],
+ 'parses long/semver' => ['10.4.13beta.2', '10.4.13.0-beta2'],
+ 'expand shorthand' => ['10.4.13-b', '10.4.13.0-beta'],
+ 'expand shorthand2' => ['10.4.13-b5', '10.4.13.0-beta5'],
+ 'strips leading v' => ['v1.0.0', '1.0.0.0'],
+ 'strips v/datetime' => ['v20100102', '20100102'],
+ 'parses dates y-m' => ['2010.01', '2010-01'],
+ 'parses dates w/ .' => ['2010.01.02', '2010-01-02'],
+ 'parses dates w/ -' => ['2010-01-02', '2010-01-02'],
+ 'parses numbers' => ['2010-01-02.5', '2010-01-02-5'],
+ 'parses dates y.m.Y' => ['2010.1.555', '2010.1.555.0'],
+ 'parses datetime' => ['20100102-203040', '20100102-203040'],
+ 'parses dt+number' => ['20100102203040-10', '20100102203040-10'],
+ 'parses dt+patch' => ['20100102-203040-p1', '20100102-203040-patch1'],
+ 'parses master' => ['dev-master', '9999999-dev'],
+ 'parses trunk' => ['dev-trunk', '9999999-dev'],
+ // 'parses branches' => array('1.x-dev', '1.9999999.9999999.9999999-dev'),
+ 'parses arbitrary' => ['dev-feature-foo', 'dev-feature-foo'],
+ 'parses arbitrary2' => ['DEV-FOOBAR', 'dev-FOOBAR'],
+ 'parses arbitrary3' => ['dev-feature/foo', 'dev-feature/foo'],
+ 'ignores aliases' => ['dev-master as 1.0.0', '9999999-dev'],
+ // 'semver metadata' => array('dev-master+foo.bar', '9999999-dev'),
+ // 'semver metadata/2' => array('1.0.0-beta.5+foo', '1.0.0.0-beta5'),
+ // 'semver metadata/3' => array('1.0.0+foo', '1.0.0.0'),
+ // 'metadata w/ alias' => array('1.0.0+foo as 2.0', '1.0.0.0'),
+ ];
+ }
+}