-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove semver compatible flag and change pypi to an array of test cas…
…es (#21708) This addresses #21707 and adds a second package test case for a non-semver compatible version (this might be overkill though since you could also edit the old package version to have an epoch in front and see the error, this just seemed more flexible for the future). Co-authored-by: KN4CK3R <[email protected]>
- Loading branch information
Showing
3 changed files
with
50 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// Copyright 2022 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package pypi | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestIsValidNameAndVersion(t *testing.T) { | ||
// The test cases below were created from the following Python PEPs: | ||
// https://peps.python.org/pep-0426/#name | ||
// https://peps.python.org/pep-0440/#appendix-b-parsing-version-strings-with-regular-expressions | ||
|
||
// Valid Cases | ||
assert.True(t, isValidNameAndVersion("A", "1.0.1")) | ||
assert.True(t, isValidNameAndVersion("Test.Name.1234", "1.0.1")) | ||
assert.True(t, isValidNameAndVersion("test_name", "1.0.1")) | ||
assert.True(t, isValidNameAndVersion("test-name", "1.0.1")) | ||
assert.True(t, isValidNameAndVersion("test-name", "v1.0.1")) | ||
assert.True(t, isValidNameAndVersion("test-name", "2012.4")) | ||
assert.True(t, isValidNameAndVersion("test-name", "1.0.1-alpha")) | ||
assert.True(t, isValidNameAndVersion("test-name", "1.0.1a1")) | ||
assert.True(t, isValidNameAndVersion("test-name", "1.0b2.r345.dev456")) | ||
assert.True(t, isValidNameAndVersion("test-name", "1!1.0.1")) | ||
assert.True(t, isValidNameAndVersion("test-name", "1.0.1+local.1")) | ||
|
||
// Invalid Cases | ||
assert.False(t, isValidNameAndVersion(".test-name", "1.0.1")) | ||
assert.False(t, isValidNameAndVersion("test!name", "1.0.1")) | ||
assert.False(t, isValidNameAndVersion("-test-name", "1.0.1")) | ||
assert.False(t, isValidNameAndVersion("test-name-", "1.0.1")) | ||
assert.False(t, isValidNameAndVersion("test-name", "a1.0.1")) | ||
assert.False(t, isValidNameAndVersion("test-name", "1.0.1aa")) | ||
assert.False(t, isValidNameAndVersion("test-name", "1.0.0-alpha.beta")) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters