136 lines
3.7 KiB
Go
136 lines
3.7 KiB
Go
package rancher
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
rancherClient "github.com/rancher/go-rancher/client"
|
|
)
|
|
|
|
func TestAccRancherRegistryCredential(t *testing.T) {
|
|
var registry rancherClient.RegistryCredential
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckRancherRegistryCredentialDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccRancherRegistryCredentialConfig,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckRancherRegistryCredentialExists("rancher_registry_credential.foo", ®istry),
|
|
resource.TestCheckResourceAttr("rancher_registry_credential.foo", "name", "foo"),
|
|
resource.TestCheckResourceAttr("rancher_registry_credential.foo", "description", "registry credential test"),
|
|
resource.TestCheckResourceAttr("rancher_registry_credential.foo", "public_value", "user"),
|
|
),
|
|
},
|
|
resource.TestStep{
|
|
Config: testAccRancherRegistryCredentialUpdateConfig,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckRancherRegistryCredentialExists("rancher_registry_credential.foo", ®istry),
|
|
resource.TestCheckResourceAttr("rancher_registry_credential.foo", "name", "foo2"),
|
|
resource.TestCheckResourceAttr("rancher_registry_credential.foo", "description", "registry credential test - updated"),
|
|
resource.TestCheckResourceAttr("rancher_registry_credential.foo", "public_value", "user2"),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testAccCheckRancherRegistryCredentialExists(n string, reg *rancherClient.RegistryCredential) 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 App Name is set")
|
|
}
|
|
|
|
client := testAccProvider.Meta().(*Config)
|
|
|
|
foundReg, err := client.RegistryCredential.ById(rs.Primary.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if foundReg.Resource.Id != rs.Primary.ID {
|
|
return fmt.Errorf("Environment not found")
|
|
}
|
|
|
|
*reg = *foundReg
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func testAccCheckRancherRegistryCredentialDestroy(s *terraform.State) error {
|
|
client := testAccProvider.Meta().(*Config)
|
|
|
|
for _, rs := range s.RootModule().Resources {
|
|
if rs.Type != "rancher_registry_credential" {
|
|
continue
|
|
}
|
|
reg, err := client.RegistryCredential.ById(rs.Primary.ID)
|
|
|
|
if err == nil {
|
|
if reg != nil &&
|
|
reg.Resource.Id == rs.Primary.ID &&
|
|
reg.State != "removed" {
|
|
return fmt.Errorf("RegistryCredential still exists")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
return nil
|
|
}
|
|
|
|
const testAccRancherRegistryCredentialConfig = `
|
|
resource "rancher_environment" "foo" {
|
|
name = "foo"
|
|
}
|
|
|
|
resource "rancher_registry" "foo" {
|
|
name = "foo"
|
|
description = "registry test"
|
|
server_address = "http://bar.com:8080"
|
|
environment_id = "${rancher_environment.foo.id}"
|
|
}
|
|
|
|
resource "rancher_registry_credential" "foo" {
|
|
name = "foo"
|
|
description = "registry credential test"
|
|
registry_id = "${rancher_registry.foo.id}"
|
|
email = "registry@credential.com"
|
|
public_value = "user"
|
|
secret_value = "pass"
|
|
}
|
|
`
|
|
|
|
const testAccRancherRegistryCredentialUpdateConfig = `
|
|
resource "rancher_environment" "foo" {
|
|
name = "foo"
|
|
}
|
|
|
|
resource "rancher_registry" "foo" {
|
|
name = "foo"
|
|
description = "registry test"
|
|
server_address = "http://bar.com:8080"
|
|
environment_id = "${rancher_environment.foo.id}"
|
|
}
|
|
|
|
resource "rancher_registry_credential" "foo" {
|
|
name = "foo2"
|
|
description = "registry credential test - updated"
|
|
registry_id = "${rancher_registry.foo.id}"
|
|
email = "registry@credential.com"
|
|
public_value = "user2"
|
|
secret_value = "pass"
|
|
}
|
|
`
|