本文整理汇总了Golang中github.com/cockroachdb/cockroach/pkg/testutils/serverutils.TestServerInterface类的典型用法代码示例。如果您正苦于以下问题:Golang TestServerInterface类的具体用法?Golang TestServerInterface怎么用?Golang TestServerInterface使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TestServerInterface类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: checkCounterGE
func checkCounterGE(s serverutils.TestServerInterface, meta metric.Metadata, e int64) error {
if a := s.MustGetSQLCounter(meta.Name); a < e {
return errors.Errorf("stat %s: expected: actual %d >= %d",
meta.Name, a, e)
}
return nil
}
开发者ID:BramGruneir,项目名称:cockroach,代码行数:7,代码来源:metric_util_test.go
示例2: runTestFlow
// runTestFlow runs a flow with the given processors and returns the results.
// Any errors stop the current test.
func runTestFlow(
t *testing.T, srv serverutils.TestServerInterface, procs ...distsqlrun.ProcessorSpec,
) sqlbase.EncDatumRows {
kvDB := srv.KVClient().(*client.DB)
distSQLSrv := srv.DistSQLServer().(*distsqlrun.ServerImpl)
req := distsqlrun.SetupFlowRequest{
Txn: client.NewTxn(context.TODO(), *kvDB).Proto,
Flow: distsqlrun.FlowSpec{
FlowID: distsqlrun.FlowID{UUID: uuid.MakeV4()},
Processors: procs,
},
}
var rowBuf distsqlrun.RowBuffer
flow, err := distSQLSrv.SetupSyncFlow(context.TODO(), &req, &rowBuf)
if err != nil {
t.Fatal(err)
}
flow.Start(func() {})
flow.Wait()
flow.Cleanup()
if rowBuf.Err != nil {
t.Fatal(rowBuf.Err)
}
if !rowBuf.Closed {
t.Errorf("output not closed")
}
return rowBuf.Rows
}
开发者ID:,项目名称:,代码行数:34,代码来源:
示例3: checkCounterDelta
func checkCounterDelta(
s serverutils.TestServerInterface, meta metric.Metadata, init, delta int64,
) (int64, error) {
actual := s.MustGetSQLCounter(meta.Name)
if actual != (init + delta) {
return actual, errors.Errorf("query %s: actual %d != (init %d + delta %d)",
meta.Name, actual, init, delta)
}
return actual, nil
}
开发者ID:BramGruneir,项目名称:cockroach,代码行数:10,代码来源:metric_util_test.go
示例4: getText
// getText fetches the HTTP response body as text in the form of a
// byte slice from the specified URL.
func getText(ts serverutils.TestServerInterface, url string) ([]byte, error) {
httpClient, err := ts.GetHTTPClient()
if err != nil {
return nil, err
}
resp, err := httpClient.Get(url)
if err != nil {
return nil, err
}
defer resp.Body.Close()
return ioutil.ReadAll(resp.Body)
}
开发者ID:veteranlu,项目名称:cockroach,代码行数:14,代码来源:admin_test.go
示例5: setupMultipleRanges
// setupMultipleRanges creates a test server and splits the
// key range at the given keys. Returns the test server and client.
// The caller is responsible for stopping the server and
// closing the client.
func setupMultipleRanges(
t *testing.T, ts serverutils.TestServerInterface, splitAt ...string,
) *client.DB {
db := createTestClient(t, ts.Stopper(), ts.ServingAddr())
// Split the keyspace at the given keys.
for _, key := range splitAt {
if err := db.AdminSplit(context.TODO(), key); err != nil {
// Don't leak server goroutines.
t.Fatal(err)
}
}
return db
}
开发者ID:knz,项目名称:cockroach,代码行数:19,代码来源:dist_sender_server_test.go
示例6: createTestClientForUser
func createTestClientForUser(
t *testing.T, s serverutils.TestServerInterface, user string,
) *client.DB {
var ctx base.Config
ctx.InitDefaults()
ctx.User = user
ctx.SSLCA = filepath.Join(security.EmbeddedCertsDir, security.EmbeddedCACert)
ctx.SSLCert = filepath.Join(security.EmbeddedCertsDir, fmt.Sprintf("%s.crt", user))
ctx.SSLCertKey = filepath.Join(security.EmbeddedCertsDir, fmt.Sprintf("%s.key", user))
conn, err := rpc.NewContext(log.AmbientContext{}, &ctx, s.Clock(), s.Stopper()).GRPCDial(s.ServingAddr())
if err != nil {
t.Fatal(err)
}
return client.NewDB(client.NewSender(conn))
}
开发者ID:hvaara,项目名称:cockroach,代码行数:15,代码来源:db_test.go
示例7: initReverseScanTestEnv
func initReverseScanTestEnv(s serverutils.TestServerInterface, t *testing.T) *client.DB {
db := createTestClient(t, s.Stopper(), s.ServingAddr())
// Set up multiple ranges:
// ["", "b"),["b", "e") ,["e", "g") and ["g", "\xff\xff").
for _, key := range []string{"b", "e", "g"} {
// Split the keyspace at the given key.
if err := db.AdminSplit(context.TODO(), key); err != nil {
t.Fatal(err)
}
}
// Write keys before, at, and after the split key.
for _, key := range []string{"a", "b", "c", "d", "e", "f", "g", "h"} {
if err := db.Put(context.TODO(), key, "value"); err != nil {
t.Fatal(err)
}
}
return db
}
开发者ID:knz,项目名称:cockroach,代码行数:19,代码来源:dist_sender_server_test.go
示例8: createTestClientForUser
func createTestClientForUser(
t *testing.T, s serverutils.TestServerInterface, user string, dbCtx client.DBContext,
) *client.DB {
rpcContext := rpc.NewContext(log.AmbientContext{}, &base.Config{
User: user,
SSLCA: filepath.Join(security.EmbeddedCertsDir, security.EmbeddedCACert),
SSLCert: filepath.Join(security.EmbeddedCertsDir, fmt.Sprintf("%s.crt", user)),
SSLCertKey: filepath.Join(security.EmbeddedCertsDir, fmt.Sprintf("%s.key", user)),
}, s.Clock(), s.Stopper())
conn, err := rpcContext.GRPCDial(s.ServingAddr())
if err != nil {
t.Fatal(err)
}
return client.NewDBWithContext(client.NewSender(conn), dbCtx)
}
开发者ID:hvaara,项目名称:cockroach,代码行数:15,代码来源:client_test.go
示例9: checkSQLNetworkMetrics
// checkSQLNetworkMetrics returns the server's pgwire bytesIn/bytesOut and an
// error if the bytesIn/bytesOut don't satisfy the given minimums and maximums.
func checkSQLNetworkMetrics(
s serverutils.TestServerInterface, minBytesIn, minBytesOut, maxBytesIn, maxBytesOut int64,
) (int64, int64, error) {
if err := s.WriteSummaries(); err != nil {
return -1, -1, err
}
bytesIn := s.MustGetSQLNetworkCounter(pgwire.MetaBytesIn.Name)
bytesOut := s.MustGetSQLNetworkCounter(pgwire.MetaBytesOut.Name)
if a, min := bytesIn, minBytesIn; a < min {
return bytesIn, bytesOut, errors.Errorf("bytesin %d < expected min %d", a, min)
}
if a, min := bytesOut, minBytesOut; a < min {
return bytesIn, bytesOut, errors.Errorf("bytesout %d < expected min %d", a, min)
}
if a, max := bytesIn, maxBytesIn; a > max {
return bytesIn, bytesOut, errors.Errorf("bytesin %d > expected max %d", a, max)
}
if a, max := bytesOut, maxBytesOut; a > max {
return bytesIn, bytesOut, errors.Errorf("bytesout %d > expected max %d", a, max)
}
return bytesIn, bytesOut, nil
}
开发者ID:maxlang,项目名称:cockroach,代码行数:25,代码来源:pgwire_test.go
示例10: debugURL
// debugURL returns the root debug URL.
func debugURL(s serverutils.TestServerInterface) string {
return s.AdminURL() + debugEndpoint
}
开发者ID:veteranlu,项目名称:cockroach,代码行数:4,代码来源:admin_test.go
示例11: checkCounterGE
func checkCounterGE(t *testing.T, s serverutils.TestServerInterface, meta metric.Metadata, e int64) {
if a := s.MustGetSQLCounter(meta.Name); a < e {
t.Error(errors.Errorf("stat %s: expected: actual %d >= %d", meta.Name, a, e))
}
}
开发者ID:knz,项目名称:cockroach,代码行数:5,代码来源:metric_util_test.go
注:本文中的github.com/cockroachdb/cockroach/pkg/testutils/serverutils.TestServerInterface类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论