2016-09-08 21:27:29 +02:00
|
|
|
package bitbucket
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAccBitbucketRepository_basic(t *testing.T) {
|
|
|
|
var repo Repository
|
|
|
|
|
|
|
|
testUser := os.Getenv("BITBUCKET_USERNAME")
|
|
|
|
testAccBitbucketRepositoryConfig := fmt.Sprintf(`
|
|
|
|
resource "bitbucket_repository" "test_repo" {
|
|
|
|
owner = "%s"
|
|
|
|
name = "%s"
|
|
|
|
}
|
|
|
|
`, testUser, testRepo)
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckBitbucketRepositoryDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccBitbucketRepositoryConfig,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckBitbucketRepositoryExists("bitbucket_repository.test_repo", &repo),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccCheckBitbucketRepositoryDestroy(s *terraform.State) error {
|
2016-09-08 21:42:40 +02:00
|
|
|
client := testAccProvider.Meta().(*BitbucketClient)
|
|
|
|
rs, ok := s.RootModule().Resources["bitbucket_repository.test_repo"]
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("Not found %s", "bitbucket_repository.test_repo")
|
|
|
|
}
|
|
|
|
|
|
|
|
response, err := client.Get(fmt.Sprintf("2.0/repositories/%s/%s", rs.Primary.Attributes["owner"], rs.Primary.Attributes["name"]))
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if response.StatusCode != 404 {
|
|
|
|
return fmt.Errorf("Repository still exists")
|
|
|
|
}
|
|
|
|
|
2016-09-08 21:27:29 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccCheckBitbucketRepositoryExists(n string, repository *Repository) 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 repository ID is set")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|