本文整理汇总了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() {
开发者ID:vozhyk-,项目名称:gohan,代码行数:31,代码来源:db_test.go
示例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},
}
开发者ID:vozhyk-,项目名称:gohan,代码行数:32,代码来源:gohan_db_test.go
示例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
}
开发者ID:nati,项目名称:gohan,代码行数:32,代码来源:otto_test.go
注:本文中的github.com/cloudwan/gohan/schema.Manager类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论