2016-07-21 21:57:49 +02:00
|
|
|
package packet
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-08-10 20:37:17 +02:00
|
|
|
"os"
|
2016-07-21 21:57:49 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
"github.com/packethost/packngo"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAccPacketVolume_Basic(t *testing.T) {
|
|
|
|
var volume packngo.Volume
|
|
|
|
|
2016-08-10 20:37:17 +02:00
|
|
|
project_id := os.Getenv("PACKET_PROJECT_ID")
|
|
|
|
facility := os.Getenv("PACKET_FACILITY")
|
|
|
|
|
2016-07-21 21:57:49 +02:00
|
|
|
resource.Test(t, resource.TestCase{
|
2016-08-10 20:37:17 +02:00
|
|
|
PreCheck: testAccPacketVolumePreCheck(t),
|
2016-07-21 21:57:49 +02:00
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckPacketVolumeDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
2016-08-10 20:37:17 +02:00
|
|
|
Config: fmt.Sprintf(testAccCheckPacketVolumeConfig_basic, project_id, facility),
|
2016-07-21 21:57:49 +02:00
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckPacketVolumeExists("packet_volume.foobar", &volume),
|
2016-07-25 15:41:50 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2016-08-10 20:37:17 +02:00
|
|
|
"packet_volume.foobar", "project_id", project_id),
|
2016-07-25 15:41:50 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2016-08-10 20:37:17 +02:00
|
|
|
"packet_volume.foobar", "plan", "storage_1"),
|
2016-07-25 15:41:50 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"packet_volume.foobar", "billing_cycle", "hourly"),
|
2016-08-10 20:37:17 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"packet_volume.foobar", "size", "100"),
|
2016-07-21 21:57:49 +02:00
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccCheckPacketVolumeDestroy(s *terraform.State) error {
|
|
|
|
client := testAccProvider.Meta().(*packngo.Client)
|
|
|
|
|
|
|
|
for _, rs := range s.RootModule().Resources {
|
|
|
|
if rs.Type != "packet_volume" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if _, _, err := client.Volumes.Get(rs.Primary.ID); err == nil {
|
2016-08-10 20:37:17 +02:00
|
|
|
return fmt.Errorf("Volume still exists")
|
2016-07-21 21:57:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccCheckPacketVolumeExists(n string, volume *packngo.Volume) 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 Record ID is set")
|
|
|
|
}
|
|
|
|
|
|
|
|
client := testAccProvider.Meta().(*packngo.Client)
|
|
|
|
|
|
|
|
foundVolume, _, err := client.Volumes.Get(rs.Primary.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if foundVolume.ID != rs.Primary.ID {
|
|
|
|
return fmt.Errorf("Record not found: %v - %v", rs.Primary.ID, foundVolume)
|
|
|
|
}
|
|
|
|
|
|
|
|
*volume = *foundVolume
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-10 20:37:17 +02:00
|
|
|
func testAccPacketVolumePreCheck(t *testing.T) func() {
|
|
|
|
return func() {
|
|
|
|
testAccPreCheck(t)
|
|
|
|
if os.Getenv("PACKET_PROJECT_ID") == "" {
|
|
|
|
t.Fatal("PACKET_PROJECT_ID must be set")
|
|
|
|
}
|
|
|
|
if os.Getenv("PACKET_FACILITY") == "" {
|
|
|
|
t.Fatal("PACKET_FACILITY must be set")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const testAccCheckPacketVolumeConfig_basic = `
|
2016-07-21 21:57:49 +02:00
|
|
|
resource "packet_volume" "foobar" {
|
2016-08-10 20:37:17 +02:00
|
|
|
plan = "storage_1"
|
2016-07-25 15:41:50 +02:00
|
|
|
billing_cycle = "hourly"
|
2016-08-10 20:37:17 +02:00
|
|
|
size = 100
|
|
|
|
project_id = "%s"
|
|
|
|
facility = "%s"
|
|
|
|
}`
|