mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 10:33:46 +00:00
* feat(vm): deprecate `enabled` attribute on `cdrom`/`disk` devices Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> * docs(vm): update CDROM configuration terminology and deprecation note Improve documentation for virtual machine CD-ROM configuration by: - Correcting capitalization of "CD-ROM" - Clarifying deprecation note for `enabled` attribute Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> --------- Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
97 lines
2.3 KiB
Go
97 lines
2.3 KiB
Go
//go:build acceptance || all
|
|
|
|
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
|
|
)
|
|
|
|
func TestAccResourceVMCDROM(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
te := InitEnvironment(t)
|
|
|
|
tests := []struct {
|
|
name string
|
|
steps []resource.TestStep
|
|
}{
|
|
{"default no cdrom", []resource.TestStep{{
|
|
Config: te.RenderConfig(`
|
|
resource "proxmox_virtual_environment_vm" "test_cdrom" {
|
|
node_name = "{{.NodeName}}"
|
|
started = false
|
|
name = "test-cdrom"
|
|
}`),
|
|
Check: NoResourceAttributesSet("proxmox_virtual_environment_vm.test_cdrom", []string{"cdrom.#"}),
|
|
}}},
|
|
{"none cdrom", []resource.TestStep{
|
|
{
|
|
Config: te.RenderConfig(`
|
|
resource "proxmox_virtual_environment_vm" "test_cdrom" {
|
|
node_name = "{{.NodeName}}"
|
|
started = false
|
|
name = "test-cdrom"
|
|
cdrom {
|
|
file_id = "none"
|
|
}
|
|
}`),
|
|
Check: ResourceAttributes("proxmox_virtual_environment_vm.test_cdrom", map[string]string{
|
|
"cdrom.0.file_id": "none",
|
|
}),
|
|
},
|
|
{
|
|
RefreshState: true,
|
|
},
|
|
}},
|
|
{"enable cdrom", []resource.TestStep{
|
|
{
|
|
Config: te.RenderConfig(`
|
|
resource "proxmox_virtual_environment_vm" "test_cdrom" {
|
|
node_name = "{{.NodeName}}"
|
|
started = false
|
|
name = "test-cdrom"
|
|
cdrom {
|
|
file_id = "none"
|
|
}
|
|
}`),
|
|
Check: ResourceAttributes("proxmox_virtual_environment_vm.test_cdrom", map[string]string{
|
|
"cdrom.0.file_id": "none",
|
|
}),
|
|
},
|
|
{
|
|
Config: te.RenderConfig(`
|
|
resource "proxmox_virtual_environment_vm" "test_cdrom" {
|
|
node_name = "{{.NodeName}}"
|
|
started = false
|
|
name = "test-cdrom"
|
|
cdrom {
|
|
file_id = "cdrom"
|
|
}
|
|
}`),
|
|
Check: ResourceAttributes("proxmox_virtual_environment_vm.test_cdrom", map[string]string{
|
|
"cdrom.0.file_id": "cdrom",
|
|
}),
|
|
},
|
|
}},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
ProtoV6ProviderFactories: te.AccProviders,
|
|
Steps: tt.steps,
|
|
})
|
|
})
|
|
}
|
|
}
|