0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-22 19:38:35 +00:00

fix(code): update acc tests to PVE 8.2 (#1269)

Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
This commit is contained in:
Pavel Boldyrev 2024-05-06 19:50:11 -04:00 committed by GitHub
parent 6bacbe8b56
commit 0b35f47780
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 17 deletions

View File

@ -26,13 +26,13 @@ func TestAccDatasourceVersion(t *testing.T) {
{
Config: `data "proxmox_virtual_environment_version" "test" {}`,
Check: resource.ComposeAggregateTestCheckFunc(
resource.TestCheckResourceAttr(datasourceName, "release", "8.1"),
resource.TestCheckResourceAttr(datasourceName, "release", "8.2"),
resource.TestCheckResourceAttrSet(datasourceName, "repository_id"),
resource.TestCheckResourceAttrWith(datasourceName, "version", func(value string) error {
if strings.HasPrefix(value, "8.1") {
if strings.HasPrefix(value, "8.2") {
return nil
}
return fmt.Errorf("version %s does not start with 8.1", value)
return fmt.Errorf("version %s does not start with 8.2", value)
}),
resource.TestCheckResourceAttrSet(datasourceName, "id"),
),

View File

@ -246,20 +246,6 @@ func TestAccResourceVMInitialization(t *testing.T) {
overwrite_unmanaged = true
}`),
}}},
{"native cloud-init: upgrade packages by default", []resource.TestStep{{
Config: te.renderConfig(`
resource "proxmox_virtual_environment_vm" "test_vm_cloudinit2" {
node_name = "{{.NodeName}}"
started = false
initialization {
}
}`),
Check: resource.ComposeTestCheckFunc(
testResourceAttributes("proxmox_virtual_environment_vm.test_vm_cloudinit2", map[string]string{
"initialization.0.upgrade": "true",
}),
),
}}},
{"native cloud-init: do not upgrade packages", []resource.TestStep{{
Config: te.renderConfig(`
resource "proxmox_virtual_environment_vm" "test_vm_cloudinit3" {