Skip to content

Commit

Permalink
jobs: enable quickstart test (GoogleCloudPlatform#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbpg authored Sep 19, 2018
1 parent a52cc0c commit 72edcb3
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion jobs/v3/quickstart/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,38 @@
package main

import (
"context"
"io/ioutil"
"os"
"strings"
"testing"

"github.com/GoogleCloudPlatform/golang-samples/internal/testutil"
"golang.org/x/oauth2/google"
talent "google.golang.org/api/jobs/v3"
)

func checkServiceAvailable(t *testing.T, projectID string) {
client, err := google.DefaultClient(context.Background(), talent.CloudPlatformScope)
if err != nil {
t.Skipf("DefaultClient: %v", err)
}

service, err := talent.New(client)
if err != nil {
t.Skipf("createCTSService: service account likely in different project: %v", err)
}
if _, err := service.Projects.Companies.List("projects/" + projectID).Do(); err != nil {
t.Skip("List: service account likely in different project")
}
}

func TestMain(t *testing.T) {
t.Skip("Need to set GOOGLE_CLOUD_PROJECT")
tc := testutil.SystemTest(t)
checkServiceAvailable(t, tc.ProjectID)

os.Setenv("GOOGLE_CLOUD_PROJECT", tc.ProjectID)

oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
Expand Down

0 comments on commit 72edcb3

Please sign in to comment.