github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/builtin/providers/oneandone/resources_oneandone_shared_storage_test.go (about)

     1  package oneandone
     2  
     3  import (
     4  	"fmt"
     5  	"testing"
     6  
     7  	"github.com/1and1/oneandone-cloudserver-sdk-go"
     8  	"github.com/hashicorp/terraform/helper/resource"
     9  	"github.com/hashicorp/terraform/terraform"
    10  	"os"
    11  	"time"
    12  )
    13  
    14  func TestAccOneandoneSharedStorage_Basic(t *testing.T) {
    15  	var storage oneandone.SharedStorage
    16  
    17  	name := "test_storage"
    18  	name_updated := "test1"
    19  
    20  	resource.Test(t, resource.TestCase{
    21  		PreCheck: func() {
    22  			testAccPreCheck(t)
    23  		},
    24  		Providers:    testAccProviders,
    25  		CheckDestroy: testAccCheckDOneandoneSharedStorageDestroyCheck,
    26  		Steps: []resource.TestStep{
    27  			resource.TestStep{
    28  				Config: fmt.Sprintf(testAccCheckOneandoneSharedStorage_basic, name),
    29  				Check: resource.ComposeTestCheckFunc(
    30  					func(*terraform.State) error {
    31  						time.Sleep(10 * time.Second)
    32  						return nil
    33  					},
    34  					testAccCheckOneandoneSharedStorageExists("oneandone_shared_storage.storage", &storage),
    35  					testAccCheckOneandoneSharedStorageAttributes("oneandone_shared_storage.storage", name),
    36  					resource.TestCheckResourceAttr("oneandone_shared_storage.storage", "name", name),
    37  				),
    38  			},
    39  			resource.TestStep{
    40  				Config: fmt.Sprintf(testAccCheckOneandoneSharedStorage_basic, name_updated),
    41  				Check: resource.ComposeTestCheckFunc(
    42  					func(*terraform.State) error {
    43  						time.Sleep(10 * time.Second)
    44  						return nil
    45  					},
    46  					testAccCheckOneandoneSharedStorageExists("oneandone_shared_storage.storage", &storage),
    47  					testAccCheckOneandoneSharedStorageAttributes("oneandone_shared_storage.storage", name_updated),
    48  					resource.TestCheckResourceAttr("oneandone_shared_storage.storage", "name", name_updated),
    49  				),
    50  			},
    51  		},
    52  	})
    53  }
    54  
    55  func testAccCheckDOneandoneSharedStorageDestroyCheck(s *terraform.State) error {
    56  	for _, rs := range s.RootModule().Resources {
    57  		if rs.Type != "oneandone_shared_storage" {
    58  			continue
    59  		}
    60  
    61  		api := oneandone.New(os.Getenv("ONEANDONE_TOKEN"), oneandone.BaseUrl)
    62  
    63  		_, err := api.GetVPN(rs.Primary.ID)
    64  
    65  		if err == nil {
    66  			return fmt.Errorf("VPN still exists %s %s", rs.Primary.ID, err.Error())
    67  		}
    68  	}
    69  
    70  	return nil
    71  }
    72  func testAccCheckOneandoneSharedStorageAttributes(n string, reverse_dns string) resource.TestCheckFunc {
    73  	return func(s *terraform.State) error {
    74  		rs, ok := s.RootModule().Resources[n]
    75  		if !ok {
    76  			return fmt.Errorf("Not found: %s", n)
    77  		}
    78  		if rs.Primary.Attributes["name"] != reverse_dns {
    79  			return fmt.Errorf("Bad name: expected %s : found %s ", reverse_dns, rs.Primary.Attributes["name"])
    80  		}
    81  
    82  		return nil
    83  	}
    84  }
    85  
    86  func testAccCheckOneandoneSharedStorageExists(n string, storage *oneandone.SharedStorage) resource.TestCheckFunc {
    87  	return func(s *terraform.State) error {
    88  		rs, ok := s.RootModule().Resources[n]
    89  
    90  		if !ok {
    91  			return fmt.Errorf("Not found: %s", n)
    92  		}
    93  
    94  		if rs.Primary.ID == "" {
    95  			return fmt.Errorf("No Record ID is set")
    96  		}
    97  
    98  		api := oneandone.New(os.Getenv("ONEANDONE_TOKEN"), oneandone.BaseUrl)
    99  
   100  		found_storage, err := api.GetSharedStorage(rs.Primary.ID)
   101  
   102  		if err != nil {
   103  			return fmt.Errorf("Error occured while fetching SharedStorage: %s", rs.Primary.ID)
   104  		}
   105  		if found_storage.Id != rs.Primary.ID {
   106  			return fmt.Errorf("Record not found")
   107  		}
   108  		storage = found_storage
   109  
   110  		return nil
   111  	}
   112  }
   113  
   114  const testAccCheckOneandoneSharedStorage_basic = `
   115  resource "oneandone_shared_storage" "storage" {
   116  	name = "%s"
   117  	description = "ttt"
   118  	size = 50
   119  	datacenter = "GB"
   120  }`