Files
terraform-provider-artifactapi/internal/provider/provider_test.go
T
unkinben b26e651d45
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/pre-commit Pipeline was successful
feat: add artifactapi_remote_github_rpm resource
The artifactapi server gains a github_rpm remote type that exposes a GitHub
repo's releases as a metadata-only yum repository (synthesized repodata, no
precache, downloads redirected to a backend remote). Surface it through the
provider so these remotes are declarable as code alongside the other types.

- Register the github_rpm remote resource (artifactapi_remote_github_rpm),
  reusing the shared remoteResource plumbing; add the NewRemoteGitHubRPM
  constructor to match its siblings.
- Generalize the releases_remote attribute description: it now names the
  backend remote that serves download bytes for both the terraform remote
  (URL rewriting) and the github_rpm remote (302 redirect of .rpm downloads).
- Document the type and add an example wiring a github_rpm remote to a generic
  github.com releases_remote.

Tests cover the resource metadata type name, the constructor, and mapping of
package_type/base_url/releases_remote/patterns through the API model; the
resource-count and expected-types assertions are updated.

Depends on the github_rpm API surface in artifactapi (separate PR). Cut a
minor release (make minor) once merged.
2026-08-10 20:57:26 +10:00

171 lines
4.4 KiB
Go

package provider
import (
"context"
"testing"
"github.com/hashicorp/terraform-plugin-framework/datasource"
fwprovider "github.com/hashicorp/terraform-plugin-framework/provider"
"github.com/hashicorp/terraform-plugin-framework/resource"
)
func TestNew_ReturnsFactory(t *testing.T) {
factory := New("1.0.0")
if factory == nil {
t.Fatal("expected non-nil factory")
}
p := factory()
if p == nil {
t.Fatal("expected non-nil provider")
}
_, ok := p.(*ArtifactAPIProvider)
if !ok {
t.Fatalf("expected *ArtifactAPIProvider, got %T", p)
}
}
func TestNew_VersionPropagated(t *testing.T) {
factory := New("2.3.4")
p := factory().(*ArtifactAPIProvider)
if p.version != "2.3.4" {
t.Errorf("expected version 2.3.4, got %s", p.version)
}
}
func TestProvider_Metadata(t *testing.T) {
p := &ArtifactAPIProvider{version: "1.2.3"}
req := fwprovider.MetadataRequest{}
var resp fwprovider.MetadataResponse
p.Metadata(context.Background(), req, &resp)
if resp.TypeName != "artifactapi" {
t.Errorf("expected type name 'artifactapi', got %s", resp.TypeName)
}
if resp.Version != "1.2.3" {
t.Errorf("expected version '1.2.3', got %s", resp.Version)
}
}
func TestProvider_Schema(t *testing.T) {
p := &ArtifactAPIProvider{version: "1.0.0"}
req := fwprovider.SchemaRequest{}
var resp fwprovider.SchemaResponse
p.Schema(context.Background(), req, &resp)
if resp.Schema.Description == "" {
t.Error("expected non-empty schema description")
}
_, ok := resp.Schema.Attributes["endpoint"]
if !ok {
t.Fatal("missing 'endpoint' attribute in schema")
}
}
func TestProvider_Resources(t *testing.T) {
p := &ArtifactAPIProvider{version: "1.0.0"}
resources := p.Resources(context.Background())
// 11 remote resource types + 1 virtual + local_terraform/pypi/rpm/docker/generic = 17
expectedCount := 17
if len(resources) != expectedCount {
t.Fatalf("expected %d resources, got %d", expectedCount, len(resources))
}
// Verify each factory produces a valid resource
for i, factory := range resources {
r := factory()
if r == nil {
t.Errorf("resource factory %d returned nil", i)
}
}
}
func TestProvider_Resources_ContainsExpectedTypes(t *testing.T) {
p := &ArtifactAPIProvider{version: "1.0.0"}
resources := p.Resources(context.Background())
// Collect type names by calling Metadata on each
typeNames := make(map[string]bool)
for _, factory := range resources {
r := factory()
req := resource.MetadataRequest{ProviderTypeName: "artifactapi"}
var resp resource.MetadataResponse
r.Metadata(context.Background(), req, &resp)
typeNames[resp.TypeName] = true
}
expected := []string{
"artifactapi_remote_generic",
"artifactapi_remote_docker",
"artifactapi_remote_helm",
"artifactapi_remote_pypi",
"artifactapi_remote_npm",
"artifactapi_remote_rpm",
"artifactapi_remote_alpine",
"artifactapi_remote_puppet",
"artifactapi_remote_terraform",
"artifactapi_remote_goproxy",
"artifactapi_remote_github_rpm",
"artifactapi_virtual",
"artifactapi_local_terraform",
"artifactapi_local_pypi",
"artifactapi_local_rpm",
"artifactapi_local_docker",
"artifactapi_local_generic",
}
for _, name := range expected {
if !typeNames[name] {
t.Errorf("missing expected resource type: %s", name)
}
}
}
func TestProvider_DataSources(t *testing.T) {
p := &ArtifactAPIProvider{version: "1.0.0"}
dataSources := p.DataSources(context.Background())
expectedCount := 2
if len(dataSources) != expectedCount {
t.Fatalf("expected %d data sources, got %d", expectedCount, len(dataSources))
}
// Verify each factory produces a valid data source
for i, factory := range dataSources {
ds := factory()
if ds == nil {
t.Errorf("data source factory %d returned nil", i)
}
}
}
func TestProvider_DataSources_ContainsExpectedTypes(t *testing.T) {
p := &ArtifactAPIProvider{version: "1.0.0"}
dataSources := p.DataSources(context.Background())
typeNames := make(map[string]bool)
for _, factory := range dataSources {
ds := factory()
req := datasource.MetadataRequest{ProviderTypeName: "artifactapi"}
var resp datasource.MetadataResponse
ds.Metadata(context.Background(), req, &resp)
typeNames[resp.TypeName] = true
}
expected := []string{
"artifactapi_remote",
"artifactapi_virtual",
}
for _, name := range expected {
if !typeNames[name] {
t.Errorf("missing expected data source type: %s", name)
}
}
}
func TestProvider_ImplementsInterface(t *testing.T) {
var _ fwprovider.Provider = &ArtifactAPIProvider{}
}