mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-09 07:33:58 -06:00
5ddf83907c
``` === RUN TestProvider --- PASS: TestProvider (0.00s) === RUN TestProvider_impl --- PASS: TestProvider_impl (0.00s) === RUN TestAccGithubIssueLabel_basic --- PASS: TestAccGithubIssueLabel_basic (0.91s) === RUN TestAccGithubIssueLabel_importBasic --- PASS: TestAccGithubIssueLabel_importBasic (0.41s) === RUN TestAccGithubMembership_basic --- PASS: TestAccGithubMembership_basic (0.84s) === RUN TestAccGithubMembership_importBasic --- PASS: TestAccGithubMembership_importBasic (0.53s) === RUN TestAccGithubRepositoryCollaborator_basic --- PASS: TestAccGithubRepositoryCollaborator_basic (0.64s) === RUN TestAccGithubRepositoryCollaborator_importBasic --- PASS: TestAccGithubRepositoryCollaborator_importBasic (0.74s) === RUN TestAccGithubRepository_basic --- PASS: TestAccGithubRepository_basic (1.54s) === RUN TestAccGithubRepository_importBasic --- PASS: TestAccGithubRepository_importBasic (0.77s) === RUN TestAccGithubTeamMembership_basic --- PASS: TestAccGithubTeamMembership_basic (1.59s) === RUN TestAccGithubTeamMembership_importBasic --- PASS: TestAccGithubTeamMembership_importBasic (0.95s) === RUN TestAccGithubTeamRepository_basic --- PASS: TestAccGithubTeamRepository_basic (1.45s) === RUN TestAccGithubTeamRepository_importBasic --- PASS: TestAccGithubTeamRepository_importBasic (0.75s) === RUN TestAccCheckGetPermissions --- PASS: TestAccCheckGetPermissions (0.00s) === RUN TestAccGithubTeam_basic --- PASS: TestAccGithubTeam_basic (0.79s) === RUN TestAccGithubTeam_importBasic --- PASS: TestAccGithubTeam_importBasic (0.54s) === RUN TestAccGithubUtilRole_validation --- PASS: TestAccGithubUtilRole_validation (0.00s) === RUN TestAccGithubUtilTwoPartID --- PASS: TestAccGithubUtilTwoPartID (0.00s) PASS ok github.com/hashicorp/terraform/builtin/providers/github 12.455s ```
129 lines
3.1 KiB
Go
129 lines
3.1 KiB
Go
package github
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/google/go-github/github"
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
func TestAccGithubTeam_basic(t *testing.T) {
|
|
var team github.Team
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckGithubTeamDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccGithubTeamConfig,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckGithubTeamExists("github_team.foo", &team),
|
|
testAccCheckGithubTeamAttributes(&team, "foo", "Terraform acc test group"),
|
|
),
|
|
},
|
|
resource.TestStep{
|
|
Config: testAccGithubTeamUpdateConfig,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckGithubTeamExists("github_team.foo", &team),
|
|
testAccCheckGithubTeamAttributes(&team, "foo2", "Terraform acc test group - updated"),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestAccGithubTeam_importBasic(t *testing.T) {
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckGithubTeamDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccGithubTeamConfig,
|
|
},
|
|
resource.TestStep{
|
|
ResourceName: "github_team.foo",
|
|
ImportState: true,
|
|
ImportStateVerify: true,
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testAccCheckGithubTeamExists(n string, team *github.Team) 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 Team ID is set")
|
|
}
|
|
|
|
conn := testAccProvider.Meta().(*Organization).client
|
|
githubTeam, _, err := conn.Organizations.GetTeam(toGithubID(rs.Primary.ID))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
*team = *githubTeam
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func testAccCheckGithubTeamAttributes(team *github.Team, name, description string) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
if *team.Name != name {
|
|
return fmt.Errorf("Team name does not match: %s, %s", *team.Name, name)
|
|
}
|
|
|
|
if *team.Description != description {
|
|
return fmt.Errorf("Team description does not match: %s, %s", *team.Description, description)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func testAccCheckGithubTeamDestroy(s *terraform.State) error {
|
|
conn := testAccProvider.Meta().(*Organization).client
|
|
|
|
for _, rs := range s.RootModule().Resources {
|
|
if rs.Type != "github_team" {
|
|
continue
|
|
}
|
|
|
|
team, resp, err := conn.Organizations.GetTeam(toGithubID(rs.Primary.ID))
|
|
if err == nil {
|
|
if team != nil &&
|
|
fromGithubID(team.ID) == rs.Primary.ID {
|
|
return fmt.Errorf("Team still exists")
|
|
}
|
|
}
|
|
if resp.StatusCode != 404 {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
return nil
|
|
}
|
|
|
|
const testAccGithubTeamConfig = `
|
|
resource "github_team" "foo" {
|
|
name = "foo"
|
|
description = "Terraform acc test group"
|
|
privacy = "secret"
|
|
}
|
|
`
|
|
|
|
const testAccGithubTeamUpdateConfig = `
|
|
resource "github_team" "foo" {
|
|
name = "foo2"
|
|
description = "Terraform acc test group - updated"
|
|
privacy = "closed"
|
|
}
|
|
`
|