You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
runner-go/environ/semver_test.go

38 lines
982 B
Go

// Copyright 2019 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Polyform License
// that can be found in the LICENSE file.
package environ
import (
"testing"
"github.com/google/go-cmp/cmp"
)
func TestInvalidSemver(t *testing.T) {
a := versions("this is an invalid version")
b := map[string]string{"DRONE_SEMVER_ERROR": "this is an invalid version is not in dotted-tri format"}
if diff := cmp.Diff(a, b); diff != "" {
t.Errorf("Unexpected semver variables")
t.Log(diff)
}
}
func TestSemver(t *testing.T) {
a := versions("v1.2.3-alpha+001")
b := map[string]string{
"DRONE_SEMVER": "1.2.3-alpha+001",
"DRONE_SEMVER_MAJOR": "1",
"DRONE_SEMVER_MINOR": "2",
"DRONE_SEMVER_PATCH": "3",
"DRONE_SEMVER_SHORT": "1.2.3",
"DRONE_SEMVER_PRERELEASE": "alpha",
"DRONE_SEMVER_BUILD": "001",
}
if diff := cmp.Diff(a, b); diff != "" {
t.Errorf("Unexpected semver variables")
t.Log(diff)
}
}