pulumi/pkg/util/buildutil/semver_test.go
Matt Ellis bb6b492d55 Do not include git information in PyPI version.
Previously, we would include information about what git commit a build
came from in the "local" portion of the PEP-440 version. This was a
problem because PyPI does not allow packages to be upload to the
registry if they contain local parts.

So, for now, we'll just never put in the git commit information in the
generate version. We'll continue to add a dirty tag in the local
part. This will be prevent us from publishing dirty builds to PyPI,
but that's in line with what we want.
2018-06-11 13:01:49 -06:00

41 lines
1.5 KiB
Go

// Copyright 2016-2018, Pulumi Corporation.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package buildutil
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestVersions(t *testing.T) {
cases := map[string]string{
"v0.12.0": "0.12.0",
"v0.12.0-dirty": "0.12.0+dirty",
"v0.12.0-1524606809-gf2f1178b": "0.12.0.post1524606809",
"v0.12.0-1524606809-gf2f1178b-dirty": "0.12.0.post1524606809+dirty",
"v0.12.0-rc1": "0.12.0rc1",
"v0.12.0-rc1-1524606809-gf2f1178b": "0.12.0rc1.post1524606809",
"v0.12.0-rc1-1524606809-gf2f1178b-dirty": "0.12.0rc1.post1524606809+dirty",
"v0.12.1-dev-1524606809-gf2f1178b": "0.12.1.dev1524606809",
"v0.12.1-dev-1524606809-gf2f1178b-dirty": "0.12.1.dev1524606809+dirty",
}
for ver, expected := range cases {
p, err := PyPiVersionFromNpmVersion(ver)
assert.NoError(t, err)
assert.Equal(t, expected, p, "failed parsing '%s'", ver)
}
}