mirror of https://github.com/pulumi/pulumi.git
90 lines
2.6 KiB
Go
90 lines
2.6 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 providers
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/pulumi/pulumi/sdk/v3/go/common/resource"
|
|
"github.com/pulumi/pulumi/sdk/v3/go/common/tokens"
|
|
)
|
|
|
|
func TestRoundTripProviderType(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
pkg := tokens.Package("abcd")
|
|
|
|
assert.True(t, IsProviderType(MakeProviderType(pkg)))
|
|
}
|
|
|
|
func TestParseReferenceInvalidURN(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
str := "not::a:valid:urn::id"
|
|
_, err := ParseReference(str)
|
|
assert.Error(t, err)
|
|
}
|
|
|
|
func TestParseReferenceInvalidModule(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
// Wrong package and module
|
|
str := string(resource.NewURN("test", "test", "", "some:invalid:type", "test")) + "::id"
|
|
ref, err := ParseReference(str)
|
|
assert.Error(t, err)
|
|
assert.Equal(t, Reference{}, ref)
|
|
|
|
// Right package, wrong module
|
|
str = string(resource.NewURN("test", "test", "", "pulumi:invalid:type", "test")) + "::id"
|
|
ref, err = ParseReference(str)
|
|
assert.Error(t, err)
|
|
assert.Equal(t, Reference{}, ref)
|
|
|
|
// Right module, wrong package
|
|
str = string(resource.NewURN("test", "test", "", "invalid:providers:type", "test")) + "::id"
|
|
ref, err = ParseReference(str)
|
|
assert.Error(t, err)
|
|
assert.Equal(t, Reference{}, ref)
|
|
}
|
|
|
|
func TestParseReference(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
urn, id := resource.NewURN("test", "test", "", "pulumi:providers:type", "test"), resource.ID("id")
|
|
ref, err := ParseReference(string(urn) + "::" + string(id))
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, urn, ref.URN())
|
|
assert.Equal(t, id, ref.ID())
|
|
}
|
|
|
|
func TestReferenceString(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
urn, id := resource.NewURN("test", "test", "", "pulumi:providers:type", "test"), resource.ID("id")
|
|
ref := Reference{urn: urn, id: id}
|
|
assert.Equal(t, string(urn)+"::"+string(id), ref.String())
|
|
}
|
|
|
|
func TestRoundTripReference(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
str := string(resource.NewURN("test", "test", "", "pulumi:providers:type", "test")) + "::id"
|
|
ref, err := ParseReference(str)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, str, ref.String())
|
|
}
|