Files
anshulSharma a234126747 changes for pulling binary from releases.hashicorp.com (#13431)
* changes for pulling binary from releases.hashicorp.com

* cahnges for getting release from release official site

* cahnges for getting release from release official site

* unit test cases

* unit test cases

* unit test coverage

* changes for getter releases.hashicorp.com

* lint fix

* lint fix

* lint fix

* manifest.json related changes

* manifest.json related changes

* manifest.json related changes

* manifest.json related changes

* github getter test cases

* added test cases for getters

* added test cases for getters

* added test cases for getters

* added test cases for getters

* added test cases for getters

* added test cases for plugins getter

* unit test cases for getting release from official site

* description to the methods
2025-07-29 08:50:23 +05:30

193 lines
4.4 KiB
Go

package github
import (
"testing"
plugingetter "github.com/hashicorp/packer/packer/plugin-getter"
"github.com/stretchr/testify/assert"
)
func TestInit(t *testing.T) {
tests := []struct {
name string
entry *plugingetter.ChecksumFileEntry
binVersion string
protocolVersion string
os string
arch string
wantErr bool
}{
{
name: "valid format parses",
entry: &plugingetter.ChecksumFileEntry{
Filename: "packer-plugin-v0.2.12_x5.0_freebsd_amd64.zip",
},
binVersion: "v0.2.12",
protocolVersion: "x5.0",
os: "freebsd",
arch: "amd64",
wantErr: false,
},
{
name: "malformed filename returns error",
entry: &plugingetter.ChecksumFileEntry{
Filename: "packer-plugin-v0.2.12_x5.0.zip",
},
binVersion: "v0.2.12",
protocolVersion: "x5.0",
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
req := &plugingetter.Requirement{}
getter := &Getter{}
err := getter.Init(req, tt.entry)
if err != nil && !tt.wantErr {
t.Fatalf("unexpected error: %s", err)
}
if err == nil && tt.wantErr {
t.Fatal("expected error but got nil")
}
if !tt.wantErr && (tt.entry.BinVersion != "v0.2.12" || tt.entry.ProtVersion != "x5.0" || tt.entry.Os != "freebsd" || tt.entry.Arch != "amd64") {
t.Fatalf("unexpected parsed values: %+v", tt.entry)
}
})
}
}
func TestValidate(t *testing.T) {
tests := []struct {
name string
option plugingetter.GetOptions
installOpts plugingetter.BinaryInstallationOptions
entry *plugingetter.ChecksumFileEntry
version string
wantErr bool
}{
{
name: "valid entry",
installOpts: plugingetter.BinaryInstallationOptions{
OS: "linux",
ARCH: "amd64",
},
entry: &plugingetter.ChecksumFileEntry{
BinVersion: "v1.2.3",
Os: "linux",
Arch: "amd64",
ProtVersion: "x5.0",
},
version: "1.2.3",
wantErr: false,
},
{
name: "invalid bin version",
installOpts: plugingetter.BinaryInstallationOptions{
OS: "linux",
ARCH: "amd64",
},
entry: &plugingetter.ChecksumFileEntry{
BinVersion: "v1.2.3",
Os: "linux",
Arch: "amd64",
ProtVersion: "x5.0",
},
version: "1.2.4",
wantErr: true,
},
{
name: "wrong OS",
installOpts: plugingetter.BinaryInstallationOptions{
OS: "linux",
ARCH: "amd64",
},
entry: &plugingetter.ChecksumFileEntry{
BinVersion: "v1.2.3",
Os: "darwin",
Arch: "amd64",
ProtVersion: "x5.0",
},
version: "1.2.3",
wantErr: true,
},
{
name: "wrong Arch",
installOpts: plugingetter.BinaryInstallationOptions{
OS: "linux",
ARCH: "amd64",
},
entry: &plugingetter.ChecksumFileEntry{
BinVersion: "v1.2.3",
Os: "linux",
Arch: "arm64",
ProtVersion: "x5.0",
},
version: "1.2.3",
wantErr: true,
},
{
name: "invalid API major version",
installOpts: plugingetter.BinaryInstallationOptions{
OS: "linux",
ARCH: "amd64",
APIVersionMajor: "5",
APIVersionMinor: "0",
},
entry: &plugingetter.ChecksumFileEntry{
BinVersion: "v1.2.3",
Os: "linux",
Arch: "amd64",
ProtVersion: "x4.0",
},
version: "1.2.3",
wantErr: true,
},
{
name: "invalid API minor version",
installOpts: plugingetter.BinaryInstallationOptions{
OS: "linux",
ARCH: "amd64",
APIVersionMajor: "5",
APIVersionMinor: "0",
},
entry: &plugingetter.ChecksumFileEntry{
BinVersion: "v1.2.3",
Os: "linux",
Arch: "amd64",
ProtVersion: "x5.4",
},
version: "1.2.3",
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
getter := &Getter{}
err := getter.Validate(plugingetter.GetOptions{}, tt.version, tt.installOpts, tt.entry)
if err != nil && !tt.wantErr {
t.Fatalf("unexpected error: %s", err)
}
if err == nil && tt.wantErr {
t.Fatal("expected error but got nil")
}
})
}
}
func TestExpectedFileName(t *testing.T) {
getter := &Getter{}
pr := plugingetter.Requirement{}
fileName := getter.ExpectedFileName(&pr, "1.2.3", &plugingetter.ChecksumFileEntry{}, "packer-plugin-docker_v1.2.3_x5.0_linux_amd64.zip")
assert.Equal(t, "packer-plugin-docker_v1.2.3_x5.0_linux_amd64.zip", fileName)
}