Skip to content

Commit

Permalink
Magician tgc integration (GoogleCloudPlatform#9907)
Browse files Browse the repository at this point in the history
* Add command for tgc integration tests

* Use magician for TGC integration tests

* Fix variable name

* Remove owner

* Fix go mod tidy command

* Use new github token
  • Loading branch information
trodge authored and balanaguharsha committed Apr 19, 2024
1 parent b25ffe2 commit 8383b40
Show file tree
Hide file tree
Showing 2 changed files with 122 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .ci/gcb-generate-diffs-new.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ steps:

- name: 'gcr.io/graphite-docker-images/go-plus'
id: tgc-test-integration
entrypoint: '/workspace/.ci/scripts/go-plus/tgc-tester-integration/test_tgc_integration.sh'
entrypoint: '/workspace/.ci/scripts/go-plus/magician/exec.sh'
allowFailure: true
secretEnv: ["GITHUB_TOKEN_MAGIC_MODULES"]
waitFor: ["tpgb-head", "tpgb-base", "tgc-head", "tgc-base"]
Expand All @@ -218,12 +218,13 @@ steps:
- TEST_ANCESTRY=$_VALIDATOR_TEST_ANCESTRY
- TEST_ORG_ID=$_VALIDATOR_TEST_ORG
args:
- $_PR_NUMBER
- $COMMIT_SHA
- $BUILD_ID
- $PROJECT_ID
- "18" # Build step
- terraform-google-conversion
- 'test-tgc-integration'
- $_PR_NUMBER
- $COMMIT_SHA
- $BUILD_ID
- $PROJECT_ID
- "18" # Build step
- terraform-google-conversion

- name: 'gcr.io/graphite-docker-images/go-plus'
id: tpgb-test
Expand Down
114 changes: 114 additions & 0 deletions .ci/magician/cmd/test_tgc_integration.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
package cmd

import (
"fmt"
"magician/exec"
"magician/github"
"magician/source"
"os"
"strings"

"github.com/spf13/cobra"
)

var testTGCIntegrationCmd = &cobra.Command{
Use: "test-tgc-integration",
Short: "Run tgc integration tests via workflow dispatch",
Long: `This command runs tgc unit tests via workflow dispatch
The following PR details are expected as environment variables:
1. GOPATH
2. GITHUB_TOKEN_MAGIC_MODULES
`,
Run: func(cmd *cobra.Command, args []string) {
goPath, ok := os.LookupEnv("GOPATH")
if !ok {
fmt.Println("Did not provide GOPATH environment variable")
os.Exit(1)
}

githubToken, ok := lookupGithubTokenOrFallback("GITHUB_TOKEN_MAGIC_MODULES")
if !ok {
fmt.Println("Did not provide GITHUB_TOKEN_MAGIC_MODULES or GITHUB_TOKEN environment variables")
os.Exit(1)
}

rnr, err := exec.NewRunner()
if err != nil {
fmt.Println("Error creating runner: ", err)
os.Exit(1)
}

ctlr := source.NewController(goPath, "modular-magician", githubToken, rnr)

gh := github.NewClient(githubToken)

execTestTGCIntegration(args[0], args[1], args[2], args[3], args[4], args[5], "modular-magician", rnr, ctlr, gh)
},
}

func execTestTGCIntegration(prNumber, mmCommit, buildID, projectID, buildStep, ghRepo, githubUsername string, rnr ExecRunner, ctlr *source.Controller, gh GithubClient) {
newBranch := "auto-pr-" + prNumber
repo := &source.Repo{
Name: ghRepo,
Branch: newBranch,
}
ctlr.SetPath(repo)
if err := ctlr.Clone(repo); err != nil {
fmt.Println("Error cloning repo: ", err)
os.Exit(1)
}
if err := rnr.PushDir(repo.Path); err != nil {
fmt.Println("Error changing to repo dir: ", err)
os.Exit(1)
}
diffs, err := rnr.Run("git", []string{"diff", "--name-only", "HEAD~1"}, nil)
if err != nil {
fmt.Println("Error diffing repo: ", err)
os.Exit(1)
}
hasGoFiles := false
for _, diff := range strings.Split(diffs, "\n") {
if strings.HasSuffix(diff, ".go") {
hasGoFiles = true
break
}
}
if !hasGoFiles {
fmt.Println("Skipping tests: No go files changed")
os.Exit(0)
}

fmt.Println("Running tests: Go files changed")

targetURL := fmt.Sprintf("https://console.cloud.google.com/cloud-build/builds;region=global/%s;step=%s?project=%s", buildID, buildStep, projectID)
if err := gh.PostBuildStatus(prNumber, ghRepo+"-test-integration", "pending", targetURL, mmCommit); err != nil {
fmt.Println("Error posting build status: ", err)
os.Exit(1)
}

if _, err := rnr.Run("go", []string{"mod", "edit", "-replace", fmt.Sprintf("github.com/hashicorp/terraform-provider-google-beta=github.com/%s/terraform-provider-google-beta@%s", githubUsername, newBranch)}, nil); err != nil {
fmt.Println("Error running go mod edit: ", err)
}
if _, err := rnr.Run("go", []string{"mod", "tidy"}, nil); err != nil {
fmt.Println("Error running go mod tidy: ", err)
}

if _, err := rnr.Run("make", []string{"build"}, nil); err != nil {
fmt.Println("Error running make build: ", err)
}
state := "success"
if _, err := rnr.Run("make", []string{"test-integration"}, nil); err != nil {
fmt.Println("Error running make test-integration: ", err)
state = "failure"
}

if err := gh.PostBuildStatus(prNumber, ghRepo+"-test-integration", state, targetURL, mmCommit); err != nil {
fmt.Println("Error posting build status: ", err)
os.Exit(1)
}
}

func init() {
rootCmd.AddCommand(testTGCIntegrationCmd)
}

0 comments on commit 8383b40

Please sign in to comment.