-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfunc_getintegrationtestsprojectid.go
54 lines (50 loc) · 1.94 KB
/
func_getintegrationtestsprojectid.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the 'License');
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an 'AS IS' BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package itst
import (
"context"
"log"
"os"
"strings"
"golang.org/x/oauth2/google"
"google.golang.org/api/cloudresourcemanager/v1"
"google.golang.org/api/option"
)
//GetIntegrationTestsProjectID check that the current project has a name that contains 'ram-build' and return the project ID
// avoiding that integration tests resource creation, deletion occur in a project that is not dedicated to that puppose.
func GetIntegrationTestsProjectID() (projectID string, creds *google.Credentials) {
// OK to use log.Fatal here as this function will not have integration test itself by design
ctx := context.Background()
creds, err := google.FindDefaultCredentials(ctx, "https://www.googleapis.com/auth/cloud-platform")
if err != nil {
log.Fatalln(err)
}
projectID = os.Getenv("RAM_ITEST_PROJECT_ID")
if projectID == "" {
projectID = creds.ProjectID
}
cloudresourcemanagerService, err := cloudresourcemanager.NewService(ctx, option.WithCredentials(creds))
if err != nil {
log.Fatalln(err)
}
projectService := cloudresourcemanagerService.Projects
project, err := projectService.Get(projectID).Context(ctx).Do()
if err != nil {
log.Fatalf("projectID '%s': %v", projectID, err)
}
if !strings.Contains(project.Name, "ram-build") {
log.Fatalln("The project used to run ram integration test MUST have a name that contains 'ram-build'")
}
return project.ProjectId, creds
}