This repository has been archived by the owner on Jul 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from GoogleCloudPlatform/develop
some new dependencies and async integration test framework
- Loading branch information
Showing
590 changed files
with
172,104 additions
and
62,353 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
// Copyright the Service Broker Project Authors. | ||
// | ||
// 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 integration_tests | ||
|
||
import ( | ||
"code.cloudfoundry.org/lager" | ||
"fmt" | ||
"gcp-service-broker/brokerapi/brokers" | ||
. "gcp-service-broker/brokerapi/brokers" | ||
"gcp-service-broker/brokerapi/brokers/models" | ||
"gcp-service-broker/brokerapi/brokers/name_generator" | ||
"gcp-service-broker/db_service" | ||
"gcp-service-broker/fakes" | ||
"github.com/jinzhu/gorm" | ||
. "github.com/onsi/ginkgo" | ||
. "github.com/onsi/gomega" | ||
googlecloudsql "google.golang.org/api/sqladmin/v1beta4" | ||
"os" | ||
"time" | ||
) | ||
|
||
func pollForMaxFiveMins(gcpb *GCPAsyncServiceBroker, instanceId string) error { | ||
var err error | ||
timeout := time.After(5 * time.Minute) | ||
tick := time.Tick(30 * time.Second) | ||
|
||
// Keep trying until we're timed out or got a result or got an error | ||
for { | ||
select { | ||
case <-timeout: | ||
return err | ||
case <-tick: | ||
done, err := gcpb.LastOperation(instanceId) | ||
if err != nil { | ||
return err | ||
} else if done.State == models.Succeeded { | ||
return nil | ||
} | ||
} | ||
} | ||
} | ||
|
||
var _ = Describe("AsyncIntegrationTests", func() { | ||
var ( | ||
gcpBroker *GCPAsyncServiceBroker | ||
err error | ||
logger lager.Logger | ||
serviceNameToId map[string]string = make(map[string]string) | ||
serviceNameToPlanId map[string]string = make(map[string]string) | ||
instance_name string | ||
cloudsqlInstanceName string | ||
) | ||
|
||
BeforeEach(func() { | ||
logger = lager.NewLogger("brokers_test") | ||
logger.RegisterSink(lager.NewWriterSink(GinkgoWriter, lager.DEBUG)) | ||
|
||
testDb, _ := gorm.Open("sqlite3", "test.db") | ||
testDb.CreateTable(models.ServiceInstanceDetails{}) | ||
testDb.CreateTable(models.ServiceBindingCredentials{}) | ||
testDb.CreateTable(models.PlanDetails{}) | ||
testDb.CreateTable(models.ProvisionRequestDetails{}) | ||
testDb.CreateTable(models.CloudOperation{}) | ||
|
||
db_service.DbConnection = testDb | ||
|
||
os.Setenv("SECURITY_USER_NAME", "username") | ||
os.Setenv("SECURITY_USER_PASSWORD", "password") | ||
os.Setenv("SERVICES", fakes.Services) | ||
os.Setenv("PRECONFIGURED_PLANS", fakes.PreconfiguredPlans) | ||
|
||
os.Setenv("CLOUDSQL_CUSTOM_PLANS", fakes.TestCloudSQLPlan) | ||
os.Setenv("BIGTABLE_CUSTOM_PLANS", fakes.TestBigtablePlan) | ||
|
||
var creds models.GCPCredentials | ||
creds, err = brokers.GetCredentialsFromEnv() | ||
if err != nil { | ||
logger.Error("error", err) | ||
} | ||
instance_name = generateInstanceName(creds.ProjectId, "-") | ||
cloudsqlInstanceName = fmt.Sprintf("pcf-sb-test-%d", time.Now().UnixNano()) | ||
name_generator.Basic = &fakes.StaticNameGenerator{Val: instance_name} | ||
name_generator.Sql = &fakes.StaticSQLNameGenerator{ | ||
StaticNameGenerator: fakes.StaticNameGenerator{Val: cloudsqlInstanceName}, | ||
} | ||
|
||
gcpBroker, err = brokers.New(logger) | ||
if err != nil { | ||
logger.Error("error", err) | ||
} | ||
|
||
for _, service := range *gcpBroker.Catalog { | ||
serviceNameToId[service.Name] = service.ID | ||
serviceNameToPlanId[service.Name] = service.Plans[0].ID | ||
} | ||
}) | ||
|
||
Describe("Cloud SQL", func() { | ||
|
||
var dbService *googlecloudsql.InstancesService | ||
var sslService *googlecloudsql.SslCertsService | ||
BeforeEach(func() { | ||
sqlService, err := googlecloudsql.New(gcpBroker.GCPClient) | ||
Expect(err).NotTo(HaveOccurred()) | ||
dbService = googlecloudsql.NewInstancesService(sqlService) | ||
sslService = googlecloudsql.NewSslCertsService(sqlService) | ||
}) | ||
|
||
It("can provision/bind/unbind/deprovision", func() { | ||
provisionDetails := models.ProvisionDetails{ | ||
ServiceID: serviceNameToId[models.CloudsqlName], | ||
PlanID: serviceNameToPlanId[models.CloudsqlName], | ||
} | ||
_, err = gcpBroker.Provision("integration_test_instance", provisionDetails, true) | ||
Expect(err).NotTo(HaveOccurred()) | ||
pollForMaxFiveMins(gcpBroker, "integration_test_instance") | ||
|
||
var count int | ||
db_service.DbConnection.Model(&models.ServiceInstanceDetails{}).Where("id = ?", "integration_test_instance").Count(&count) | ||
Expect(count).To(Equal(1)) | ||
|
||
clouddb, err := dbService.Get(gcpBroker.RootGCPCredentials.ProjectId, cloudsqlInstanceName).Do() | ||
Expect(err).NotTo(HaveOccurred()) | ||
Expect(clouddb.Name).To(Equal(cloudsqlInstanceName)) | ||
|
||
bindDetails := models.BindDetails{ | ||
ServiceID: serviceNameToId[models.CloudsqlName], | ||
PlanID: serviceNameToPlanId[models.CloudsqlName], | ||
} | ||
creds, err := gcpBroker.Bind("integration_test_instance", "binding_id", bindDetails) | ||
Expect(err).NotTo(HaveOccurred()) | ||
credsMap := creds.Credentials.(map[string]string) | ||
|
||
Expect(credsMap["Username"]).ToNot(Equal("")) | ||
_, err = sslService.Get(gcpBroker.RootGCPCredentials.ProjectId, cloudsqlInstanceName, credsMap["Sha1Fingerprint"]).Do() | ||
Expect(err).NotTo(HaveOccurred()) | ||
|
||
unBindDetails := models.UnbindDetails{ | ||
ServiceID: serviceNameToId[models.CloudsqlName], | ||
PlanID: serviceNameToPlanId[models.CloudsqlName], | ||
} | ||
err = gcpBroker.Unbind("integration_test_instance", "binding_id", unBindDetails) | ||
Expect(err).NotTo(HaveOccurred()) | ||
certsList, err := sslService.List(gcpBroker.RootGCPCredentials.ProjectId, cloudsqlInstanceName).Do() | ||
Expect(len(certsList.Items)).To(Equal(0)) | ||
|
||
deprovisionDetails := models.DeprovisionDetails{ | ||
ServiceID: serviceNameToId[models.CloudsqlName], | ||
PlanID: serviceNameToPlanId[models.CloudsqlName], | ||
} | ||
_, err = gcpBroker.Deprovision("integration_test_instance", deprovisionDetails, true) | ||
Expect(err).NotTo(HaveOccurred()) | ||
pollForMaxFiveMins(gcpBroker, "integration_test_instance") | ||
_, err = dbService.Get(gcpBroker.RootGCPCredentials.ProjectId, cloudsqlInstanceName).Do() | ||
Expect(err).To(HaveOccurred()) | ||
}) | ||
|
||
}) | ||
|
||
AfterEach(func() { | ||
os.Remove(models.AppCredsFileName) | ||
os.Remove("test.db") | ||
}) | ||
}) |
Oops, something went wrong.