本文整理匯總了Golang中github.com/cloudwan/gohan/schema.Manager類的典型用法代碼示例。如果您正苦於以下問題:Golang Manager類的具體用法?Golang Manager怎麽用?Golang Manager使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Manager類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
"github.com/cloudwan/gohan/schema"
"github.com/cloudwan/gohan/util"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("Database operation test", func() {
var (
err error
ok bool
conn string
dbType string
manager *schema.Manager
networkSchema *schema.Schema
serverSchema *schema.Schema
networkResource1 *schema.Resource
networkResource2 *schema.Resource
subnetResource *schema.Resource
serverResource *schema.Resource
dataStore db.DB
)
BeforeEach(func() {
manager = schema.GetManager()
Expect(manager.LoadSchemaFromFile("../etc/schema/gohan.json")).To(Succeed())
})
AfterEach(func() {
示例2: newEnvironmentWithExtension
)
func newEnvironmentWithExtension(extension *schema.Extension) (env extension.Environment) {
timelimit := time.Duration(1) * time.Second
extensions := []*schema.Extension{extension}
env = otto.NewEnvironment("db_test",
testDB, &middleware.FakeIdentity{}, timelimit)
Expect(env.LoadExtensionsForPath(extensions, "test_path")).To(Succeed())
return
}
var _ = Describe("GohanDb", func() {
var (
manager *schema.Manager
s *schema.Schema
ok bool
fakeResources []map[string]interface{}
err error
r0, r1 *schema.Resource
)
var ()
BeforeEach(func() {
manager = schema.GetManager()
s, ok = manager.Schema("test")
Expect(ok).To(BeTrue())
fakeResources = []map[string]interface{}{
map[string]interface{}{"tenant_id": "t0", "test_string": "str0", "test_bool": false},
map[string]interface{}{"tenant_id": "t1", "test_string": "str1", "test_bool": true},
}
示例3:
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/onsi/gomega/ghttp"
"github.com/cloudwan/gohan/db/transaction"
"github.com/cloudwan/gohan/extension"
"github.com/cloudwan/gohan/extension/otto"
"github.com/cloudwan/gohan/schema"
"github.com/cloudwan/gohan/server/middleware"
"github.com/cloudwan/gohan/server/resources"
"github.com/cloudwan/gohan/util"
)
var _ = Describe("Otto extension manager", func() {
var (
manager *schema.Manager
environmentManager *extension.Manager
)
BeforeEach(func() {
manager = schema.GetManager()
environmentManager = extension.GetManager()
})
AfterEach(func() {
tx, err := testDB.Begin()
Expect(err).ToNot(HaveOccurred(), "Failed to create transaction.")
defer tx.Close()
for _, schema := range schema.GetManager().Schemas() {
if whitelist[schema.ID] {
continue
}