245 lines
6.4 KiB
Go
245 lines
6.4 KiB
Go
package azure
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/Azure/azure-sdk-for-go/management"
|
|
"github.com/Azure/azure-sdk-for-go/management/virtualmachinedisk"
|
|
"github.com/hashicorp/terraform/helper/acctest"
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
func TestAccAzureDataDisk_basic(t *testing.T) {
|
|
var disk virtualmachinedisk.DataDiskResponse
|
|
name := fmt.Sprintf("terraform-test%d", acctest.RandInt())
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckAzureDataDiskDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccAzureDataDisk_basic(name),
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckAzureDataDiskExists(
|
|
"azure_data_disk.foo", &disk),
|
|
testAccCheckAzureDataDiskAttributes(&disk),
|
|
resource.TestCheckResourceAttr(
|
|
"azure_data_disk.foo", "label", fmt.Sprintf("%s-0", name)),
|
|
resource.TestCheckResourceAttr(
|
|
"azure_data_disk.foo", "size", "10"),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestAccAzureDataDisk_update(t *testing.T) {
|
|
var disk virtualmachinedisk.DataDiskResponse
|
|
name := fmt.Sprintf("terraform-test%d", acctest.RandInt())
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckAzureDataDiskDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccAzureDataDisk_advanced(name),
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckAzureDataDiskExists(
|
|
"azure_data_disk.foo", &disk),
|
|
resource.TestCheckResourceAttr(
|
|
"azure_data_disk.foo", "label", fmt.Sprintf("%s-1", name)),
|
|
resource.TestCheckResourceAttr(
|
|
"azure_data_disk.foo", "lun", "1"),
|
|
resource.TestCheckResourceAttr(
|
|
"azure_data_disk.foo", "size", "10"),
|
|
resource.TestCheckResourceAttr(
|
|
"azure_data_disk.foo", "caching", "ReadOnly"),
|
|
resource.TestCheckResourceAttr(
|
|
"azure_data_disk.foo", "virtual_machine", name),
|
|
),
|
|
},
|
|
|
|
resource.TestStep{
|
|
Config: testAccAzureDataDisk_update(name),
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckAzureDataDiskExists(
|
|
"azure_data_disk.foo", &disk),
|
|
resource.TestCheckResourceAttr(
|
|
"azure_data_disk.foo", "label", fmt.Sprintf("%s-1", name)),
|
|
resource.TestCheckResourceAttr(
|
|
"azure_data_disk.foo", "lun", "2"),
|
|
resource.TestCheckResourceAttr(
|
|
"azure_data_disk.foo", "size", "20"),
|
|
resource.TestCheckResourceAttr(
|
|
"azure_data_disk.foo", "caching", "ReadWrite"),
|
|
resource.TestCheckResourceAttr(
|
|
"azure_data_disk.foo", "virtual_machine", "terraform-test2"),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testAccCheckAzureDataDiskExists(
|
|
n string,
|
|
disk *virtualmachinedisk.DataDiskResponse) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
rs, ok := s.RootModule().Resources[n]
|
|
if !ok {
|
|
return fmt.Errorf("Not found: %s", n)
|
|
}
|
|
|
|
if rs.Primary.ID == "" {
|
|
return fmt.Errorf("No Data Disk ID is set")
|
|
}
|
|
|
|
vm := rs.Primary.Attributes["virtual_machine"]
|
|
lun, err := strconv.Atoi(rs.Primary.Attributes["lun"])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
vmDiskClient := testAccProvider.Meta().(*Client).vmDiskClient
|
|
d, err := vmDiskClient.GetDataDisk(vm, vm, vm, lun)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if d.DiskName != rs.Primary.ID {
|
|
return fmt.Errorf("Data Disk not found")
|
|
}
|
|
|
|
*disk = d
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func testAccCheckAzureDataDiskAttributes(
|
|
disk *virtualmachinedisk.DataDiskResponse) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
|
|
if disk.Lun != 0 {
|
|
return fmt.Errorf("Bad lun: %d", disk.Lun)
|
|
}
|
|
|
|
if disk.LogicalDiskSizeInGB != 10 {
|
|
return fmt.Errorf("Bad size: %d", disk.LogicalDiskSizeInGB)
|
|
}
|
|
|
|
if disk.HostCaching != "None" {
|
|
return fmt.Errorf("Bad caching: %s", disk.HostCaching)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func testAccCheckAzureDataDiskDestroy(s *terraform.State) error {
|
|
vmDiskClient := testAccProvider.Meta().(*Client).vmDiskClient
|
|
|
|
for _, rs := range s.RootModule().Resources {
|
|
if rs.Type != "azure_data_disk" {
|
|
continue
|
|
}
|
|
|
|
if rs.Primary.ID == "" {
|
|
return fmt.Errorf("No Disk ID is set")
|
|
}
|
|
|
|
vm := rs.Primary.Attributes["virtual_machine"]
|
|
lun, err := strconv.Atoi(rs.Primary.Attributes["lun"])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = vmDiskClient.GetDataDisk(vm, vm, vm, lun)
|
|
if err == nil {
|
|
return fmt.Errorf("Data disk %s still exists", rs.Primary.ID)
|
|
}
|
|
|
|
if !management.IsResourceNotFoundError(err) {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func testAccAzureDataDisk_basic(name string) string {
|
|
return fmt.Sprintf(`
|
|
resource "azure_instance" "foo" {
|
|
name = "%s"
|
|
image = "Ubuntu Server 14.04 LTS"
|
|
size = "Basic_A1"
|
|
storage_service_name = "%s"
|
|
location = "West US"
|
|
username = "terraform"
|
|
password = "Pass!admin123"
|
|
}
|
|
|
|
resource "azure_data_disk" "foo" {
|
|
lun = 0
|
|
size = 10
|
|
storage_service_name = "${azure_instance.foo.storage_service_name}"
|
|
virtual_machine = "${azure_instance.foo.id}"
|
|
}`, name, testAccStorageServiceName)
|
|
}
|
|
|
|
func testAccAzureDataDisk_advanced(name string) string {
|
|
return fmt.Sprintf(`
|
|
resource "azure_instance" "foo" {
|
|
name = "%s"
|
|
image = "Ubuntu Server 14.04 LTS"
|
|
size = "Basic_A1"
|
|
storage_service_name = "%s"
|
|
location = "West US"
|
|
username = "terraform"
|
|
password = "Pass!admin123"
|
|
}
|
|
|
|
resource "azure_data_disk" "foo" {
|
|
lun = 1
|
|
size = 10
|
|
caching = "ReadOnly"
|
|
storage_service_name = "${azure_instance.foo.storage_service_name}"
|
|
virtual_machine = "${azure_instance.foo.id}"
|
|
}`, name, testAccStorageServiceName)
|
|
}
|
|
|
|
func testAccAzureDataDisk_update(name string) string {
|
|
return fmt.Sprintf(`
|
|
resource "azure_instance" "foo" {
|
|
name = "%s"
|
|
image = "Ubuntu Server 14.04 LTS"
|
|
size = "Basic_A1"
|
|
storage_service_name = "%s"
|
|
location = "West US"
|
|
username = "terraform"
|
|
password = "Pass!admin123"
|
|
}
|
|
|
|
resource "azure_instance" "bar" {
|
|
name = "terraform-test2"
|
|
image = "Ubuntu Server 14.04 LTS"
|
|
size = "Basic_A1"
|
|
storage_service_name = "${azure_instance.foo.storage_service_name}"
|
|
location = "West US"
|
|
username = "terraform"
|
|
password = "Pass!admin123"
|
|
}
|
|
|
|
resource "azure_data_disk" "foo" {
|
|
lun = 2
|
|
size = 20
|
|
caching = "ReadWrite"
|
|
storage_service_name = "${azure_instance.bar.storage_service_name}"
|
|
virtual_machine = "${azure_instance.bar.id}"
|
|
}`, name, testAccStorageServiceName)
|
|
}
|