本文整理汇总了Golang中github.com/cockroachdb/cockroach/acceptance/cluster.CreateLocal函数的典型用法代码示例。如果您正苦于以下问题:Golang CreateLocal函数的具体用法?Golang CreateLocal怎么用?Golang CreateLocal使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了CreateLocal函数的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: TestBuildInfo
func TestBuildInfo(t *testing.T) {
if *numLocal == 0 {
t.Skip("skipping since not run against local cluster")
}
l := cluster.CreateLocal(1, 1, *logDir, stopper) // intentionally using a local cluster
l.Start()
defer l.AssertAndStop(t)
checkGossip(t, l, 20*time.Second, hasPeers(l.NumNodes()))
util.SucceedsWithin(t, 10*time.Second, func() error {
select {
case <-stopper:
t.Fatalf("interrupted")
return nil
case <-time.After(200 * time.Millisecond):
}
var r struct {
BuildInfo map[string]string
}
if err := l.Nodes[0].GetJSON("", "/_status/details/local", &r); err != nil {
return err
}
for _, key := range []string{"goVersion", "tag", "time", "dependencies"} {
if val, ok := r.BuildInfo[key]; !ok {
t.Errorf("build info missing for \"%s\"", key)
} else if val == "" {
t.Errorf("build info not set for \"%s\"", key)
}
}
return nil
})
}
开发者ID:kaustubhkurve,项目名称:cockroach,代码行数:33,代码来源:build_info_test.go
示例2: StartCluster
// StartCluster starts a cluster from the relevant flags. All test clusters
// should be created through this command since it sets up the logging in a
// unified way.
func StartCluster(t *testing.T) cluster.Cluster {
if *numLocal > 0 {
if *numRemote > 0 {
t.Fatal("cannot both specify -num-local and -num-remote")
}
logDir := *logDir
if logDir != "" {
if _, _, fun := caller.Lookup(1); fun != "" {
logDir = filepath.Join(logDir, fun)
}
}
l := cluster.CreateLocal(*numLocal, *numStores, logDir, stopper)
l.Start()
checkRangeReplication(t, l, 20*time.Second)
return l
}
if *numRemote == 0 {
t.Fatal("need to either specify -num-local or -num-remote")
}
f := farmer(t)
if err := f.Resize(*numRemote, 0); err != nil {
t.Fatal(err)
}
if err := f.WaitReady(5 * time.Minute); err != nil {
_ = f.Destroy()
t.Fatalf("cluster not ready in time: %v", err)
}
checkRangeReplication(t, f, 20*time.Second)
return f
}
开发者ID:alaypatel07,项目名称:cockroach,代码行数:33,代码来源:main_test.go
示例3: TestRangeReplication
func TestRangeReplication(t *testing.T) {
l := cluster.CreateLocal(*numNodes, stopper) // intentionally using local cluster
l.Start()
defer l.AssertAndStop(t)
checkRangeReplication(t, l, 20*time.Second)
}
开发者ID:mbertschler,项目名称:cockroach,代码行数:7,代码来源:replication_test.go
示例4: MustStartLocal
// MustStartLocal skips tests not running against a local cluster.
func MustStartLocal(t *testing.T) *cluster.LocalCluster {
if *numLocal == 0 {
t.Skip("skipping since not run against local cluster")
}
l := cluster.CreateLocal(*numLocal, *numStores, *logDir, stopper)
l.Start()
return l
}
开发者ID:kaustubhkurve,项目名称:cockroach,代码行数:9,代码来源:main_test.go
示例5: TestRangeReplication
func TestRangeReplication(t *testing.T) {
if *numLocal == 0 {
t.Skip("skipping since not run against local cluster")
}
l := cluster.CreateLocal(*numLocal, *numStores, *logDir, stopper) // intentionally using local cluster
l.Start()
defer l.AssertAndStop(t)
checkRangeReplication(t, l, 20*time.Second)
}
开发者ID:kuangyunsheng,项目名称:cockroach,代码行数:10,代码来源:replication_test.go
示例6: StartCluster
// StartCluster starts a cluster from the relevant flags.
func StartCluster(t *testing.T) cluster.Cluster {
if *numNodes > 0 {
if len(*peers) > 0 {
t.Fatal("cannot both specify -num and -peers")
}
l := cluster.CreateLocal(*numNodes, stopper)
l.Start()
checkRangeReplication(t, l, 20*time.Second)
return l
}
if len(*peers) == 0 {
t.Fatal("need to either specify -num or -peers")
}
return cluster.CreateRemote(strings.Split(*peers, ","))
}
开发者ID:Ralkage,项目名称:cockroach,代码行数:16,代码来源:main_test.go
示例7: TestStatusServer
// TestStatusServer starts up an N node cluster and tests the status server on
// each node.
func TestStatusServer(t *testing.T) {
if *numLocal == 0 {
t.Skip("skipping since not run against local cluster")
}
l := cluster.CreateLocal(*numLocal, *numStores, *logDir, stopper) // intentionally using local cluster
l.ForceLogging = true
l.Start()
defer l.AssertAndStop(t)
checkRangeReplication(t, l, 20*time.Second)
// Get the ids for each node.
idMap := make(map[string]string)
for _, node := range l.Nodes {
body := get(t, node, "/_status/details/local")
var detail details
if err := json.Unmarshal(body, &detail); err != nil {
t.Fatalf("unable to parse details - %s", err)
}
idMap[node.ID] = detail.NodeID.String()
}
// Check local response for the every node.
for _, node := range l.Nodes {
checkNode(t, node, idMap[node.ID], "local", idMap[node.ID])
get(t, node, "/_status/nodes")
get(t, node, "/_status/stores")
}
// Proxy from the first node to the last node.
firstNode := l.Nodes[0]
lastNode := l.Nodes[len(l.Nodes)-1]
firstID := idMap[firstNode.ID]
lastID := idMap[lastNode.ID]
checkNode(t, firstNode, firstID, lastID, lastID)
// And from the last node to the first node.
checkNode(t, lastNode, lastID, firstID, firstID)
// And from the last node to the last node.
checkNode(t, lastNode, lastID, lastID, lastID)
}
开发者ID:kaustubhkurve,项目名称:cockroach,代码行数:45,代码来源:status_server_test.go
示例8: StartCluster
// StartCluster starts a cluster from the relevant flags. All test clusters
// should be created through this command since it sets up the logging in a
// unified way.
func StartCluster(t *testing.T, cfg cluster.TestConfig) (c cluster.Cluster) {
var completed bool
defer func() {
if !completed && c != nil {
c.AssertAndStop(t)
}
}()
if !*flagRemote {
logDir := *flagLogDir
if logDir != "" {
logDir = func(d string) string {
for i := 1; i < 100; i++ {
_, _, fun := caller.Lookup(i)
if testFuncRE.MatchString(fun) {
return filepath.Join(d, fun)
}
}
panic("no caller matching Test(.*) in stack trace")
}(logDir)
}
l := cluster.CreateLocal(cfg, logDir, *flagPrivileged, stopper)
l.Start()
c = l
checkRangeReplication(t, l, 20*time.Second)
completed = true
return l
}
f := farmer(t, "")
c = f
if err := f.Resize(*flagNodes); err != nil {
t.Fatal(err)
}
if err := f.WaitReady(5 * time.Minute); err != nil {
if destroyErr := f.Destroy(t); destroyErr != nil {
t.Fatalf("could not destroy cluster after error %v: %v", err, destroyErr)
}
t.Fatalf("cluster not ready in time: %v", err)
}
checkRangeReplication(t, f, 20*time.Second)
completed = true
return f
}
开发者ID:yaojingguo,项目名称:cockroach,代码行数:45,代码来源:util_test.go
示例9: StartCluster
// StartCluster starts a cluster from the relevant flags.
func StartCluster(t *testing.T) cluster.Cluster {
if *numLocal > 0 {
if *numRemote > 0 {
t.Fatal("cannot both specify -num-local and -num-remote")
}
l := cluster.CreateLocal(*numLocal, *logDir, stopper)
l.Start()
checkRangeReplication(t, l, 20*time.Second)
return l
}
if *numRemote == 0 {
t.Fatal("need to either specify -num-local or -num-remote")
}
f := farmer(t)
if err := f.Destroy(); err != nil {
t.Fatal(err)
}
if err := f.Add(*numRemote, 0); err != nil {
t.Fatal(err)
}
return f
}
开发者ID:gechong,项目名称:cockroach,代码行数:23,代码来源:main_test.go
示例10: StartCluster
// StartCluster starts a cluster from the relevant flags. All test clusters
// should be created through this command since it sets up the logging in a
// unified way.
func StartCluster(t *testing.T, cfg cluster.TestConfig) (c cluster.Cluster) {
var completed bool
defer func() {
if !completed && c != nil {
c.AssertAndStop(t)
}
}()
if !*flagRemote {
logDir := *flagLogDir
if logDir != "" {
_, _, fun := caller.Lookup(3)
if !testFuncRE.MatchString(fun) {
t.Fatalf("invalid caller %s; want TestX -> runTestOnConfigs -> func()", fun)
}
logDir = filepath.Join(logDir, fun)
}
l := cluster.CreateLocal(cfg, logDir, *flagPrivileged, stopper)
l.Start()
c = l
checkRangeReplication(t, l, 20*time.Second)
completed = true
return l
}
f := farmer(t)
c = f
if err := f.Resize(*flagNodes, 0); err != nil {
t.Fatal(err)
}
if err := f.WaitReady(5 * time.Minute); err != nil {
_ = f.Destroy()
t.Fatalf("cluster not ready in time: %v", err)
}
checkRangeReplication(t, f, 20*time.Second)
completed = true
return f
}
开发者ID:GitGoldie,项目名称:cockroach,代码行数:39,代码来源:util_test.go
示例11: StartCluster
// StartCluster starts a cluster from the relevant flags. All test clusters
// should be created through this command since it sets up the logging in a
// unified way.
func StartCluster(t *testing.T) cluster.Cluster {
if !*flagRemote {
logDir := *flagLogDir
if logDir != "" {
if _, _, fun := caller.Lookup(1); fun != "" {
logDir = filepath.Join(logDir, fun)
}
}
l := cluster.CreateLocal(*flagNodes, *flagStores, logDir, stopper)
l.Start()
checkRangeReplication(t, l, 20*time.Second)
return l
}
f := farmer(t)
if err := f.Resize(*flagNodes, 0); err != nil {
t.Fatal(err)
}
if err := f.WaitReady(5 * time.Minute); err != nil {
_ = f.Destroy()
t.Fatalf("cluster not ready in time: %v", err)
}
checkRangeReplication(t, f, 20*time.Second)
return f
}
开发者ID:soniabhishek,项目名称:cockroach,代码行数:27,代码来源:main_test.go
示例12: StartCluster
// StartCluster starts a cluster from the relevant flags.
func StartCluster(t *testing.T) cluster.Cluster {
l := cluster.CreateLocal(*numNodes, stopper)
l.Start()
checkRangeReplication(t, l, 20*time.Second)
return l
}
开发者ID:mbertschler,项目名称:cockroach,代码行数:7,代码来源:main_test.go
注:本文中的github.com/cockroachdb/cockroach/acceptance/cluster.CreateLocal函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论