2020-10-02 19:45:20 +02:00
|
|
|
package depsfile
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-12-17 00:57:47 +01:00
|
|
|
"github.com/google/go-cmp/cmp"
|
2021-05-17 21:00:50 +02:00
|
|
|
"github.com/hashicorp/terraform/internal/addrs"
|
2020-10-02 19:45:20 +02:00
|
|
|
"github.com/hashicorp/terraform/internal/getproviders"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestLocksEqual(t *testing.T) {
|
|
|
|
boopProvider := addrs.NewDefaultProvider("boop")
|
|
|
|
v2 := getproviders.MustParseVersion("2.0.0")
|
|
|
|
v2LocalBuild := getproviders.MustParseVersion("2.0.0+awesomecorp.1")
|
|
|
|
v2GtConstraints := getproviders.MustParseVersionConstraints(">= 2.0.0")
|
|
|
|
v2EqConstraints := getproviders.MustParseVersionConstraints("2.0.0")
|
|
|
|
hash1 := getproviders.HashScheme("test").New("1")
|
|
|
|
hash2 := getproviders.HashScheme("test").New("2")
|
|
|
|
hash3 := getproviders.HashScheme("test").New("3")
|
|
|
|
|
|
|
|
equalBothWays := func(t *testing.T, a, b *Locks) {
|
|
|
|
t.Helper()
|
|
|
|
if !a.Equal(b) {
|
|
|
|
t.Errorf("a should be equal to b")
|
|
|
|
}
|
|
|
|
if !b.Equal(a) {
|
|
|
|
t.Errorf("b should be equal to a")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nonEqualBothWays := func(t *testing.T, a, b *Locks) {
|
|
|
|
t.Helper()
|
|
|
|
if a.Equal(b) {
|
|
|
|
t.Errorf("a should be equal to b")
|
|
|
|
}
|
|
|
|
if b.Equal(a) {
|
|
|
|
t.Errorf("b should be equal to a")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("both empty", func(t *testing.T) {
|
|
|
|
a := NewLocks()
|
|
|
|
b := NewLocks()
|
|
|
|
equalBothWays(t, a, b)
|
|
|
|
})
|
|
|
|
t.Run("an extra provider lock", func(t *testing.T) {
|
|
|
|
a := NewLocks()
|
|
|
|
b := NewLocks()
|
|
|
|
b.SetProvider(boopProvider, v2, v2GtConstraints, nil)
|
|
|
|
nonEqualBothWays(t, a, b)
|
|
|
|
})
|
|
|
|
t.Run("both have boop provider with same version", func(t *testing.T) {
|
|
|
|
a := NewLocks()
|
|
|
|
b := NewLocks()
|
|
|
|
// Note: the constraints are not part of the definition of "Equal", so they can differ
|
|
|
|
a.SetProvider(boopProvider, v2, v2GtConstraints, nil)
|
|
|
|
b.SetProvider(boopProvider, v2, v2EqConstraints, nil)
|
|
|
|
equalBothWays(t, a, b)
|
|
|
|
})
|
|
|
|
t.Run("both have boop provider with different versions", func(t *testing.T) {
|
|
|
|
a := NewLocks()
|
|
|
|
b := NewLocks()
|
|
|
|
a.SetProvider(boopProvider, v2, v2EqConstraints, nil)
|
|
|
|
b.SetProvider(boopProvider, v2LocalBuild, v2EqConstraints, nil)
|
|
|
|
nonEqualBothWays(t, a, b)
|
|
|
|
})
|
|
|
|
t.Run("both have boop provider with same version and same hashes", func(t *testing.T) {
|
|
|
|
a := NewLocks()
|
|
|
|
b := NewLocks()
|
|
|
|
hashes := []getproviders.Hash{hash1, hash2, hash3}
|
|
|
|
a.SetProvider(boopProvider, v2, v2EqConstraints, hashes)
|
|
|
|
b.SetProvider(boopProvider, v2, v2EqConstraints, hashes)
|
|
|
|
equalBothWays(t, a, b)
|
|
|
|
})
|
|
|
|
t.Run("both have boop provider with same version but different hashes", func(t *testing.T) {
|
|
|
|
a := NewLocks()
|
|
|
|
b := NewLocks()
|
|
|
|
hashesA := []getproviders.Hash{hash1, hash2}
|
|
|
|
hashesB := []getproviders.Hash{hash1, hash3}
|
|
|
|
a.SetProvider(boopProvider, v2, v2EqConstraints, hashesA)
|
|
|
|
b.SetProvider(boopProvider, v2, v2EqConstraints, hashesB)
|
|
|
|
nonEqualBothWays(t, a, b)
|
|
|
|
})
|
|
|
|
}
|
2021-03-09 17:12:00 +01:00
|
|
|
|
|
|
|
func TestLocksEqualProviderAddress(t *testing.T) {
|
|
|
|
boopProvider := addrs.NewDefaultProvider("boop")
|
|
|
|
v2 := getproviders.MustParseVersion("2.0.0")
|
|
|
|
v2LocalBuild := getproviders.MustParseVersion("2.0.0+awesomecorp.1")
|
|
|
|
v2GtConstraints := getproviders.MustParseVersionConstraints(">= 2.0.0")
|
|
|
|
v2EqConstraints := getproviders.MustParseVersionConstraints("2.0.0")
|
|
|
|
hash1 := getproviders.HashScheme("test").New("1")
|
|
|
|
hash2 := getproviders.HashScheme("test").New("2")
|
|
|
|
hash3 := getproviders.HashScheme("test").New("3")
|
|
|
|
|
|
|
|
equalProviderAddressBothWays := func(t *testing.T, a, b *Locks) {
|
|
|
|
t.Helper()
|
|
|
|
if !a.EqualProviderAddress(b) {
|
|
|
|
t.Errorf("a should be equal to b")
|
|
|
|
}
|
|
|
|
if !b.EqualProviderAddress(a) {
|
|
|
|
t.Errorf("b should be equal to a")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nonEqualProviderAddressBothWays := func(t *testing.T, a, b *Locks) {
|
|
|
|
t.Helper()
|
|
|
|
if a.EqualProviderAddress(b) {
|
|
|
|
t.Errorf("a should be equal to b")
|
|
|
|
}
|
|
|
|
if b.EqualProviderAddress(a) {
|
|
|
|
t.Errorf("b should be equal to a")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("both empty", func(t *testing.T) {
|
|
|
|
a := NewLocks()
|
|
|
|
b := NewLocks()
|
|
|
|
equalProviderAddressBothWays(t, a, b)
|
|
|
|
})
|
|
|
|
t.Run("an extra provider lock", func(t *testing.T) {
|
|
|
|
a := NewLocks()
|
|
|
|
b := NewLocks()
|
|
|
|
b.SetProvider(boopProvider, v2, v2GtConstraints, nil)
|
|
|
|
nonEqualProviderAddressBothWays(t, a, b)
|
|
|
|
})
|
|
|
|
t.Run("both have boop provider with different versions", func(t *testing.T) {
|
|
|
|
a := NewLocks()
|
|
|
|
b := NewLocks()
|
|
|
|
a.SetProvider(boopProvider, v2, v2EqConstraints, nil)
|
|
|
|
b.SetProvider(boopProvider, v2LocalBuild, v2EqConstraints, nil)
|
|
|
|
equalProviderAddressBothWays(t, a, b)
|
|
|
|
})
|
|
|
|
t.Run("both have boop provider with same version but different hashes", func(t *testing.T) {
|
|
|
|
a := NewLocks()
|
|
|
|
b := NewLocks()
|
|
|
|
hashesA := []getproviders.Hash{hash1, hash2}
|
|
|
|
hashesB := []getproviders.Hash{hash1, hash3}
|
|
|
|
a.SetProvider(boopProvider, v2, v2EqConstraints, hashesA)
|
|
|
|
b.SetProvider(boopProvider, v2, v2EqConstraints, hashesB)
|
|
|
|
equalProviderAddressBothWays(t, a, b)
|
|
|
|
})
|
|
|
|
}
|
2021-12-17 00:57:47 +01:00
|
|
|
|
|
|
|
func TestLocksProviderSetRemove(t *testing.T) {
|
|
|
|
beepProvider := addrs.NewDefaultProvider("beep")
|
|
|
|
boopProvider := addrs.NewDefaultProvider("boop")
|
|
|
|
v2 := getproviders.MustParseVersion("2.0.0")
|
|
|
|
v2EqConstraints := getproviders.MustParseVersionConstraints("2.0.0")
|
|
|
|
v2GtConstraints := getproviders.MustParseVersionConstraints(">= 2.0.0")
|
|
|
|
hash := getproviders.HashScheme("test").New("1")
|
|
|
|
|
|
|
|
locks := NewLocks()
|
|
|
|
if got, want := len(locks.AllProviders()), 0; got != want {
|
|
|
|
t.Fatalf("fresh locks object already has providers")
|
|
|
|
}
|
|
|
|
|
|
|
|
locks.SetProvider(boopProvider, v2, v2EqConstraints, []getproviders.Hash{hash})
|
|
|
|
{
|
|
|
|
got := locks.AllProviders()
|
|
|
|
want := map[addrs.Provider]*ProviderLock{
|
|
|
|
boopProvider: {
|
|
|
|
addr: boopProvider,
|
|
|
|
version: v2,
|
|
|
|
versionConstraints: v2EqConstraints,
|
|
|
|
hashes: []getproviders.Hash{hash},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if diff := cmp.Diff(want, got, ProviderLockComparer); diff != "" {
|
|
|
|
t.Fatalf("wrong providers after SetProvider boop\n%s", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
locks.SetProvider(beepProvider, v2, v2GtConstraints, []getproviders.Hash{hash})
|
|
|
|
{
|
|
|
|
got := locks.AllProviders()
|
|
|
|
want := map[addrs.Provider]*ProviderLock{
|
|
|
|
boopProvider: {
|
|
|
|
addr: boopProvider,
|
|
|
|
version: v2,
|
|
|
|
versionConstraints: v2EqConstraints,
|
|
|
|
hashes: []getproviders.Hash{hash},
|
|
|
|
},
|
|
|
|
beepProvider: {
|
|
|
|
addr: beepProvider,
|
|
|
|
version: v2,
|
|
|
|
versionConstraints: v2GtConstraints,
|
|
|
|
hashes: []getproviders.Hash{hash},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if diff := cmp.Diff(want, got, ProviderLockComparer); diff != "" {
|
|
|
|
t.Fatalf("wrong providers after SetProvider beep\n%s", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
locks.RemoveProvider(boopProvider)
|
|
|
|
{
|
|
|
|
got := locks.AllProviders()
|
|
|
|
want := map[addrs.Provider]*ProviderLock{
|
|
|
|
beepProvider: {
|
|
|
|
addr: beepProvider,
|
|
|
|
version: v2,
|
|
|
|
versionConstraints: v2GtConstraints,
|
|
|
|
hashes: []getproviders.Hash{hash},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if diff := cmp.Diff(want, got, ProviderLockComparer); diff != "" {
|
|
|
|
t.Fatalf("wrong providers after RemoveProvider boop\n%s", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
locks.RemoveProvider(beepProvider)
|
|
|
|
{
|
|
|
|
got := locks.AllProviders()
|
|
|
|
want := map[addrs.Provider]*ProviderLock{}
|
|
|
|
if diff := cmp.Diff(want, got, ProviderLockComparer); diff != "" {
|
|
|
|
t.Fatalf("wrong providers after RemoveProvider beep\n%s", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|