2019-12-20 02:24:14 +01:00
|
|
|
package getproviders
|
|
|
|
|
|
|
|
import (
|
internal: Verify provider signatures on install
Providers installed from the registry are accompanied by a list of
checksums (the "SHA256SUMS" file), which is cryptographically signed to
allow package authentication. The process of verifying this has multiple
steps:
- First we must verify that the SHA256 hash of the package archive
matches the expected hash. This could be done for local installations
too, in the future.
- Next we ensure that the expected hash returned as part of the registry
API response matches an entry in the checksum list.
- Finally we verify the cryptographic signature of the checksum list,
using the public keys provided by the registry.
Each of these steps is implemented as a separate PackageAuthentication
type. The local archive installation mechanism uses only the archive
checksum authenticator, and the HTTP installation uses all three in the
order given.
The package authentication system now also returns a result value, which
is used by command/init to display the result of the authentication
process.
There are three tiers of signature, each of which is presented
differently to the user:
- Signatures from the embedded HashiCorp public key indicate that the
provider is officially supported by HashiCorp;
- If the signing key is not from HashiCorp, it may have an associated
trust signature, which indicates that the provider is from one of
HashiCorp's trusted partners;
- Otherwise, if the signature is valid, this is a community provider.
2020-04-08 22:22:07 +02:00
|
|
|
"encoding/json"
|
2020-05-11 19:49:12 +02:00
|
|
|
"fmt"
|
2019-12-20 02:24:14 +01:00
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2020-05-11 19:49:12 +02:00
|
|
|
"github.com/apparentlymart/go-versions/versions"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
2019-12-20 02:24:14 +01:00
|
|
|
svchost "github.com/hashicorp/terraform-svchost"
|
|
|
|
disco "github.com/hashicorp/terraform-svchost/disco"
|
2020-05-11 19:49:12 +02:00
|
|
|
"github.com/hashicorp/terraform/addrs"
|
2019-12-20 02:24:14 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// testServices starts up a local HTTP server running a fake provider registry
|
|
|
|
// service and returns a service discovery object pre-configured to consider
|
|
|
|
// the host "example.com" to be served by the fake registry service.
|
|
|
|
//
|
|
|
|
// The returned discovery object also knows the hostname "not.example.com"
|
|
|
|
// which does not have a provider registry at all and "too-new.example.com"
|
|
|
|
// which has a "providers.v99" service that is inoperable but could be useful
|
|
|
|
// to test the error reporting for detecting an unsupported protocol version.
|
|
|
|
// It also knows fails.example.com but it refers to an endpoint that doesn't
|
|
|
|
// correctly speak HTTP, to simulate a protocol error.
|
|
|
|
//
|
|
|
|
// The second return value is a function to call at the end of a test function
|
|
|
|
// to shut down the test server. After you call that function, the discovery
|
|
|
|
// object becomes useless.
|
2020-01-09 01:47:49 +01:00
|
|
|
func testServices(t *testing.T) (services *disco.Disco, baseURL string, cleanup func()) {
|
2019-12-20 02:24:14 +01:00
|
|
|
server := httptest.NewServer(http.HandlerFunc(fakeRegistryHandler))
|
|
|
|
|
2020-01-09 01:47:49 +01:00
|
|
|
services = disco.New()
|
2019-12-20 02:24:14 +01:00
|
|
|
services.ForceHostServices(svchost.Hostname("example.com"), map[string]interface{}{
|
|
|
|
"providers.v1": server.URL + "/providers/v1/",
|
|
|
|
})
|
|
|
|
services.ForceHostServices(svchost.Hostname("not.example.com"), map[string]interface{}{})
|
|
|
|
services.ForceHostServices(svchost.Hostname("too-new.example.com"), map[string]interface{}{
|
|
|
|
// This service doesn't actually work; it's here only to be
|
|
|
|
// detected as "too new" by the discovery logic.
|
|
|
|
"providers.v99": server.URL + "/providers/v99/",
|
|
|
|
})
|
|
|
|
services.ForceHostServices(svchost.Hostname("fails.example.com"), map[string]interface{}{
|
|
|
|
"providers.v1": server.URL + "/fails-immediately/",
|
|
|
|
})
|
|
|
|
|
2020-01-22 01:01:49 +01:00
|
|
|
// We'll also permit registry.terraform.io here just because it's our
|
|
|
|
// default and has some unique features that are not allowed on any other
|
|
|
|
// hostname. It behaves the same as example.com, which should be preferred
|
|
|
|
// if you're not testing something specific to the default registry in order
|
|
|
|
// to ensure that most things are hostname-agnostic.
|
|
|
|
services.ForceHostServices(svchost.Hostname("registry.terraform.io"), map[string]interface{}{
|
|
|
|
"providers.v1": server.URL + "/providers/v1/",
|
|
|
|
})
|
|
|
|
|
2020-01-09 01:47:49 +01:00
|
|
|
return services, server.URL, func() {
|
2019-12-20 02:24:14 +01:00
|
|
|
server.Close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// testRegistrySource is a wrapper around testServices that uses the created
|
|
|
|
// discovery object to produce a Source instance that is ready to use with the
|
|
|
|
// fake registry services.
|
|
|
|
//
|
|
|
|
// As with testServices, the second return value is a function to call at the end
|
|
|
|
// of your test in order to shut down the test server.
|
2020-01-09 01:47:49 +01:00
|
|
|
func testRegistrySource(t *testing.T) (source *RegistrySource, baseURL string, cleanup func()) {
|
|
|
|
services, baseURL, close := testServices(t)
|
|
|
|
source = NewRegistrySource(services)
|
|
|
|
return source, baseURL, close
|
2019-12-20 02:24:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func fakeRegistryHandler(resp http.ResponseWriter, req *http.Request) {
|
|
|
|
path := req.URL.EscapedPath()
|
|
|
|
if strings.HasPrefix(path, "/fails-immediately/") {
|
|
|
|
// Here we take over the socket and just close it immediately, to
|
|
|
|
// simulate one possible way a server might not be an HTTP server.
|
|
|
|
hijacker, ok := resp.(http.Hijacker)
|
|
|
|
if !ok {
|
|
|
|
// Not hijackable, so we'll just fail normally.
|
|
|
|
// If this happens, tests relying on this will fail.
|
|
|
|
resp.WriteHeader(500)
|
|
|
|
resp.Write([]byte(`cannot hijack`))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
conn, _, err := hijacker.Hijack()
|
|
|
|
if err != nil {
|
|
|
|
resp.WriteHeader(500)
|
|
|
|
resp.Write([]byte(`hijack failed`))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
conn.Close()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
internal: Verify provider signatures on install
Providers installed from the registry are accompanied by a list of
checksums (the "SHA256SUMS" file), which is cryptographically signed to
allow package authentication. The process of verifying this has multiple
steps:
- First we must verify that the SHA256 hash of the package archive
matches the expected hash. This could be done for local installations
too, in the future.
- Next we ensure that the expected hash returned as part of the registry
API response matches an entry in the checksum list.
- Finally we verify the cryptographic signature of the checksum list,
using the public keys provided by the registry.
Each of these steps is implemented as a separate PackageAuthentication
type. The local archive installation mechanism uses only the archive
checksum authenticator, and the HTTP installation uses all three in the
order given.
The package authentication system now also returns a result value, which
is used by command/init to display the result of the authentication
process.
There are three tiers of signature, each of which is presented
differently to the user:
- Signatures from the embedded HashiCorp public key indicate that the
provider is officially supported by HashiCorp;
- If the signing key is not from HashiCorp, it may have an associated
trust signature, which indicates that the provider is from one of
HashiCorp's trusted partners;
- Otherwise, if the signature is valid, this is a community provider.
2020-04-08 22:22:07 +02:00
|
|
|
if strings.HasPrefix(path, "/pkg/") {
|
|
|
|
switch path {
|
|
|
|
case "/pkg/awesomesauce/happycloud_1.2.0.zip":
|
|
|
|
resp.Write([]byte("some zip file"))
|
|
|
|
case "/pkg/awesomesauce/happycloud_1.2.0_SHA256SUMS":
|
|
|
|
resp.Write([]byte("000000000000000000000000000000000000000000000000000000000000f00d happycloud_1.2.0.zip\n"))
|
|
|
|
case "/pkg/awesomesauce/happycloud_1.2.0_SHA256SUMS.sig":
|
|
|
|
resp.Write([]byte("GPG signature"))
|
|
|
|
default:
|
|
|
|
resp.WriteHeader(404)
|
|
|
|
resp.Write([]byte("unknown package file download"))
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-20 02:24:14 +01:00
|
|
|
if !strings.HasPrefix(path, "/providers/v1/") {
|
|
|
|
resp.WriteHeader(404)
|
|
|
|
resp.Write([]byte(`not a provider registry endpoint`))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
pathParts := strings.Split(path, "/")[3:]
|
2020-01-22 01:01:49 +01:00
|
|
|
if len(pathParts) < 3 {
|
|
|
|
resp.WriteHeader(404)
|
|
|
|
resp.Write([]byte(`unexpected number of path parts`))
|
|
|
|
return
|
|
|
|
}
|
2020-05-08 17:40:55 +02:00
|
|
|
log.Printf("[TRACE] fake provider registry request for %#v", pathParts)
|
2019-12-20 02:24:14 +01:00
|
|
|
|
|
|
|
if pathParts[2] == "versions" {
|
|
|
|
if len(pathParts) != 3 {
|
|
|
|
resp.WriteHeader(404)
|
|
|
|
resp.Write([]byte(`extraneous path parts`))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
switch pathParts[0] + "/" + pathParts[1] {
|
|
|
|
case "awesomesauce/happycloud":
|
|
|
|
resp.Header().Set("Content-Type", "application/json")
|
|
|
|
resp.WriteHeader(200)
|
|
|
|
// Note that these version numbers are intentionally misordered
|
|
|
|
// so we can test that the client-side code places them in the
|
|
|
|
// correct order (lowest precedence first).
|
2020-05-11 19:49:12 +02:00
|
|
|
resp.Write([]byte(`{"versions":[{"version":"0.1.0","protocols":["1.0"]},{"version":"2.0.0","protocols":["99.0"]},{"version":"1.2.0","protocols":["5.0"]}, {"version":"1.0.0","protocols":["5.0"]}]}`))
|
|
|
|
case "weaksauce/unsupported-protocol":
|
|
|
|
resp.Header().Set("Content-Type", "application/json")
|
|
|
|
resp.WriteHeader(200)
|
|
|
|
resp.Write([]byte(`{"versions":[{"version":"1.0.0","protocols":["0.1"]}]}`))
|
2019-12-20 02:24:14 +01:00
|
|
|
case "weaksauce/no-versions":
|
|
|
|
resp.Header().Set("Content-Type", "application/json")
|
|
|
|
resp.WriteHeader(200)
|
|
|
|
resp.Write([]byte(`{"versions":[]}`))
|
2020-05-08 17:40:55 +02:00
|
|
|
case "-/legacy":
|
|
|
|
resp.Header().Set("Content-Type", "application/json")
|
|
|
|
resp.WriteHeader(200)
|
|
|
|
// This response is used for testing LookupLegacyProvider
|
|
|
|
resp.Write([]byte(`{"id":"legacycorp/legacy"}`))
|
|
|
|
case "-/changetype":
|
|
|
|
resp.Header().Set("Content-Type", "application/json")
|
|
|
|
resp.WriteHeader(200)
|
|
|
|
// This (unrealistic) response is used for error handling code coverage
|
|
|
|
resp.Write([]byte(`{"id":"legacycorp/newtype"}`))
|
|
|
|
case "-/invalid":
|
|
|
|
resp.Header().Set("Content-Type", "application/json")
|
|
|
|
resp.WriteHeader(200)
|
|
|
|
// This (unrealistic) response is used for error handling code coverage
|
|
|
|
resp.Write([]byte(`{"id":"some/invalid/id/string"}`))
|
2019-12-20 02:24:14 +01:00
|
|
|
default:
|
|
|
|
resp.WriteHeader(404)
|
|
|
|
resp.Write([]byte(`unknown namespace or provider type`))
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(pathParts) == 6 && pathParts[3] == "download" {
|
|
|
|
switch pathParts[0] + "/" + pathParts[1] {
|
|
|
|
case "awesomesauce/happycloud":
|
|
|
|
if pathParts[4] == "nonexist" {
|
|
|
|
resp.WriteHeader(404)
|
|
|
|
resp.Write([]byte(`unsupported OS`))
|
|
|
|
return
|
|
|
|
}
|
2020-05-11 19:49:12 +02:00
|
|
|
var protocols []string
|
|
|
|
version := pathParts[2]
|
|
|
|
switch version {
|
|
|
|
case "0.1.0":
|
|
|
|
protocols = []string{"1.0"}
|
|
|
|
case "2.0.0":
|
|
|
|
protocols = []string{"99.0"}
|
|
|
|
default:
|
|
|
|
protocols = []string{"5.0"}
|
|
|
|
}
|
|
|
|
|
internal: Verify provider signatures on install
Providers installed from the registry are accompanied by a list of
checksums (the "SHA256SUMS" file), which is cryptographically signed to
allow package authentication. The process of verifying this has multiple
steps:
- First we must verify that the SHA256 hash of the package archive
matches the expected hash. This could be done for local installations
too, in the future.
- Next we ensure that the expected hash returned as part of the registry
API response matches an entry in the checksum list.
- Finally we verify the cryptographic signature of the checksum list,
using the public keys provided by the registry.
Each of these steps is implemented as a separate PackageAuthentication
type. The local archive installation mechanism uses only the archive
checksum authenticator, and the HTTP installation uses all three in the
order given.
The package authentication system now also returns a result value, which
is used by command/init to display the result of the authentication
process.
There are three tiers of signature, each of which is presented
differently to the user:
- Signatures from the embedded HashiCorp public key indicate that the
provider is officially supported by HashiCorp;
- If the signing key is not from HashiCorp, it may have an associated
trust signature, which indicates that the provider is from one of
HashiCorp's trusted partners;
- Otherwise, if the signature is valid, this is a community provider.
2020-04-08 22:22:07 +02:00
|
|
|
body := map[string]interface{}{
|
2020-05-11 19:49:12 +02:00
|
|
|
"protocols": protocols,
|
internal: Verify provider signatures on install
Providers installed from the registry are accompanied by a list of
checksums (the "SHA256SUMS" file), which is cryptographically signed to
allow package authentication. The process of verifying this has multiple
steps:
- First we must verify that the SHA256 hash of the package archive
matches the expected hash. This could be done for local installations
too, in the future.
- Next we ensure that the expected hash returned as part of the registry
API response matches an entry in the checksum list.
- Finally we verify the cryptographic signature of the checksum list,
using the public keys provided by the registry.
Each of these steps is implemented as a separate PackageAuthentication
type. The local archive installation mechanism uses only the archive
checksum authenticator, and the HTTP installation uses all three in the
order given.
The package authentication system now also returns a result value, which
is used by command/init to display the result of the authentication
process.
There are three tiers of signature, each of which is presented
differently to the user:
- Signatures from the embedded HashiCorp public key indicate that the
provider is officially supported by HashiCorp;
- If the signing key is not from HashiCorp, it may have an associated
trust signature, which indicates that the provider is from one of
HashiCorp's trusted partners;
- Otherwise, if the signature is valid, this is a community provider.
2020-04-08 22:22:07 +02:00
|
|
|
"os": pathParts[4],
|
|
|
|
"arch": pathParts[5],
|
2020-05-11 19:49:12 +02:00
|
|
|
"filename": "happycloud_" + version + ".zip",
|
internal: Verify provider signatures on install
Providers installed from the registry are accompanied by a list of
checksums (the "SHA256SUMS" file), which is cryptographically signed to
allow package authentication. The process of verifying this has multiple
steps:
- First we must verify that the SHA256 hash of the package archive
matches the expected hash. This could be done for local installations
too, in the future.
- Next we ensure that the expected hash returned as part of the registry
API response matches an entry in the checksum list.
- Finally we verify the cryptographic signature of the checksum list,
using the public keys provided by the registry.
Each of these steps is implemented as a separate PackageAuthentication
type. The local archive installation mechanism uses only the archive
checksum authenticator, and the HTTP installation uses all three in the
order given.
The package authentication system now also returns a result value, which
is used by command/init to display the result of the authentication
process.
There are three tiers of signature, each of which is presented
differently to the user:
- Signatures from the embedded HashiCorp public key indicate that the
provider is officially supported by HashiCorp;
- If the signing key is not from HashiCorp, it may have an associated
trust signature, which indicates that the provider is from one of
HashiCorp's trusted partners;
- Otherwise, if the signature is valid, this is a community provider.
2020-04-08 22:22:07 +02:00
|
|
|
"shasum": "000000000000000000000000000000000000000000000000000000000000f00d",
|
2020-05-11 19:49:12 +02:00
|
|
|
"download_url": "/pkg/awesomesauce/happycloud_" + version + ".zip",
|
|
|
|
"shasums_url": "/pkg/awesomesauce/happycloud_" + version + "_SHA256SUMS",
|
|
|
|
"shasums_signature_url": "/pkg/awesomesauce/happycloud_" + version + "_SHA256SUMS.sig",
|
internal: Verify provider signatures on install
Providers installed from the registry are accompanied by a list of
checksums (the "SHA256SUMS" file), which is cryptographically signed to
allow package authentication. The process of verifying this has multiple
steps:
- First we must verify that the SHA256 hash of the package archive
matches the expected hash. This could be done for local installations
too, in the future.
- Next we ensure that the expected hash returned as part of the registry
API response matches an entry in the checksum list.
- Finally we verify the cryptographic signature of the checksum list,
using the public keys provided by the registry.
Each of these steps is implemented as a separate PackageAuthentication
type. The local archive installation mechanism uses only the archive
checksum authenticator, and the HTTP installation uses all three in the
order given.
The package authentication system now also returns a result value, which
is used by command/init to display the result of the authentication
process.
There are three tiers of signature, each of which is presented
differently to the user:
- Signatures from the embedded HashiCorp public key indicate that the
provider is officially supported by HashiCorp;
- If the signing key is not from HashiCorp, it may have an associated
trust signature, which indicates that the provider is from one of
HashiCorp's trusted partners;
- Otherwise, if the signature is valid, this is a community provider.
2020-04-08 22:22:07 +02:00
|
|
|
"signing_keys": map[string]interface{}{
|
|
|
|
"gpg_public_keys": []map[string]interface{}{
|
|
|
|
{
|
|
|
|
"ascii_armor": HashicorpPublicKey,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
enc, err := json.Marshal(body)
|
|
|
|
if err != nil {
|
|
|
|
resp.WriteHeader(500)
|
|
|
|
resp.Write([]byte("failed to encode body"))
|
|
|
|
}
|
2019-12-20 02:24:14 +01:00
|
|
|
resp.Header().Set("Content-Type", "application/json")
|
|
|
|
resp.WriteHeader(200)
|
internal: Verify provider signatures on install
Providers installed from the registry are accompanied by a list of
checksums (the "SHA256SUMS" file), which is cryptographically signed to
allow package authentication. The process of verifying this has multiple
steps:
- First we must verify that the SHA256 hash of the package archive
matches the expected hash. This could be done for local installations
too, in the future.
- Next we ensure that the expected hash returned as part of the registry
API response matches an entry in the checksum list.
- Finally we verify the cryptographic signature of the checksum list,
using the public keys provided by the registry.
Each of these steps is implemented as a separate PackageAuthentication
type. The local archive installation mechanism uses only the archive
checksum authenticator, and the HTTP installation uses all three in the
order given.
The package authentication system now also returns a result value, which
is used by command/init to display the result of the authentication
process.
There are three tiers of signature, each of which is presented
differently to the user:
- Signatures from the embedded HashiCorp public key indicate that the
provider is officially supported by HashiCorp;
- If the signing key is not from HashiCorp, it may have an associated
trust signature, which indicates that the provider is from one of
HashiCorp's trusted partners;
- Otherwise, if the signature is valid, this is a community provider.
2020-04-08 22:22:07 +02:00
|
|
|
resp.Write(enc)
|
2019-12-20 02:24:14 +01:00
|
|
|
default:
|
|
|
|
resp.WriteHeader(404)
|
|
|
|
resp.Write([]byte(`unknown namespace/provider/version/architecture`))
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
resp.WriteHeader(404)
|
|
|
|
resp.Write([]byte(`unrecognized path scheme`))
|
|
|
|
}
|
2020-05-11 19:49:12 +02:00
|
|
|
|
|
|
|
func TestProviderVersions(t *testing.T) {
|
|
|
|
source, _, close := testRegistrySource(t)
|
|
|
|
defer close()
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
provider addrs.Provider
|
|
|
|
wantVersions map[string][]string
|
|
|
|
wantErr string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
addrs.MustParseProviderSourceString("example.com/awesomesauce/happycloud"),
|
|
|
|
map[string][]string{
|
|
|
|
"0.1.0": {"1.0"},
|
|
|
|
"1.0.0": {"5.0"},
|
|
|
|
"1.2.0": {"5.0"},
|
|
|
|
"2.0.0": {"99.0"},
|
|
|
|
},
|
|
|
|
``,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
addrs.MustParseProviderSourceString("example.com/weaksauce/no-versions"),
|
|
|
|
nil,
|
|
|
|
``,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
addrs.MustParseProviderSourceString("example.com/nonexist/nonexist"),
|
|
|
|
nil,
|
|
|
|
`provider registry example.com does not have a provider named example.com/nonexist/nonexist`,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, test := range tests {
|
|
|
|
t.Run(test.provider.String(), func(t *testing.T) {
|
|
|
|
client, err := source.registryClient(test.provider.Hostname)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
gotVersions, err := client.ProviderVersions(test.provider)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
if test.wantErr == "" {
|
|
|
|
t.Fatalf("wrong error\ngot: %s\nwant: <nil>", err.Error())
|
|
|
|
}
|
|
|
|
if got, want := err.Error(), test.wantErr; got != want {
|
|
|
|
t.Fatalf("wrong error\ngot: %s\nwant: %s", got, want)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if test.wantErr != "" {
|
|
|
|
t.Fatalf("wrong error\ngot: <nil>\nwant: %s", test.wantErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
if diff := cmp.Diff(test.wantVersions, gotVersions); diff != "" {
|
|
|
|
t.Errorf("wrong result\n%s", diff)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFindClosestProtocolCompatibleVersion(t *testing.T) {
|
|
|
|
source, _, close := testRegistrySource(t)
|
|
|
|
defer close()
|
|
|
|
|
|
|
|
tests := map[string]struct {
|
|
|
|
provider addrs.Provider
|
|
|
|
version Version
|
|
|
|
wantSuggestion Version
|
|
|
|
wantErr string
|
|
|
|
}{
|
|
|
|
"pinned version too old": {
|
|
|
|
addrs.MustParseProviderSourceString("example.com/awesomesauce/happycloud"),
|
|
|
|
MustParseVersion("0.1.0"),
|
|
|
|
MustParseVersion("1.2.0"),
|
|
|
|
``,
|
|
|
|
},
|
|
|
|
"pinned version too new": {
|
|
|
|
addrs.MustParseProviderSourceString("example.com/awesomesauce/happycloud"),
|
|
|
|
MustParseVersion("2.0.0"),
|
|
|
|
MustParseVersion("1.2.0"),
|
|
|
|
``,
|
|
|
|
},
|
|
|
|
// This should not actually happen, the function is only meant to be
|
|
|
|
// called when the requested provider version is not supported
|
|
|
|
"pinned version just right": {
|
|
|
|
addrs.MustParseProviderSourceString("example.com/awesomesauce/happycloud"),
|
|
|
|
MustParseVersion("1.2.0"),
|
|
|
|
MustParseVersion("1.2.0"),
|
|
|
|
``,
|
|
|
|
},
|
|
|
|
"nonexisting provider": {
|
|
|
|
addrs.MustParseProviderSourceString("example.com/nonexist/nonexist"),
|
|
|
|
MustParseVersion("1.2.0"),
|
|
|
|
versions.Unspecified,
|
|
|
|
`provider registry example.com does not have a provider named example.com/nonexist/nonexist`,
|
|
|
|
},
|
|
|
|
"versionless provider": {
|
|
|
|
addrs.MustParseProviderSourceString("example.com/weaksauce/no-versions"),
|
|
|
|
MustParseVersion("1.2.0"),
|
|
|
|
versions.Unspecified,
|
|
|
|
``,
|
|
|
|
},
|
|
|
|
"unsupported provider protocol": {
|
|
|
|
addrs.MustParseProviderSourceString("example.com/weaksauce/unsupported-protocol"),
|
|
|
|
MustParseVersion("1.0.0"),
|
|
|
|
versions.Unspecified,
|
|
|
|
``,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for name, test := range tests {
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
client, err := source.registryClient(test.provider.Hostname)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
got, err := client.findClosestProtocolCompatibleVersion(test.provider, test.version)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
if test.wantErr == "" {
|
|
|
|
t.Fatalf("wrong error\ngot: %s\nwant: <nil>", err.Error())
|
|
|
|
}
|
|
|
|
if got, want := err.Error(), test.wantErr; got != want {
|
|
|
|
t.Fatalf("wrong error\ngot: %s\nwant: %s", got, want)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if test.wantErr != "" {
|
|
|
|
t.Fatalf("wrong error\ngot: <nil>\nwant: %s", test.wantErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("Got: %s, Want: %s\n", got, test.wantSuggestion)
|
|
|
|
|
|
|
|
if !got.Same(test.wantSuggestion) {
|
|
|
|
t.Fatalf("wrong result\ngot: %s\nwant: %s", got.String(), test.wantSuggestion.String())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|