Merge pull request #4502 from hashicorp/phinze/do-acctest-fixes
provider/digitalocean: acctest improvements
This commit is contained in:
commit
6aadf1489c
|
@ -293,43 +293,67 @@ func testAccCheckDigitalOceanDropletRecreated(t *testing.T,
|
||||||
//
|
//
|
||||||
//}
|
//}
|
||||||
|
|
||||||
const testAccCheckDigitalOceanDropletConfig_basic = `
|
var testAccCheckDigitalOceanDropletConfig_basic = fmt.Sprintf(`
|
||||||
resource "digitalocean_droplet" "foobar" {
|
resource "digitalocean_ssh_key" "foobar" {
|
||||||
name = "foo"
|
name = "foobar"
|
||||||
size = "512mb"
|
public_key = "%s"
|
||||||
image = "centos-5-8-x32"
|
|
||||||
region = "nyc3"
|
|
||||||
user_data = "foobar"
|
|
||||||
}
|
}
|
||||||
`
|
|
||||||
|
|
||||||
const testAccCheckDigitalOceanDropletConfig_userdata_update = `
|
|
||||||
resource "digitalocean_droplet" "foobar" {
|
resource "digitalocean_droplet" "foobar" {
|
||||||
name = "foo"
|
name = "foo"
|
||||||
size = "512mb"
|
size = "512mb"
|
||||||
image = "centos-5-8-x32"
|
image = "centos-5-8-x32"
|
||||||
region = "nyc3"
|
region = "nyc3"
|
||||||
user_data = "foobar foobar"
|
user_data = "foobar"
|
||||||
|
ssh_keys = ["${digitalocean_ssh_key.foobar.id}"]
|
||||||
}
|
}
|
||||||
`
|
`, testAccValidPublicKey)
|
||||||
|
|
||||||
const testAccCheckDigitalOceanDropletConfig_RenameAndResize = `
|
var testAccCheckDigitalOceanDropletConfig_userdata_update = fmt.Sprintf(`
|
||||||
resource "digitalocean_droplet" "foobar" {
|
resource "digitalocean_ssh_key" "foobar" {
|
||||||
name = "baz"
|
name = "foobar"
|
||||||
size = "1gb"
|
public_key = "%s"
|
||||||
image = "centos-5-8-x32"
|
|
||||||
region = "nyc3"
|
|
||||||
}
|
}
|
||||||
`
|
|
||||||
|
resource "digitalocean_droplet" "foobar" {
|
||||||
|
name = "foo"
|
||||||
|
size = "512mb"
|
||||||
|
image = "centos-5-8-x32"
|
||||||
|
region = "nyc3"
|
||||||
|
user_data = "foobar foobar"
|
||||||
|
ssh_keys = ["${digitalocean_ssh_key.foobar.id}"]
|
||||||
|
}
|
||||||
|
`, testAccValidPublicKey)
|
||||||
|
|
||||||
|
var testAccCheckDigitalOceanDropletConfig_RenameAndResize = fmt.Sprintf(`
|
||||||
|
resource "digitalocean_ssh_key" "foobar" {
|
||||||
|
name = "foobar"
|
||||||
|
public_key = "%s"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "digitalocean_droplet" "foobar" {
|
||||||
|
name = "baz"
|
||||||
|
size = "1gb"
|
||||||
|
image = "centos-5-8-x32"
|
||||||
|
region = "nyc3"
|
||||||
|
ssh_keys = ["${digitalocean_ssh_key.foobar.id}"]
|
||||||
|
}
|
||||||
|
`, testAccValidPublicKey)
|
||||||
|
|
||||||
// IPV6 only in singapore
|
// IPV6 only in singapore
|
||||||
const testAccCheckDigitalOceanDropletConfig_PrivateNetworkingIpv6 = `
|
var testAccCheckDigitalOceanDropletConfig_PrivateNetworkingIpv6 = fmt.Sprintf(`
|
||||||
resource "digitalocean_droplet" "foobar" {
|
resource "digitalocean_ssh_key" "foobar" {
|
||||||
name = "baz"
|
name = "foobar"
|
||||||
size = "1gb"
|
public_key = "%s"
|
||||||
image = "centos-5-8-x32"
|
|
||||||
region = "sgp1"
|
|
||||||
ipv6 = true
|
|
||||||
private_networking = true
|
|
||||||
}
|
}
|
||||||
`
|
|
||||||
|
resource "digitalocean_droplet" "foobar" {
|
||||||
|
name = "baz"
|
||||||
|
size = "1gb"
|
||||||
|
image = "centos-5-8-x32"
|
||||||
|
region = "sgp1"
|
||||||
|
ipv6 = true
|
||||||
|
private_networking = true
|
||||||
|
ssh_keys = ["${digitalocean_ssh_key.foobar.id}"]
|
||||||
|
}
|
||||||
|
`, testAccValidPublicKey)
|
||||||
|
|
|
@ -101,21 +101,26 @@ func testAccCheckDigitalOceanFloatingIPExists(n string, floatingIP *godo.Floatin
|
||||||
|
|
||||||
var testAccCheckDigitalOceanFloatingIPConfig_region = `
|
var testAccCheckDigitalOceanFloatingIPConfig_region = `
|
||||||
resource "digitalocean_floating_ip" "foobar" {
|
resource "digitalocean_floating_ip" "foobar" {
|
||||||
region = "nyc3"
|
region = "nyc3"
|
||||||
}`
|
}`
|
||||||
|
|
||||||
var testAccCheckDigitalOceanFloatingIPConfig_droplet = `
|
var testAccCheckDigitalOceanFloatingIPConfig_droplet = fmt.Sprintf(`
|
||||||
|
resource "digitalocean_ssh_key" "foobar" {
|
||||||
|
name = "foobar"
|
||||||
|
public_key = "%s"
|
||||||
|
}
|
||||||
|
|
||||||
resource "digitalocean_droplet" "foobar" {
|
resource "digitalocean_droplet" "foobar" {
|
||||||
name = "baz"
|
name = "baz"
|
||||||
size = "1gb"
|
size = "1gb"
|
||||||
image = "centos-5-8-x32"
|
image = "centos-5-8-x32"
|
||||||
region = "sgp1"
|
region = "sgp1"
|
||||||
ipv6 = true
|
ipv6 = true
|
||||||
private_networking = true
|
private_networking = true
|
||||||
|
ssh_keys = ["${digitalocean_ssh_key.foobar.id}"]
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "digitalocean_floating_ip" "foobar" {
|
resource "digitalocean_floating_ip" "foobar" {
|
||||||
droplet_id = "${digitalocean_droplet.foobar.id}"
|
droplet_id = "${digitalocean_droplet.foobar.id}"
|
||||||
region = "${digitalocean_droplet.foobar.region}"
|
region = "${digitalocean_droplet.foobar.region}"
|
||||||
}`
|
}`, testAccValidPublicKey)
|
||||||
|
|
|
@ -6,12 +6,14 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/digitalocean/godo"
|
"github.com/digitalocean/godo"
|
||||||
|
"github.com/hashicorp/terraform/helper/acctest"
|
||||||
"github.com/hashicorp/terraform/helper/resource"
|
"github.com/hashicorp/terraform/helper/resource"
|
||||||
"github.com/hashicorp/terraform/terraform"
|
"github.com/hashicorp/terraform/terraform"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestAccDigitalOceanRecord_Basic(t *testing.T) {
|
func TestAccDigitalOceanRecord_Basic(t *testing.T) {
|
||||||
var record godo.DomainRecord
|
var record godo.DomainRecord
|
||||||
|
domain := fmt.Sprintf("foobar-test-terraform-%s.com", acctest.RandString(10))
|
||||||
|
|
||||||
resource.Test(t, resource.TestCase{
|
resource.Test(t, resource.TestCase{
|
||||||
PreCheck: func() { testAccPreCheck(t) },
|
PreCheck: func() { testAccPreCheck(t) },
|
||||||
|
@ -19,14 +21,14 @@ func TestAccDigitalOceanRecord_Basic(t *testing.T) {
|
||||||
CheckDestroy: testAccCheckDigitalOceanRecordDestroy,
|
CheckDestroy: testAccCheckDigitalOceanRecordDestroy,
|
||||||
Steps: []resource.TestStep{
|
Steps: []resource.TestStep{
|
||||||
resource.TestStep{
|
resource.TestStep{
|
||||||
Config: testAccCheckDigitalOceanRecordConfig_basic,
|
Config: fmt.Sprintf(testAccCheckDigitalOceanRecordConfig_basic, domain),
|
||||||
Check: resource.ComposeTestCheckFunc(
|
Check: resource.ComposeTestCheckFunc(
|
||||||
testAccCheckDigitalOceanRecordExists("digitalocean_record.foobar", &record),
|
testAccCheckDigitalOceanRecordExists("digitalocean_record.foobar", &record),
|
||||||
testAccCheckDigitalOceanRecordAttributes(&record),
|
testAccCheckDigitalOceanRecordAttributes(&record),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "name", "terraform"),
|
"digitalocean_record.foobar", "name", "terraform"),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "domain", "foobar-test-terraform.com"),
|
"digitalocean_record.foobar", "domain", domain),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "value", "192.168.0.10"),
|
"digitalocean_record.foobar", "value", "192.168.0.10"),
|
||||||
),
|
),
|
||||||
|
@ -37,6 +39,7 @@ func TestAccDigitalOceanRecord_Basic(t *testing.T) {
|
||||||
|
|
||||||
func TestAccDigitalOceanRecord_Updated(t *testing.T) {
|
func TestAccDigitalOceanRecord_Updated(t *testing.T) {
|
||||||
var record godo.DomainRecord
|
var record godo.DomainRecord
|
||||||
|
domain := fmt.Sprintf("foobar-test-terraform-%s.com", acctest.RandString(10))
|
||||||
|
|
||||||
resource.Test(t, resource.TestCase{
|
resource.Test(t, resource.TestCase{
|
||||||
PreCheck: func() { testAccPreCheck(t) },
|
PreCheck: func() { testAccPreCheck(t) },
|
||||||
|
@ -44,14 +47,14 @@ func TestAccDigitalOceanRecord_Updated(t *testing.T) {
|
||||||
CheckDestroy: testAccCheckDigitalOceanRecordDestroy,
|
CheckDestroy: testAccCheckDigitalOceanRecordDestroy,
|
||||||
Steps: []resource.TestStep{
|
Steps: []resource.TestStep{
|
||||||
resource.TestStep{
|
resource.TestStep{
|
||||||
Config: testAccCheckDigitalOceanRecordConfig_basic,
|
Config: fmt.Sprintf(testAccCheckDigitalOceanRecordConfig_basic, domain),
|
||||||
Check: resource.ComposeTestCheckFunc(
|
Check: resource.ComposeTestCheckFunc(
|
||||||
testAccCheckDigitalOceanRecordExists("digitalocean_record.foobar", &record),
|
testAccCheckDigitalOceanRecordExists("digitalocean_record.foobar", &record),
|
||||||
testAccCheckDigitalOceanRecordAttributes(&record),
|
testAccCheckDigitalOceanRecordAttributes(&record),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "name", "terraform"),
|
"digitalocean_record.foobar", "name", "terraform"),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "domain", "foobar-test-terraform.com"),
|
"digitalocean_record.foobar", "domain", domain),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "value", "192.168.0.10"),
|
"digitalocean_record.foobar", "value", "192.168.0.10"),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
|
@ -59,14 +62,15 @@ func TestAccDigitalOceanRecord_Updated(t *testing.T) {
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
resource.TestStep{
|
resource.TestStep{
|
||||||
Config: testAccCheckDigitalOceanRecordConfig_new_value,
|
Config: fmt.Sprintf(
|
||||||
|
testAccCheckDigitalOceanRecordConfig_new_value, domain),
|
||||||
Check: resource.ComposeTestCheckFunc(
|
Check: resource.ComposeTestCheckFunc(
|
||||||
testAccCheckDigitalOceanRecordExists("digitalocean_record.foobar", &record),
|
testAccCheckDigitalOceanRecordExists("digitalocean_record.foobar", &record),
|
||||||
testAccCheckDigitalOceanRecordAttributesUpdated(&record),
|
testAccCheckDigitalOceanRecordAttributesUpdated(&record),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "name", "terraform"),
|
"digitalocean_record.foobar", "name", "terraform"),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "domain", "foobar-test-terraform.com"),
|
"digitalocean_record.foobar", "domain", domain),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "value", "192.168.0.11"),
|
"digitalocean_record.foobar", "value", "192.168.0.11"),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
|
@ -79,6 +83,7 @@ func TestAccDigitalOceanRecord_Updated(t *testing.T) {
|
||||||
|
|
||||||
func TestAccDigitalOceanRecord_HostnameValue(t *testing.T) {
|
func TestAccDigitalOceanRecord_HostnameValue(t *testing.T) {
|
||||||
var record godo.DomainRecord
|
var record godo.DomainRecord
|
||||||
|
domain := fmt.Sprintf("foobar-test-terraform-%s.com", acctest.RandString(10))
|
||||||
|
|
||||||
resource.Test(t, resource.TestCase{
|
resource.Test(t, resource.TestCase{
|
||||||
PreCheck: func() { testAccPreCheck(t) },
|
PreCheck: func() { testAccPreCheck(t) },
|
||||||
|
@ -86,14 +91,15 @@ func TestAccDigitalOceanRecord_HostnameValue(t *testing.T) {
|
||||||
CheckDestroy: testAccCheckDigitalOceanRecordDestroy,
|
CheckDestroy: testAccCheckDigitalOceanRecordDestroy,
|
||||||
Steps: []resource.TestStep{
|
Steps: []resource.TestStep{
|
||||||
resource.TestStep{
|
resource.TestStep{
|
||||||
Config: testAccCheckDigitalOceanRecordConfig_cname,
|
Config: fmt.Sprintf(
|
||||||
|
testAccCheckDigitalOceanRecordConfig_cname, domain),
|
||||||
Check: resource.ComposeTestCheckFunc(
|
Check: resource.ComposeTestCheckFunc(
|
||||||
testAccCheckDigitalOceanRecordExists("digitalocean_record.foobar", &record),
|
testAccCheckDigitalOceanRecordExists("digitalocean_record.foobar", &record),
|
||||||
testAccCheckDigitalOceanRecordAttributesHostname("a", &record),
|
testAccCheckDigitalOceanRecordAttributesHostname("a.foobar-test-terraform.com", &record),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "name", "terraform"),
|
"digitalocean_record.foobar", "name", "terraform"),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "domain", "foobar-test-terraform.com"),
|
"digitalocean_record.foobar", "domain", domain),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "value", "a.foobar-test-terraform.com."),
|
"digitalocean_record.foobar", "value", "a.foobar-test-terraform.com."),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
|
@ -106,6 +112,7 @@ func TestAccDigitalOceanRecord_HostnameValue(t *testing.T) {
|
||||||
|
|
||||||
func TestAccDigitalOceanRecord_ExternalHostnameValue(t *testing.T) {
|
func TestAccDigitalOceanRecord_ExternalHostnameValue(t *testing.T) {
|
||||||
var record godo.DomainRecord
|
var record godo.DomainRecord
|
||||||
|
domain := fmt.Sprintf("foobar-test-terraform-%s.com", acctest.RandString(10))
|
||||||
|
|
||||||
resource.Test(t, resource.TestCase{
|
resource.Test(t, resource.TestCase{
|
||||||
PreCheck: func() { testAccPreCheck(t) },
|
PreCheck: func() { testAccPreCheck(t) },
|
||||||
|
@ -113,14 +120,15 @@ func TestAccDigitalOceanRecord_ExternalHostnameValue(t *testing.T) {
|
||||||
CheckDestroy: testAccCheckDigitalOceanRecordDestroy,
|
CheckDestroy: testAccCheckDigitalOceanRecordDestroy,
|
||||||
Steps: []resource.TestStep{
|
Steps: []resource.TestStep{
|
||||||
resource.TestStep{
|
resource.TestStep{
|
||||||
Config: testAccCheckDigitalOceanRecordConfig_external_cname,
|
Config: fmt.Sprintf(
|
||||||
|
testAccCheckDigitalOceanRecordConfig_external_cname, domain),
|
||||||
Check: resource.ComposeTestCheckFunc(
|
Check: resource.ComposeTestCheckFunc(
|
||||||
testAccCheckDigitalOceanRecordExists("digitalocean_record.foobar", &record),
|
testAccCheckDigitalOceanRecordExists("digitalocean_record.foobar", &record),
|
||||||
testAccCheckDigitalOceanRecordAttributesHostname("a.foobar-test-terraform.net", &record),
|
testAccCheckDigitalOceanRecordAttributesHostname("a.foobar-test-terraform.net", &record),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "name", "terraform"),
|
"digitalocean_record.foobar", "name", "terraform"),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "domain", "foobar-test-terraform.com"),
|
"digitalocean_record.foobar", "domain", domain),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"digitalocean_record.foobar", "value", "a.foobar-test-terraform.net."),
|
"digitalocean_record.foobar", "value", "a.foobar-test-terraform.net."),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
|
@ -225,70 +233,56 @@ func testAccCheckDigitalOceanRecordAttributesHostname(data string, record *godo.
|
||||||
|
|
||||||
const testAccCheckDigitalOceanRecordConfig_basic = `
|
const testAccCheckDigitalOceanRecordConfig_basic = `
|
||||||
resource "digitalocean_domain" "foobar" {
|
resource "digitalocean_domain" "foobar" {
|
||||||
name = "foobar-test-terraform.com"
|
name = "%s"
|
||||||
ip_address = "192.168.0.10"
|
ip_address = "192.168.0.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "digitalocean_record" "foobar" {
|
resource "digitalocean_record" "foobar" {
|
||||||
domain = "${digitalocean_domain.foobar.name}"
|
domain = "${digitalocean_domain.foobar.name}"
|
||||||
|
|
||||||
name = "terraform"
|
name = "terraform"
|
||||||
value = "192.168.0.10"
|
value = "192.168.0.10"
|
||||||
type = "A"
|
type = "A"
|
||||||
}`
|
}`
|
||||||
|
|
||||||
const testAccCheckDigitalOceanRecordConfig_new_value = `
|
const testAccCheckDigitalOceanRecordConfig_new_value = `
|
||||||
resource "digitalocean_domain" "foobar" {
|
resource "digitalocean_domain" "foobar" {
|
||||||
name = "foobar-test-terraform.com"
|
name = "%s"
|
||||||
ip_address = "192.168.0.10"
|
ip_address = "192.168.0.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "digitalocean_record" "foobar" {
|
resource "digitalocean_record" "foobar" {
|
||||||
domain = "${digitalocean_domain.foobar.name}"
|
domain = "${digitalocean_domain.foobar.name}"
|
||||||
|
|
||||||
name = "terraform"
|
name = "terraform"
|
||||||
value = "192.168.0.11"
|
value = "192.168.0.11"
|
||||||
type = "A"
|
type = "A"
|
||||||
}`
|
}`
|
||||||
|
|
||||||
const testAccCheckDigitalOceanRecordConfig_cname = `
|
const testAccCheckDigitalOceanRecordConfig_cname = `
|
||||||
resource "digitalocean_domain" "foobar" {
|
resource "digitalocean_domain" "foobar" {
|
||||||
name = "foobar-test-terraform.com"
|
name = "%s"
|
||||||
ip_address = "192.168.0.10"
|
ip_address = "192.168.0.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "digitalocean_record" "foobar" {
|
resource "digitalocean_record" "foobar" {
|
||||||
domain = "${digitalocean_domain.foobar.name}"
|
domain = "${digitalocean_domain.foobar.name}"
|
||||||
|
|
||||||
name = "terraform"
|
name = "terraform"
|
||||||
value = "a.foobar-test-terraform.com."
|
value = "a.foobar-test-terraform.com."
|
||||||
type = "CNAME"
|
type = "CNAME"
|
||||||
}`
|
|
||||||
|
|
||||||
const testAccCheckDigitalOceanRecordConfig_relative_cname = `
|
|
||||||
resource "digitalocean_domain" "foobar" {
|
|
||||||
name = "foobar-test-terraform.com"
|
|
||||||
ip_address = "192.168.0.10"
|
|
||||||
}
|
|
||||||
|
|
||||||
resource "digitalocean_record" "foobar" {
|
|
||||||
domain = "${digitalocean_domain.foobar.name}"
|
|
||||||
|
|
||||||
name = "terraform"
|
|
||||||
value = "a.b"
|
|
||||||
type = "CNAME"
|
|
||||||
}`
|
}`
|
||||||
|
|
||||||
const testAccCheckDigitalOceanRecordConfig_external_cname = `
|
const testAccCheckDigitalOceanRecordConfig_external_cname = `
|
||||||
resource "digitalocean_domain" "foobar" {
|
resource "digitalocean_domain" "foobar" {
|
||||||
name = "foobar-test-terraform.com"
|
name = "%s"
|
||||||
ip_address = "192.168.0.10"
|
ip_address = "192.168.0.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "digitalocean_record" "foobar" {
|
resource "digitalocean_record" "foobar" {
|
||||||
domain = "${digitalocean_domain.foobar.name}"
|
domain = "${digitalocean_domain.foobar.name}"
|
||||||
|
|
||||||
name = "terraform"
|
name = "terraform"
|
||||||
value = "a.foobar-test-terraform.net."
|
value = "a.foobar-test-terraform.net."
|
||||||
type = "CNAME"
|
type = "CNAME"
|
||||||
}`
|
}`
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
// Package acctest contains for Terraform Acceptance Tests
|
||||||
|
package acctest
|
|
@ -0,0 +1,35 @@
|
||||||
|
package acctest
|
||||||
|
|
||||||
|
import (
|
||||||
|
"math/rand"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Helpers for generating random tidbits for use in identifiers to prevent
|
||||||
|
// collisions in acceptance tests.
|
||||||
|
|
||||||
|
// RandString generates a random alphanumeric string of the length specified
|
||||||
|
func RandString(strlen int) string {
|
||||||
|
return RandStringFromCharSet(strlen, CharSetAlphaNum)
|
||||||
|
}
|
||||||
|
|
||||||
|
// RandStringFromCharSet generates a random string by selecting characters from
|
||||||
|
// the charset provided
|
||||||
|
func RandStringFromCharSet(strlen int, charSet string) string {
|
||||||
|
rand.Seed(time.Now().UTC().UnixNano())
|
||||||
|
result := make([]byte, strlen)
|
||||||
|
for i := 0; i < strlen; i++ {
|
||||||
|
result[i] = charSet[rand.Intn(len(charSet))]
|
||||||
|
}
|
||||||
|
return string(result)
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
// CharSetAlphaNum is the alphanumeric character set for use with
|
||||||
|
// RandStringFromCharSet
|
||||||
|
CharSetAlphaNum = "abcdefghijklmnopqrstuvwxyz012346789"
|
||||||
|
|
||||||
|
// CharSetAlpha is the alphabetical character set for use with
|
||||||
|
// RandStringFromCharSet
|
||||||
|
CharSetAlpha = "abcdefghijklmnopqrstuvwxyz"
|
||||||
|
)
|
Loading…
Reference in New Issue