2017-05-26 04:48:44 +08:00
|
|
|
/*
|
|
|
|
* tester.actor.cpp
|
|
|
|
*
|
|
|
|
* This source file is part of the FoundationDB open source project
|
|
|
|
*
|
|
|
|
* Copyright 2013-2018 Apple Inc. and the FoundationDB project authors
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* 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
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include "flow/actorcompiler.h"
|
|
|
|
#include "flow/ActorCollection.h"
|
|
|
|
#include "fdbrpc/sim_validation.h"
|
|
|
|
#include "fdbrpc/simulator.h"
|
|
|
|
#include "fdbclient/ClusterInterface.h"
|
|
|
|
#include "fdbclient/NativeAPI.h"
|
|
|
|
#include "fdbclient/SystemData.h"
|
|
|
|
#include "TesterInterface.h"
|
|
|
|
#include "WorkerInterface.h"
|
|
|
|
#include "ClusterRecruitmentInterface.h"
|
|
|
|
#include "workloads/workloads.h"
|
|
|
|
#include "Status.h"
|
|
|
|
#include "QuietDatabase.h"
|
|
|
|
#include "fdbclient/MonitorLeader.h"
|
|
|
|
#include "fdbclient/FailureMonitorClient.h"
|
|
|
|
#include "CoordinationInterface.h"
|
2018-02-19 04:59:43 +08:00
|
|
|
#include "fdbclient/ManagementAPI.h"
|
2017-05-26 04:48:44 +08:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
|
|
WorkloadContext::WorkloadContext() {}
|
|
|
|
|
|
|
|
WorkloadContext::WorkloadContext( const WorkloadContext& r )
|
|
|
|
: options(r.options), clientId(r.clientId), clientCount(r.clientCount),
|
|
|
|
dbInfo(r.dbInfo), sharedRandomNumber(r.sharedRandomNumber)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
WorkloadContext::~WorkloadContext() {}
|
|
|
|
|
|
|
|
const char HEX_CHAR_LOOKUP[16] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
|
|
|
|
|
|
|
|
void emplaceIndex( uint8_t *data, int offset, int64_t index ) {
|
|
|
|
for( int i = 0; i < 16; i++ ) {
|
|
|
|
data[(15-i) + offset] = HEX_CHAR_LOOKUP[index & 0xf];
|
|
|
|
index = index>>4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Key doubleToTestKey( double p ) {
|
|
|
|
return StringRef(format("%016llx", *(uint64_t*)&p));
|
|
|
|
}
|
|
|
|
|
|
|
|
double testKeyToDouble( const KeyRef& p ) {
|
|
|
|
uint64_t x = 0;
|
|
|
|
sscanf( p.toString().c_str(), "%llx", &x );
|
|
|
|
return *(double*)&x;
|
|
|
|
}
|
|
|
|
|
|
|
|
Key doubleToTestKey(double p, const KeyRef& prefix) {
|
|
|
|
return doubleToTestKey(p).withPrefix(prefix);
|
|
|
|
}
|
|
|
|
|
|
|
|
Key KVWorkload::getRandomKey() {
|
|
|
|
return getRandomKey(absentFrac);
|
|
|
|
}
|
|
|
|
|
|
|
|
Key KVWorkload::getRandomKey(double absentFrac) {
|
|
|
|
if ( absentFrac > 0.0000001 ) {
|
|
|
|
return getRandomKey(g_random->random01() < absentFrac);
|
|
|
|
} else {
|
|
|
|
return getRandomKey(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Key KVWorkload::getRandomKey(bool absent) {
|
|
|
|
return keyForIndex(g_random->randomInt( 0, nodeCount ), absent);
|
|
|
|
}
|
|
|
|
|
|
|
|
Key KVWorkload::keyForIndex( uint64_t index ) {
|
|
|
|
if ( absentFrac > 0.0000001 ) {
|
|
|
|
return keyForIndex(index, g_random->random01() < absentFrac);
|
|
|
|
} else {
|
|
|
|
return keyForIndex(index, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Key KVWorkload::keyForIndex( uint64_t index, bool absent ) {
|
|
|
|
int adjustedKeyBytes = (absent) ? (keyBytes + 1) : keyBytes;
|
|
|
|
Key result = makeString( adjustedKeyBytes );
|
|
|
|
uint8_t* data = mutateString( result );
|
|
|
|
memset(data, '.', adjustedKeyBytes);
|
|
|
|
|
|
|
|
int idx = 0;
|
|
|
|
if( nodePrefix > 0 ) {
|
|
|
|
emplaceIndex( data, 0, nodePrefix );
|
|
|
|
idx += 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
double d = double(index) / nodeCount;
|
|
|
|
emplaceIndex( data, idx, *(int64_t*)&d );
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
double testKeyToDouble(const KeyRef& p, const KeyRef& prefix) {
|
|
|
|
return testKeyToDouble(p.removePrefix(prefix));
|
|
|
|
}
|
|
|
|
|
|
|
|
ACTOR Future<Void> poisson( double *last, double meanInterval ) {
|
|
|
|
*last += meanInterval*-log( g_random->random01() );
|
|
|
|
Void _ = wait( delayUntil( *last ) );
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
|
|
|
ACTOR Future<Void> uniform( double *last, double meanInterval ) {
|
|
|
|
*last += meanInterval;
|
|
|
|
Void _ = wait( delayUntil( *last ) );
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
|
|
|
Value getOption( VectorRef<KeyValueRef> options, Key key, Value defaultValue) {
|
|
|
|
for(int i = 0; i < options.size(); i++)
|
|
|
|
if( options[i].key == key ) {
|
|
|
|
Value value = options[i].value;
|
|
|
|
options[i].value = LiteralStringRef("");
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int getOption( VectorRef<KeyValueRef> options, Key key, int defaultValue) {
|
|
|
|
for(int i = 0; i < options.size(); i++)
|
|
|
|
if( options[i].key == key ) {
|
|
|
|
int r;
|
|
|
|
if( sscanf(options[i].value.toString().c_str(), "%d", &r) ) {
|
|
|
|
options[i].value = LiteralStringRef("");
|
|
|
|
return r;
|
|
|
|
} else
|
|
|
|
throw test_specification_invalid();
|
|
|
|
}
|
|
|
|
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t getOption( VectorRef<KeyValueRef> options, Key key, uint64_t defaultValue) {
|
|
|
|
for(int i = 0; i < options.size(); i++)
|
|
|
|
if( options[i].key == key ) {
|
|
|
|
uint64_t r;
|
|
|
|
if( sscanf(options[i].value.toString().c_str(), "%lld", &r) ) {
|
|
|
|
options[i].value = LiteralStringRef("");
|
|
|
|
return r;
|
|
|
|
} else
|
|
|
|
throw test_specification_invalid();
|
|
|
|
}
|
|
|
|
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t getOption( VectorRef<KeyValueRef> options, Key key, int64_t defaultValue) {
|
|
|
|
for(int i = 0; i < options.size(); i++)
|
|
|
|
if( options[i].key == key ) {
|
|
|
|
int64_t r;
|
|
|
|
if( sscanf(options[i].value.toString().c_str(), "%lld", &r) ) {
|
|
|
|
options[i].value = LiteralStringRef("");
|
|
|
|
return r;
|
|
|
|
} else
|
|
|
|
throw test_specification_invalid();
|
|
|
|
}
|
|
|
|
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
double getOption( VectorRef<KeyValueRef> options, Key key, double defaultValue) {
|
|
|
|
for(int i = 0; i < options.size(); i++)
|
|
|
|
if( options[i].key == key ) {
|
|
|
|
float r;
|
|
|
|
if( sscanf(options[i].value.toString().c_str(), "%f", &r) ) {
|
|
|
|
options[i].value = LiteralStringRef("");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool getOption( VectorRef<KeyValueRef> options, Key key, bool defaultValue ) {
|
|
|
|
Value p = getOption(options, key, defaultValue ? LiteralStringRef("true") : LiteralStringRef("false"));
|
|
|
|
if (p == LiteralStringRef("true"))
|
|
|
|
return true;
|
|
|
|
if (p == LiteralStringRef("false"))
|
|
|
|
return false;
|
|
|
|
ASSERT(false);
|
|
|
|
return false; // Assure that compiler is fine with the function
|
|
|
|
}
|
|
|
|
|
|
|
|
vector<std::string> getOption( VectorRef<KeyValueRef> options, Key key, vector<std::string> defaultValue ) {
|
|
|
|
for(int i = 0; i < options.size(); i++)
|
|
|
|
if( options[i].key == key ) {
|
|
|
|
vector<std::string> v;
|
|
|
|
int begin = 0;
|
|
|
|
for(int c=0; c<options[i].value.size(); c++)
|
|
|
|
if (options[i].value[c] == ',') {
|
|
|
|
v.push_back( options[i].value.substr(begin, c-begin).toString() );
|
|
|
|
begin = c+1;
|
|
|
|
}
|
|
|
|
v.push_back(options[i].value.substr(begin).toString());
|
|
|
|
options[i].value = LiteralStringRef("");
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns unconsumed options
|
|
|
|
Standalone<VectorRef<KeyValueRef>> checkAllOptionsConsumed( VectorRef<KeyValueRef> options ) {
|
|
|
|
static StringRef nothing = LiteralStringRef("");
|
|
|
|
Standalone<VectorRef<KeyValueRef>> unconsumed;
|
|
|
|
for(int i = 0; i < options.size(); i++)
|
|
|
|
if( !(options[i].value == nothing) ) {
|
|
|
|
TraceEvent(SevError,"OptionNotConsumed").detail("Key", options[i].key.toString().c_str()).detail("Value", options[i].value.toString().c_str());
|
|
|
|
unconsumed.push_back_deep( unconsumed.arena(), options[i] );
|
|
|
|
}
|
|
|
|
return unconsumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct CompoundWorkload : TestWorkload {
|
|
|
|
vector<TestWorkload*> workloads;
|
|
|
|
|
|
|
|
CompoundWorkload( WorkloadContext& wcx ) : TestWorkload( wcx ) {}
|
|
|
|
CompoundWorkload* add( TestWorkload* w ) { workloads.push_back(w); return this; }
|
|
|
|
|
|
|
|
virtual ~CompoundWorkload() { for(int w=0; w<workloads.size(); w++) delete workloads[w]; }
|
|
|
|
virtual std::string description() {
|
|
|
|
std::string d;
|
|
|
|
for(int w=0; w<workloads.size(); w++)
|
|
|
|
d += workloads[w]->description() + (w==workloads.size()-1?"":";");
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
virtual Future<Void> setup( Database const& cx ) {
|
|
|
|
vector<Future<Void>> all;
|
|
|
|
for(int w=0; w<workloads.size(); w++)
|
|
|
|
all.push_back( workloads[w]->setup(cx) );
|
|
|
|
return waitForAll(all);
|
|
|
|
}
|
|
|
|
virtual Future<Void> start( Database const& cx ) {
|
|
|
|
vector<Future<Void>> all;
|
|
|
|
for(int w=0; w<workloads.size(); w++)
|
|
|
|
all.push_back( workloads[w]->start(cx) );
|
|
|
|
return waitForAll(all);
|
|
|
|
}
|
|
|
|
virtual Future<bool> check( Database const& cx ) {
|
|
|
|
vector<Future<bool>> all;
|
|
|
|
for(int w=0; w<workloads.size(); w++)
|
|
|
|
all.push_back( workloads[w]->check(cx) );
|
|
|
|
return allTrue(all);
|
|
|
|
}
|
|
|
|
virtual void getMetrics( vector<PerfMetric>& m ) {
|
|
|
|
for(int w=0; w<workloads.size(); w++) {
|
|
|
|
vector<PerfMetric> p;
|
|
|
|
workloads[w]->getMetrics(p);
|
|
|
|
for(int i=0; i<p.size(); i++)
|
|
|
|
m.push_back( p[i].withPrefix( workloads[w]->description()+"." ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virtual double getCheckTimeout() {
|
|
|
|
double m = 0;
|
|
|
|
for(int w=0; w<workloads.size(); w++)
|
|
|
|
m = std::max( workloads[w]->getCheckTimeout(), m );
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
TestWorkload *getWorkloadIface( WorkloadRequest work, VectorRef<KeyValueRef> options, Reference<AsyncVar<ServerDBInfo>> dbInfo ) {
|
|
|
|
options.push_back( work.arena, KeyValueRef(LiteralStringRef("dbName"), work.database) );
|
|
|
|
Value testName = getOption( options, LiteralStringRef("testName"), LiteralStringRef("no-test-specified") );
|
|
|
|
WorkloadContext wcx;
|
|
|
|
wcx.clientId = work.clientId;
|
|
|
|
wcx.clientCount = work.clientCount;
|
|
|
|
wcx.dbInfo = dbInfo;
|
|
|
|
wcx.options = options;
|
|
|
|
wcx.sharedRandomNumber = work.sharedRandomNumber;
|
|
|
|
|
|
|
|
TestWorkload *workload = IWorkloadFactory::create( testName.toString(), wcx );
|
|
|
|
|
|
|
|
auto unconsumedOptions = checkAllOptionsConsumed( workload ? workload->options : VectorRef<KeyValueRef>() );
|
|
|
|
if( !workload || unconsumedOptions.size() ) {
|
|
|
|
TraceEvent evt(SevError,"TestCreationError");
|
|
|
|
evt.detail("TestName", printable(testName));
|
|
|
|
if( !workload ) {
|
|
|
|
evt.detail("Reason", "Null workload");
|
|
|
|
fprintf(stderr, "ERROR: Workload could not be created, perhaps testName (%s) is not a valid workload\n", printable(testName).c_str());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
evt.detail("Reason", "Not all options consumed");
|
|
|
|
fprintf(stderr, "ERROR: Workload had invalid options. The following were unrecognized:\n");
|
|
|
|
for(int i = 0; i < unconsumedOptions.size(); i++)
|
|
|
|
fprintf(stderr, " '%s' = '%s'\n", unconsumedOptions[i].key.toString().c_str(), unconsumedOptions[i].value.toString().c_str());
|
|
|
|
delete workload;
|
|
|
|
}
|
|
|
|
throw test_specification_invalid();
|
|
|
|
}
|
|
|
|
return workload;
|
|
|
|
}
|
|
|
|
|
|
|
|
TestWorkload *getWorkloadIface( WorkloadRequest work, Reference<AsyncVar<ServerDBInfo>> dbInfo ) {
|
|
|
|
if( work.options.size() < 1 ) {
|
|
|
|
TraceEvent(SevError,"TestCreationError").detail("Reason", "No options provided");
|
|
|
|
fprintf(stderr, "ERROR: No options were provided for workload.\n");
|
|
|
|
throw test_specification_invalid();
|
|
|
|
}
|
|
|
|
if( work.options.size() == 1 )
|
|
|
|
return getWorkloadIface( work, work.options[0], dbInfo );
|
|
|
|
|
|
|
|
WorkloadContext wcx;
|
|
|
|
wcx.clientId = work.clientId;
|
|
|
|
wcx.clientCount = work.clientCount;
|
|
|
|
wcx.sharedRandomNumber = work.sharedRandomNumber;
|
|
|
|
// FIXME: Other stuff not filled in; why isn't this constructed here and passed down to the other getWorkloadIface()?
|
|
|
|
CompoundWorkload *compound = new CompoundWorkload( wcx );
|
|
|
|
for( int i = 0; i < work.options.size(); i++ ) {
|
|
|
|
TestWorkload *workload = getWorkloadIface( work, work.options[i], dbInfo );
|
|
|
|
compound->add( workload );
|
|
|
|
}
|
|
|
|
return compound;
|
|
|
|
}
|
|
|
|
|
|
|
|
ACTOR Future<Void> databaseWarmer( Database cx ) {
|
|
|
|
loop {
|
|
|
|
state Transaction tr( cx );
|
|
|
|
Version v = wait( tr.getReadVersion() );
|
|
|
|
Void _ = wait( delay( 0.25 ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Tries indefinitly to commit a simple, self conflicting transaction
|
|
|
|
ACTOR Future<Void> pingDatabase( Database cx ) {
|
|
|
|
state Transaction tr( cx );
|
|
|
|
loop {
|
|
|
|
try {
|
|
|
|
tr.setOption( FDBTransactionOptions::PRIORITY_SYSTEM_IMMEDIATE );
|
|
|
|
Optional<Value> v = wait( tr.get( StringRef("/Liveness/" + g_random->randomUniqueID().toString() ) ) );
|
|
|
|
tr.makeSelfConflicting();
|
|
|
|
Void _ = wait( tr.commit() );
|
|
|
|
return Void();
|
|
|
|
} catch( Error& e ) {
|
|
|
|
TraceEvent("PingingDatabaseTransactionError").error(e);
|
|
|
|
Void _ = wait( tr.onError( e ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ACTOR Future<Void> testDatabaseLiveness( Database cx, double databasePingDelay, string context, double startDelay = 0.0 ) {
|
|
|
|
Void _ = wait( delay( startDelay ) );
|
|
|
|
loop {
|
|
|
|
try {
|
|
|
|
state double start = now();
|
|
|
|
TraceEvent(("PingingDatabaseLiveness_" + context).c_str());
|
|
|
|
Void _ = wait( timeoutError( pingDatabase( cx ), databasePingDelay ) );
|
|
|
|
double pingTime = now() - start;
|
|
|
|
ASSERT( pingTime > 0 );
|
|
|
|
TraceEvent(("PingingDatabaseLivenessDone_" + context).c_str()).detail("TimeTaken", pingTime);
|
|
|
|
Void _ = wait( delay( databasePingDelay - pingTime ) );
|
|
|
|
} catch( Error& e ) {
|
|
|
|
if( e.code() != error_code_actor_cancelled )
|
|
|
|
TraceEvent(SevError, ("PingingDatabaseLivenessError_" + context).c_str()).error(e)
|
|
|
|
.detail("Database", printable(cx->dbName)).detail("PingDelay", databasePingDelay);
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void sendResult( ReplyPromise<T>& reply, Optional<ErrorOr<T>> const& result ) {
|
|
|
|
auto& res = result.get();
|
|
|
|
if (res.isError())
|
|
|
|
reply.sendError(res.getError());
|
|
|
|
else
|
|
|
|
reply.send(res.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
ACTOR Future<Void> runWorkloadAsync( Database cx, WorkloadInterface workIface, TestWorkload *workload, double databasePingDelay ) {
|
|
|
|
state auto_ptr<TestWorkload> delw(workload);
|
|
|
|
state Optional<ErrorOr<Void>> setupResult;
|
|
|
|
state Optional<ErrorOr<Void>> startResult;
|
|
|
|
state Optional<ErrorOr<bool>> checkResult;
|
|
|
|
state ReplyPromise<Void> setupReq;
|
|
|
|
state ReplyPromise<Void> startReq;
|
|
|
|
state ReplyPromise<bool> checkReq;
|
|
|
|
|
|
|
|
TraceEvent("TestBeginAsync", workIface.id()).detail("Workload", workload->description()).detail("DatabasePingDelay", databasePingDelay);
|
|
|
|
|
|
|
|
state Future<Void> databaseError = databasePingDelay == 0.0 ? Never() : testDatabaseLiveness( cx, databasePingDelay, "RunWorkloadAsync" );
|
|
|
|
|
|
|
|
loop choose {
|
|
|
|
when( ReplyPromise<Void> req = waitNext( workIface.setup.getFuture() ) ) {
|
|
|
|
printf("Test received trigger for setup...\n");
|
|
|
|
TraceEvent("TestSetupBeginning", workIface.id()).detail("Workload", workload->description());
|
|
|
|
setupReq = req;
|
|
|
|
if (!setupResult.present()) {
|
|
|
|
try {
|
|
|
|
Void _ = wait( workload->setup(cx) || databaseError );
|
|
|
|
TraceEvent("TestSetupComplete", workIface.id()).detail("Workload", workload->description());
|
|
|
|
setupResult = Void();
|
|
|
|
} catch (Error& e) {
|
|
|
|
setupResult = operation_failed();
|
2018-08-02 05:30:57 +08:00
|
|
|
TraceEvent(SevError, "TestSetupError", workIface.id()).error(e).detail("Workload", workload->description());
|
2017-05-26 04:48:44 +08:00
|
|
|
if( e.code() == error_code_please_reboot || e.code() == error_code_please_reboot_delete) throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sendResult( setupReq, setupResult );
|
|
|
|
}
|
|
|
|
when( ReplyPromise<Void> req = waitNext( workIface.start.getFuture() ) ) {
|
|
|
|
startReq = req;
|
|
|
|
if (!startResult.present()) {
|
|
|
|
try {
|
|
|
|
TraceEvent("TestStarting", workIface.id()).detail("Workload", workload->description());
|
|
|
|
Void _ = wait( workload->start(cx) || databaseError );
|
|
|
|
startResult = Void();
|
|
|
|
} catch( Error& e ) {
|
|
|
|
startResult = operation_failed();
|
|
|
|
if( e.code() == error_code_please_reboot || e.code() == error_code_please_reboot_delete) throw;
|
|
|
|
TraceEvent(SevError,"TestFailure", workIface.id())
|
|
|
|
.error(e, true)
|
|
|
|
.detail("Reason", "Error starting workload")
|
|
|
|
.detail("Workload", workload->description());
|
|
|
|
//ok = false;
|
|
|
|
}
|
|
|
|
TraceEvent("TestComplete", workIface.id()).detail("Workload", workload->description()).detail("OK", !startResult.get().isError());
|
|
|
|
printf("%s complete\n", workload->description().c_str());
|
|
|
|
}
|
|
|
|
sendResult( startReq, startResult );
|
|
|
|
}
|
|
|
|
when( ReplyPromise<bool> req = waitNext( workIface.check.getFuture() ) ) {
|
|
|
|
checkReq = req;
|
|
|
|
if (!checkResult.present()) {
|
|
|
|
try {
|
|
|
|
bool check = wait( timeoutError( workload->check(cx), workload->getCheckTimeout() ) );
|
|
|
|
checkResult = (!startResult.present() || !startResult.get().isError()) && check;
|
|
|
|
} catch (Error& e) {
|
|
|
|
checkResult = operation_failed(); // was: checkResult = false;
|
|
|
|
if( e.code() == error_code_please_reboot || e.code() == error_code_please_reboot_delete) throw;
|
|
|
|
TraceEvent(SevError,"TestFailure", workIface.id())
|
|
|
|
.error(e)
|
|
|
|
.detail("Reason", "Error checking workload")
|
|
|
|
.detail("Workload", workload->description());
|
|
|
|
//ok = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sendResult( checkReq, checkResult );
|
|
|
|
}
|
|
|
|
when( ReplyPromise<vector<PerfMetric>> req = waitNext( workIface.metrics.getFuture() ) ) {
|
|
|
|
state ReplyPromise<vector<PerfMetric>> s_req = req;
|
|
|
|
try {
|
|
|
|
vector<PerfMetric> m;
|
|
|
|
workload->getMetrics( m );
|
|
|
|
TraceEvent("WorkloadSendMetrics", workIface.id()).detail( "Count", m.size() );
|
|
|
|
req.send( m );
|
|
|
|
} catch (Error& e) {
|
|
|
|
if( e.code() == error_code_please_reboot || e.code() == error_code_please_reboot_delete) throw;
|
|
|
|
TraceEvent(SevError, "WorkloadSendMetrics", workIface.id()).error(e);
|
|
|
|
s_req.sendError( operation_failed() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
when( ReplyPromise<Void> r = waitNext( workIface.stop.getFuture() ) ) {
|
|
|
|
r.send(Void());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
2017-09-02 03:53:01 +08:00
|
|
|
ACTOR Future<Void> testerServerWorkload( WorkloadRequest work, Reference<ClusterConnectionFile> ccf, Reference<AsyncVar<struct ServerDBInfo>> dbInfo, LocalityData locality ) {
|
2017-05-26 04:48:44 +08:00
|
|
|
state WorkloadInterface workIface;
|
|
|
|
state bool replied = false;
|
|
|
|
state Database cx;
|
|
|
|
try {
|
|
|
|
std::map<std::string, std::string> details;
|
|
|
|
details["Database"] = printable(work.database);
|
|
|
|
details["WorkloadTitle"] = printable(work.title);
|
|
|
|
details["ClientId"] = format("%d", work.clientId);
|
|
|
|
details["ClientCount"] = format("%d", work.clientCount);
|
|
|
|
details["WorkloadTimeout"] = format("%d", work.timeout);
|
|
|
|
startRole(workIface.id(), UID(), "Tester", details);
|
|
|
|
|
|
|
|
Standalone<StringRef> database = work.database;
|
|
|
|
|
|
|
|
if( database.size() ) {
|
|
|
|
Reference<Cluster> cluster = Cluster::createCluster(ccf->getFilename(), -1);
|
2017-09-02 03:53:01 +08:00
|
|
|
Database _cx = wait(cluster->createDatabase(database, locality));
|
2017-05-26 04:48:44 +08:00
|
|
|
cx = _cx;
|
|
|
|
|
|
|
|
Void _ = wait( delay(1.0) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// add test for "done" ?
|
|
|
|
TraceEvent("WorkloadReceived", workIface.id()).detail("Title", printable(work.title) );
|
|
|
|
TestWorkload *workload = getWorkloadIface( work, dbInfo );
|
|
|
|
if(!workload) {
|
|
|
|
TraceEvent("TestCreationError").detail("Reason", "Workload could not be created");
|
|
|
|
fprintf(stderr, "ERROR: The workload could not be created.\n");
|
|
|
|
throw test_specification_invalid();
|
|
|
|
}
|
|
|
|
Future<Void> test = runWorkloadAsync(cx, workIface, workload, work.databasePingDelay);
|
|
|
|
work.reply.send(workIface);
|
|
|
|
replied = true;
|
|
|
|
|
|
|
|
if(work.timeout > 0) {
|
|
|
|
test = timeoutError(test,work.timeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
Void _ = wait(test);
|
|
|
|
|
|
|
|
endRole(workIface.id(), "Tester", "Complete");
|
|
|
|
} catch (Error& e) {
|
|
|
|
if (!replied) {
|
|
|
|
if (e.code() == error_code_test_specification_invalid)
|
|
|
|
work.reply.sendError(e);
|
|
|
|
else
|
|
|
|
work.reply.sendError( operation_failed() );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ok = e.code() == error_code_please_reboot || e.code() == error_code_please_reboot_delete || e.code() == error_code_actor_cancelled;
|
|
|
|
endRole(workIface.id(), "Tester", "Error", ok, e);
|
|
|
|
|
|
|
|
if (e.code() != error_code_test_specification_invalid && e.code() != error_code_timed_out) {
|
|
|
|
throw; // fatal errors will kill the testerServer as well
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
2017-09-02 03:53:01 +08:00
|
|
|
ACTOR Future<Void> testerServerCore( TesterInterface interf, Reference<ClusterConnectionFile> ccf, Reference<AsyncVar<struct ServerDBInfo>> dbInfo, LocalityData locality ) {
|
2017-05-26 04:48:44 +08:00
|
|
|
state PromiseStream<Future<Void>> addWorkload;
|
|
|
|
state Future<Void> workerFatalError = actorCollection(addWorkload.getFuture());
|
|
|
|
|
|
|
|
TraceEvent("StartingTesterServerCore", interf.id());
|
|
|
|
loop choose {
|
|
|
|
when (Void _ = wait(workerFatalError)) {}
|
|
|
|
when (WorkloadRequest work = waitNext( interf.recruitments.getFuture() )) {
|
2017-09-02 03:53:01 +08:00
|
|
|
addWorkload.send(testerServerWorkload(work, ccf, dbInfo, locality));
|
2017-05-26 04:48:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ACTOR Future<Void> clearData( Database cx ) {
|
|
|
|
state Transaction tr( cx );
|
|
|
|
loop {
|
|
|
|
try {
|
|
|
|
// This transaction needs to be self-conflicting, but not conflict consistently with
|
|
|
|
// any other transactions
|
|
|
|
tr.clear( normalKeys );
|
|
|
|
tr.makeSelfConflicting();
|
|
|
|
Version v = wait( tr.getReadVersion() ); // required since we use addReadConflictRange but not get
|
|
|
|
Void _ = wait( tr.commit() );
|
|
|
|
TraceEvent("TesterClearingDatabase").detail("AtVersion", tr.getCommittedVersion());
|
|
|
|
break;
|
|
|
|
} catch (Error& e) {
|
|
|
|
TraceEvent(SevWarn, "TesterClearingDatabaseError").error(e);
|
|
|
|
Void _ = wait( tr.onError(e) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<Void> dumpDatabase( Database const& cx, std::string const& outputFilename, KeyRange const& range );
|
|
|
|
|
|
|
|
int passCount = 0;
|
|
|
|
int failCount = 0;
|
|
|
|
|
|
|
|
vector<PerfMetric> aggregateMetrics( vector<vector<PerfMetric>> metrics ) {
|
|
|
|
std::map<std::string, vector<PerfMetric>> metricMap;
|
|
|
|
for(int i = 0; i < metrics.size(); i++) {
|
|
|
|
vector<PerfMetric> workloadMetrics = metrics[i];
|
|
|
|
TraceEvent("MetricsReturned").detail( "Count", workloadMetrics.size() );
|
|
|
|
for(int m=0; m<workloadMetrics.size(); m++) {
|
|
|
|
printf( "Metric (%d, %d): %s, %f, %s\n", i, m, workloadMetrics[m].name().c_str(),
|
|
|
|
workloadMetrics[m].value(), workloadMetrics[m].formatted().c_str() );
|
|
|
|
metricMap[workloadMetrics[m].name()].push_back( workloadMetrics[m] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TraceEvent("Metric")
|
|
|
|
.detail( "Name", "Reporting Clients" )
|
|
|
|
.detail( "Value", (double)metrics.size() )
|
|
|
|
.detail( "Formatted", format("%d", metrics.size()).c_str() );
|
|
|
|
|
|
|
|
vector<PerfMetric> result;
|
|
|
|
std::map<std::string, vector<PerfMetric>>::iterator it;
|
|
|
|
for( it = metricMap.begin(); it != metricMap.end(); it++ ) {
|
|
|
|
auto& vec = it->second;
|
|
|
|
if( !vec.size() )
|
|
|
|
continue;
|
|
|
|
double sum = 0;
|
|
|
|
for(int i = 0; i < vec.size(); i++ )
|
|
|
|
sum += vec[i].value();
|
|
|
|
if( vec[0].averaged() && vec.size() )
|
|
|
|
sum /= vec.size();
|
|
|
|
result.push_back( PerfMetric( vec[0].name(), sum, false, vec[0].format_code() ) );
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void logMetrics( vector<PerfMetric> metrics ) {
|
|
|
|
for(int idx=0; idx < metrics.size(); idx++ )
|
|
|
|
TraceEvent("Metric")
|
|
|
|
.detail( "Name", metrics[idx].name() )
|
|
|
|
.detail( "Value", metrics[idx].value() )
|
|
|
|
.detail( "Formatted", format(metrics[idx].format_code().c_str(), metrics[idx].value() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
ACTOR Future<DistributedTestResults> runWorkload( Database cx, std::vector< TesterInterface > testers,
|
|
|
|
StringRef database, TestSpec spec ) {
|
|
|
|
// FIXME: Fault tolerance for test workers (handle nonresponse or broken_promise from each getReply below)
|
|
|
|
TraceEvent("TestRunning").detail( "WorkloadTitle", printable(spec.title) )
|
|
|
|
.detail("TesterCount", testers.size()).detail("Phases", spec.phases)
|
|
|
|
.detail("TestTimeout", spec.timeout)
|
|
|
|
.detail("Database", printable( database ));
|
|
|
|
state vector< Future< WorkloadInterface > > workRequests;
|
|
|
|
state vector<vector<PerfMetric>> metricsResults;
|
|
|
|
|
|
|
|
state int i = 0;
|
|
|
|
state int success = 0;
|
|
|
|
state int failure = 0;
|
|
|
|
int64_t sharedRandom = g_random->randomInt64(0,10000000);
|
|
|
|
for(; i < testers.size(); i++) {
|
|
|
|
WorkloadRequest req;
|
|
|
|
req.title = spec.title;
|
|
|
|
req.database = database;
|
|
|
|
req.timeout = spec.timeout;
|
|
|
|
req.databasePingDelay = spec.databasePingDelay;
|
|
|
|
req.options = spec.options;
|
|
|
|
req.clientId = i;
|
|
|
|
req.clientCount = testers.size();
|
|
|
|
req.sharedRandomNumber = sharedRandom;
|
|
|
|
workRequests.push_back( testers[i].recruitments.getReply( req ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
state vector< WorkloadInterface > workloads = wait( getAll( workRequests ) );
|
|
|
|
|
|
|
|
if( g_network->isSimulated() && spec.simCheckRelocationDuration )
|
|
|
|
debug_setCheckRelocationDuration( true );
|
|
|
|
|
|
|
|
if( spec.phases & TestWorkload::SETUP ) {
|
|
|
|
std::vector< Future<Void> > setups;
|
|
|
|
printf("setting up test (%s)...\n", printable(spec.title).c_str());
|
|
|
|
TraceEvent("TestSetupStart").detail("WorkloadTitle", printable(spec.title));
|
|
|
|
for(int i= 0; i < workloads.size(); i++)
|
|
|
|
setups.push_back( workloads[i].setup.template getReply<Void>() );
|
|
|
|
Void _ = wait( waitForAll( setups ) );
|
|
|
|
TraceEvent("TestSetupComplete").detail("WorkloadTitle", printable(spec.title));
|
|
|
|
}
|
|
|
|
|
|
|
|
if( spec.phases & TestWorkload::EXECUTION ) {
|
|
|
|
TraceEvent("TestStarting").detail("WorkloadTitle", printable(spec.title));
|
|
|
|
printf("running test...\n");
|
|
|
|
std::vector< Future<Void> > starts;
|
|
|
|
for(int i= 0; i < workloads.size(); i++)
|
|
|
|
starts.push_back( workloads[i].start.template getReply<Void>() );
|
|
|
|
Void _ = wait( waitForAll( starts ) );
|
|
|
|
printf("%s complete\n", printable(spec.title).c_str());
|
|
|
|
TraceEvent("TestComplete").detail("WorkloadTitle", printable(spec.title));
|
|
|
|
}
|
|
|
|
|
|
|
|
if( spec.phases & TestWorkload::CHECK ) {
|
|
|
|
if( spec.useDB && ( spec.phases & TestWorkload::EXECUTION ) ) {
|
|
|
|
Void _ = wait( delay(3.0) );
|
|
|
|
}
|
|
|
|
|
|
|
|
state std::vector< Future<bool> > checks;
|
|
|
|
TraceEvent("CheckingResults");
|
|
|
|
printf("checking tests...\n");
|
|
|
|
for(int i= 0; i < workloads.size(); i++)
|
|
|
|
checks.push_back( workloads[i].check.template getReply<bool>() );
|
|
|
|
Void _ = wait( waitForAll( checks ) );
|
|
|
|
|
|
|
|
for(int i = 0; i < checks.size(); i++) {
|
|
|
|
if(checks[i].get())
|
|
|
|
success++;
|
|
|
|
else
|
|
|
|
failure++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( spec.phases & TestWorkload::METRICS ) {
|
|
|
|
state std::vector< Future<vector<PerfMetric>> > metricTasks;
|
|
|
|
printf("fetching metrics...\n");
|
|
|
|
TraceEvent("TestFetchingMetrics").detail("WorkloadTitle", printable(spec.title));
|
|
|
|
for(int i= 0; i < workloads.size(); i++)
|
|
|
|
metricTasks.push_back( workloads[i].metrics.template getReply<vector<PerfMetric>>() );
|
|
|
|
Void _ = wait( waitForAllReady( metricTasks ) );
|
|
|
|
int failedMetrics = 0;
|
|
|
|
for(int i = 0; i < metricTasks.size(); i++) {
|
|
|
|
if(!metricTasks[i].isError())
|
|
|
|
metricsResults.push_back( metricTasks[i].get() );
|
|
|
|
else
|
|
|
|
TraceEvent(SevError, "TestFailure")
|
|
|
|
.error(metricTasks[i].getError())
|
2018-08-02 05:30:57 +08:00
|
|
|
.detail("Reason", "Metrics not retrieved")
|
2017-05-26 04:48:44 +08:00
|
|
|
.detail("From", workloads[i].metrics.getEndpoint().address);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stopping the workloads is unreliable, but they have a timeout
|
|
|
|
// FIXME: stop if one of the above phases throws an exception
|
|
|
|
for(int i=0; i<workloads.size(); i++)
|
|
|
|
workloads[i].stop.send(ReplyPromise<Void>());
|
|
|
|
|
|
|
|
return DistributedTestResults( aggregateMetrics( metricsResults ), success, failure );
|
|
|
|
}
|
|
|
|
|
|
|
|
//Sets the database configuration by running the ChangeConfig workload
|
|
|
|
ACTOR Future<Void> changeConfiguration(Database cx, std::vector< TesterInterface > testers, StringRef database, StringRef configMode) {
|
|
|
|
state TestSpec spec;
|
|
|
|
Standalone<VectorRef<KeyValueRef>> options;
|
|
|
|
spec.title = LiteralStringRef("ChangeConfig");
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("testName"), LiteralStringRef("ChangeConfig")));
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("configMode"), configMode));
|
|
|
|
spec.options.push_back_deep(spec.options.arena(), options);
|
|
|
|
|
|
|
|
DistributedTestResults testResults = wait(runWorkload(cx, testers, database, spec));
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
|
|
|
//Runs the consistency check workload, which verifies that the database is in a consistent state
|
2018-07-09 09:25:01 +08:00
|
|
|
ACTOR Future<Void> checkConsistency(Database cx, std::vector< TesterInterface > testers, StringRef database, bool doQuiescentCheck,
|
|
|
|
double quiescentWaitTimeout, double softTimeLimit, double databasePingDelay, Reference<AsyncVar<ServerDBInfo>> dbInfo) {
|
2017-05-26 04:48:44 +08:00
|
|
|
state TestSpec spec;
|
|
|
|
|
2017-09-19 03:46:29 +08:00
|
|
|
state double connectionFailures;
|
2017-05-26 04:48:44 +08:00
|
|
|
if( g_network->isSimulated() ) {
|
2017-09-19 03:46:29 +08:00
|
|
|
connectionFailures = g_simulator.connectionFailuresDisableDuration;
|
|
|
|
g_simulator.connectionFailuresDisableDuration = 1e6;
|
2017-05-26 04:48:44 +08:00
|
|
|
g_simulator.speedUpSimulation = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Standalone<VectorRef<KeyValueRef>> options;
|
|
|
|
spec.title = LiteralStringRef("ConsistencyCheck");
|
|
|
|
spec.databasePingDelay = databasePingDelay;
|
|
|
|
spec.timeout = 32000;
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("testName"), LiteralStringRef("ConsistencyCheck")));
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("performQuiescentChecks"), ValueRef(format("%s", LiteralStringRef(doQuiescentCheck ? "true" : "false").toString().c_str()))));
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("quiescentWaitTimeout"), ValueRef(format("%f", quiescentWaitTimeout))));
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("distributed"), LiteralStringRef("false")));
|
|
|
|
spec.options.push_back_deep(spec.options.arena(), options);
|
|
|
|
|
|
|
|
state double start = now();
|
|
|
|
state bool lastRun = false;
|
|
|
|
loop {
|
|
|
|
DistributedTestResults testResults = wait(runWorkload(cx, testers, database, spec));
|
|
|
|
if(testResults.ok() || lastRun) {
|
|
|
|
if( g_network->isSimulated() ) {
|
2017-09-19 03:46:29 +08:00
|
|
|
g_simulator.connectionFailuresDisableDuration = connectionFailures;
|
2017-05-26 04:48:44 +08:00
|
|
|
}
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
if(now() - start > softTimeLimit) {
|
|
|
|
spec.options[0].push_back_deep(spec.options.arena(), KeyValueRef(LiteralStringRef("failureIsError"), LiteralStringRef("true")));
|
|
|
|
lastRun = true;
|
|
|
|
}
|
2018-07-17 01:06:57 +08:00
|
|
|
Void _ = wait( repairDeadDatacenter(cx, dbInfo, "ConsistencyCheck") );
|
2017-05-26 04:48:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-09 09:25:01 +08:00
|
|
|
ACTOR Future<bool> runTest( Database cx, std::vector< TesterInterface > testers, StringRef database, TestSpec spec, Reference<AsyncVar<ServerDBInfo>> dbInfo )
|
2017-05-26 04:48:44 +08:00
|
|
|
{
|
|
|
|
state DistributedTestResults testResults;
|
|
|
|
|
|
|
|
try {
|
|
|
|
Future<DistributedTestResults> fTestResults = runWorkload( cx, testers, database, spec );
|
|
|
|
if( spec.timeout > 0 ) {
|
|
|
|
fTestResults = timeoutError( fTestResults, spec.timeout );
|
|
|
|
}
|
|
|
|
DistributedTestResults _testResults = wait( fTestResults );
|
|
|
|
testResults = _testResults;
|
|
|
|
logMetrics( testResults.metrics );
|
|
|
|
} catch(Error& e) {
|
|
|
|
if( e.code() == error_code_timed_out ) {
|
2018-08-02 05:30:57 +08:00
|
|
|
TraceEvent(SevError, "TestFailure").error(e).detail("Reason", "Test timed out").detail("Timeout", spec.timeout);
|
2017-05-26 04:48:44 +08:00
|
|
|
fprintf(stderr, "ERROR: Test timed out after %d seconds.\n", spec.timeout);
|
|
|
|
testResults.failures = testers.size();
|
|
|
|
testResults.successes = 0;
|
|
|
|
} else
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
state bool ok = testResults.ok();
|
|
|
|
|
|
|
|
if( spec.useDB ) {
|
|
|
|
if( spec.dumpAfterTest ) {
|
|
|
|
try {
|
|
|
|
Void _ = wait( timeoutError( dumpDatabase( cx, "dump after " + printable(spec.title) + ".html", allKeys ), 30.0 ) );
|
|
|
|
} catch (Error& e) {
|
2018-08-02 05:30:57 +08:00
|
|
|
TraceEvent(SevError, "TestFailure").error(e).detail("Reason", "Unable to dump database");
|
2017-05-26 04:48:44 +08:00
|
|
|
ok = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Void _ = wait( delay(1.0) );
|
|
|
|
}
|
|
|
|
|
|
|
|
//Run the consistency check workload
|
2018-02-14 09:01:34 +08:00
|
|
|
if(spec.runConsistencyCheck) {
|
2017-05-26 04:48:44 +08:00
|
|
|
try {
|
|
|
|
bool quiescent = g_network->isSimulated() ? !BUGGIFY : spec.waitForQuiescenceEnd;
|
2018-07-09 09:25:01 +08:00
|
|
|
Void _ = wait(timeoutError(checkConsistency(cx, testers, database, quiescent, 10000.0, 18000, spec.databasePingDelay, dbInfo), 20000.0));
|
2017-05-26 04:48:44 +08:00
|
|
|
}
|
|
|
|
catch(Error& e) {
|
2018-08-02 05:30:57 +08:00
|
|
|
TraceEvent(SevError, "TestFailure").error(e).detail("Reason", "Unable to perform consistency check");
|
2017-05-26 04:48:44 +08:00
|
|
|
ok = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TraceEvent(ok ? SevInfo : SevWarnAlways, "TestResults")
|
|
|
|
.detail("Workload", printable(spec.title))
|
|
|
|
.detail("Passed", (int)ok);
|
|
|
|
//.detail("Metrics", metricSummary);
|
|
|
|
|
|
|
|
if (ok) { passCount++; }
|
|
|
|
else { failCount++; }
|
|
|
|
|
|
|
|
printf("%d test clients passed; %d test clients failed\n", testResults.successes, testResults.failures);
|
|
|
|
|
|
|
|
if( spec.useDB && spec.clearAfterTest ) {
|
|
|
|
try {
|
|
|
|
TraceEvent("TesterClearingDatabase");
|
|
|
|
Void _ = wait( timeoutError(clearData(cx), 1000.0) );
|
|
|
|
} catch (Error& e) {
|
|
|
|
TraceEvent(SevError, "ErrorClearingDatabaseAfterTest").error(e);
|
|
|
|
throw; // If we didn't do this, we don't want any later tests to run on this DB
|
|
|
|
}
|
|
|
|
|
|
|
|
Void _ = wait( delay(1.0) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
vector<TestSpec> readTests( ifstream& ifs ) {
|
|
|
|
TestSpec spec;
|
|
|
|
vector<TestSpec> result;
|
|
|
|
Standalone< VectorRef< KeyValueRef > > workloadOptions;
|
|
|
|
std::string cline;
|
|
|
|
|
|
|
|
while( ifs.good() ) {
|
|
|
|
getline(ifs, cline);
|
|
|
|
string line = removeWhitespace( string(cline) );
|
|
|
|
if( !line.size() || line.find( ';' ) == 0 )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
size_t found = line.find( '=' );
|
|
|
|
if( found == string::npos )
|
|
|
|
// hmmm, not good
|
|
|
|
continue;
|
|
|
|
string attrib = removeWhitespace(line.substr( 0, found ));
|
|
|
|
string value = removeWhitespace(line.substr( found + 1 ));
|
|
|
|
|
|
|
|
if( attrib == "testTitle" ) {
|
|
|
|
if( workloadOptions.size() ) {
|
|
|
|
spec.options.push_back_deep( spec.options.arena(), workloadOptions );
|
|
|
|
workloadOptions = Standalone< VectorRef< KeyValueRef > >();
|
|
|
|
}
|
|
|
|
if( spec.options.size() && spec.title.size() ) {
|
|
|
|
result.push_back( spec );
|
|
|
|
spec = TestSpec();
|
|
|
|
}
|
|
|
|
|
|
|
|
spec.title = StringRef( value );
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedTest", printable( spec.title ));
|
|
|
|
} else if( attrib == "timeout" ) {
|
|
|
|
sscanf( value.c_str(), "%d", &(spec.timeout) );
|
|
|
|
ASSERT( spec.timeout > 0 );
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedTimeout", spec.timeout);
|
|
|
|
} else if( attrib == "databasePingDelay" ) {
|
|
|
|
double databasePingDelay;
|
|
|
|
sscanf( value.c_str(), "%lf", &databasePingDelay );
|
|
|
|
ASSERT( databasePingDelay >= 0 );
|
|
|
|
if( !spec.useDB && databasePingDelay > 0 ) {
|
|
|
|
TraceEvent(SevError, "TestParserError")
|
|
|
|
.detail("Reason", "Cannot have non-zero ping delay on test that does not use database")
|
|
|
|
.detail("PingDelay", databasePingDelay).detail("UseDB", spec.useDB);
|
|
|
|
ASSERT( false );
|
|
|
|
}
|
|
|
|
spec.databasePingDelay = databasePingDelay;
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedPingDelay", spec.databasePingDelay);
|
|
|
|
} else if( attrib == "runSetup" ) {
|
|
|
|
spec.phases = TestWorkload::EXECUTION | TestWorkload::CHECK | TestWorkload::METRICS;
|
|
|
|
if( value == "true" )
|
|
|
|
spec.phases |= TestWorkload::SETUP;
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedSetupFlag", (spec.phases & TestWorkload::SETUP) != 0);
|
|
|
|
} else if( attrib == "dumpAfterTest" ) {
|
|
|
|
spec.dumpAfterTest = ( value == "true" );
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedDumpAfter", spec.dumpAfterTest);
|
|
|
|
} else if( attrib == "clearAfterTest" ) {
|
|
|
|
spec.clearAfterTest = ( value == "true" );
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedClearAfter", spec.clearAfterTest);
|
|
|
|
} else if( attrib == "useDB" ) {
|
|
|
|
spec.useDB = ( value == "true" );
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedUseDB", spec.useDB);
|
|
|
|
if( !spec.useDB )
|
|
|
|
spec.databasePingDelay = 0.0;
|
|
|
|
} else if( attrib == "startDelay" ) {
|
|
|
|
sscanf( value.c_str(), "%lf", &spec.startDelay );
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedStartDelay", spec.startDelay);
|
|
|
|
} else if( attrib == "runConsistencyCheck" ) {
|
|
|
|
spec.runConsistencyCheck = ( value == "true" );
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedRunConsistencyCheck", spec.runConsistencyCheck);
|
|
|
|
} else if( attrib == "waitForQuiescence" ) {
|
|
|
|
bool toWait = value == "true";
|
|
|
|
spec.waitForQuiescenceBegin = toWait;
|
|
|
|
spec.waitForQuiescenceEnd = toWait;
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedWaitForQuiescence", toWait);
|
|
|
|
} else if( attrib == "waitForQuiescenceBegin" ) {
|
|
|
|
bool toWait = value == "true";
|
|
|
|
spec.waitForQuiescenceBegin = toWait;
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedWaitForQuiescenceBegin", toWait);
|
|
|
|
} else if( attrib == "waitForQuiescenceEnd" ) {
|
|
|
|
bool toWait = value == "true";
|
|
|
|
spec.waitForQuiescenceEnd = toWait;
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedWaitForQuiescenceEnd", toWait);
|
|
|
|
} else if( attrib == "simCheckRelocationDuration" ) {
|
|
|
|
spec.simCheckRelocationDuration = (value == "true");
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedSimCheckRelocationDuration", spec.simCheckRelocationDuration);
|
2017-09-19 03:46:29 +08:00
|
|
|
} else if( attrib == "connectionFailuresDisableDuration" ) {
|
|
|
|
double connectionFailuresDisableDuration;
|
|
|
|
sscanf( value.c_str(), "%lf", &connectionFailuresDisableDuration );
|
|
|
|
ASSERT( connectionFailuresDisableDuration >= 0 );
|
|
|
|
spec.simConnectionFailuresDisableDuration = connectionFailuresDisableDuration;
|
|
|
|
if(g_network->isSimulated())
|
|
|
|
g_simulator.connectionFailuresDisableDuration = spec.simConnectionFailuresDisableDuration;
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedSimConnectionFailuresDisableDuration", spec.simConnectionFailuresDisableDuration);
|
2017-05-26 04:48:44 +08:00
|
|
|
} else if( attrib == "simBackupAgents" ) {
|
2018-02-21 05:22:31 +08:00
|
|
|
if (value == "BackupToFile" || value == "BackupToFileAndDB")
|
2017-05-26 04:48:44 +08:00
|
|
|
spec.simBackupAgents = ISimulator::BackupToFile;
|
|
|
|
else
|
|
|
|
spec.simBackupAgents = ISimulator::NoBackupAgents;
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedSimBackupAgents", spec.simBackupAgents);
|
2018-02-21 05:22:31 +08:00
|
|
|
|
|
|
|
if (value == "BackupToDB" || value == "BackupToFileAndDB")
|
|
|
|
spec.simDrAgents = ISimulator::BackupToDB;
|
|
|
|
else
|
|
|
|
spec.simDrAgents = ISimulator::NoBackupAgents;
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedSimDrAgents", spec.simDrAgents);
|
2017-05-26 04:48:44 +08:00
|
|
|
} else if( attrib == "extraDB" ) {
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedExtraDB", "");
|
2017-09-16 08:55:01 +08:00
|
|
|
} else if( attrib == "minimumReplication" ) {
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedMinimumReplication", "");
|
|
|
|
} else if( attrib == "buggify" ) {
|
|
|
|
TraceEvent("TestParserTest").detail("ParsedBuggify", "");
|
2017-05-26 04:48:44 +08:00
|
|
|
} else if( attrib == "checkOnly" ) {
|
|
|
|
if(value == "true")
|
|
|
|
spec.phases = TestWorkload::CHECK;
|
|
|
|
} else if( attrib == "StderrSeverity" ) {
|
2018-06-09 01:24:12 +08:00
|
|
|
TraceEvent("StderrSeverity").detail("NewSeverity", value);
|
2017-05-26 04:48:44 +08:00
|
|
|
}
|
|
|
|
else if (attrib == "ClientInfoLogging") {
|
|
|
|
if (value == "false") {
|
|
|
|
setNetworkOption(FDBNetworkOptions::DISABLE_CLIENT_STATISTICS_LOGGING);
|
|
|
|
}
|
|
|
|
// else { } It is enable by default for tester
|
|
|
|
TraceEvent("TestParserTest").detail("ClientInfoLogging", value);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if( attrib == "testName" ) {
|
|
|
|
if( workloadOptions.size() ) {
|
|
|
|
TraceEvent("TestParserFlush").detail("Reason", "new (compound) test");
|
|
|
|
spec.options.push_back_deep( spec.options.arena(), workloadOptions );
|
|
|
|
workloadOptions = Standalone< VectorRef< KeyValueRef > >();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
workloadOptions.push_back_deep( workloadOptions.arena(),
|
|
|
|
KeyValueRef( StringRef( attrib ), StringRef( value ) ) );
|
|
|
|
TraceEvent("TestParserOption").detail("ParsedKey", attrib).detail("ParsedValue", value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( workloadOptions.size() )
|
|
|
|
spec.options.push_back_deep( spec.options.arena(), workloadOptions );
|
|
|
|
if( spec.options.size() && spec.title.size() ) {
|
|
|
|
result.push_back( spec );
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-09-02 03:53:01 +08:00
|
|
|
ACTOR Future<Void> runTests( Reference<AsyncVar<Optional<struct ClusterControllerFullInterface>>> cc, Reference<AsyncVar<Optional<struct ClusterInterface>>> ci, vector< TesterInterface > testers, vector<TestSpec> tests, StringRef startingConfiguration, LocalityData locality ) {
|
2017-05-26 04:48:44 +08:00
|
|
|
state Standalone<StringRef> database = LiteralStringRef("DB");
|
|
|
|
state Database cx;
|
|
|
|
state Reference<AsyncVar<ServerDBInfo>> dbInfo( new AsyncVar<ServerDBInfo> );
|
|
|
|
state Future<Void> ccMonitor = monitorServerDBInfo( cc, Reference<ClusterConnectionFile>(), LocalityData(), dbInfo ); // FIXME: locality
|
|
|
|
|
|
|
|
state bool useDB = false;
|
|
|
|
state bool waitForQuiescenceBegin = false;
|
|
|
|
state bool waitForQuiescenceEnd = false;
|
|
|
|
state double startDelay = 0.0;
|
|
|
|
state double databasePingDelay = 1e9;
|
|
|
|
state ISimulator::BackupAgentType simBackupAgents = ISimulator::NoBackupAgents;
|
2018-02-21 05:22:31 +08:00
|
|
|
state ISimulator::BackupAgentType simDrAgents = ISimulator::NoBackupAgents;
|
2017-05-26 04:48:44 +08:00
|
|
|
if (tests.empty()) useDB = true;
|
|
|
|
for( auto iter = tests.begin(); iter != tests.end(); ++iter ) {
|
|
|
|
if( iter->useDB ) useDB = true;
|
|
|
|
if( iter->waitForQuiescenceBegin ) waitForQuiescenceBegin = true;
|
|
|
|
if( iter->waitForQuiescenceEnd ) waitForQuiescenceEnd = true;
|
|
|
|
startDelay = std::max( startDelay, iter->startDelay );
|
|
|
|
databasePingDelay = std::min( databasePingDelay, iter->databasePingDelay );
|
|
|
|
if (iter->simBackupAgents != ISimulator::NoBackupAgents) simBackupAgents = iter->simBackupAgents;
|
2018-02-21 05:22:31 +08:00
|
|
|
|
|
|
|
if (iter->simDrAgents != ISimulator::NoBackupAgents) {
|
|
|
|
simDrAgents = iter->simDrAgents;
|
|
|
|
}
|
2017-05-26 04:48:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (g_network->isSimulated()) {
|
|
|
|
g_simulator.backupAgents = simBackupAgents;
|
2018-02-21 05:22:31 +08:00
|
|
|
g_simulator.drAgents = simDrAgents;
|
2017-05-26 04:48:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// turn off the database ping functionality if the suite of tests are not going to be using the database
|
|
|
|
if( !useDB )
|
|
|
|
databasePingDelay = 0.0;
|
|
|
|
|
|
|
|
if (useDB) {
|
2017-09-02 03:53:01 +08:00
|
|
|
Database _cx = wait( DatabaseContext::createDatabase( ci, Reference<Cluster>(), database, locality ) );
|
2017-05-26 04:48:44 +08:00
|
|
|
cx = _cx;
|
|
|
|
} else
|
|
|
|
database = LiteralStringRef("");
|
|
|
|
|
2018-02-19 04:59:43 +08:00
|
|
|
state Future<Void> disabler = disableConnectionFailuresAfter(450, "Tester");
|
|
|
|
|
2017-05-26 04:48:44 +08:00
|
|
|
//Change the configuration (and/or create the database) if necessary
|
|
|
|
if(useDB && startingConfiguration != StringRef()) {
|
|
|
|
try {
|
|
|
|
Void _ = wait(timeoutError(changeConfiguration(cx, testers, database, startingConfiguration), 2000.0));
|
|
|
|
}
|
|
|
|
catch(Error& e) {
|
2018-08-02 05:30:57 +08:00
|
|
|
TraceEvent(SevError, "TestFailure").error(e).detail("Reason", "Unable to set starting configuration");
|
2017-05-26 04:48:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:01:34 +08:00
|
|
|
if (useDB && waitForQuiescenceBegin) {
|
2017-05-26 04:48:44 +08:00
|
|
|
TraceEvent("TesterStartingPreTestChecks").detail("DatabasePingDelay", databasePingDelay).detail("StartDelay", startDelay);
|
|
|
|
try {
|
|
|
|
Void _ = wait( quietDatabase( cx, dbInfo, "Start") ||
|
|
|
|
( databasePingDelay == 0.0 ? Never() : testDatabaseLiveness( cx, databasePingDelay, "QuietDatabaseStart", startDelay ) ) );
|
|
|
|
} catch( Error& e ) {
|
2018-08-02 05:30:57 +08:00
|
|
|
TraceEvent("QuietDatabaseStartExternalError").error(e);
|
2017-05-26 04:48:44 +08:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TraceEvent("TestsExpectedToPass").detail("Count", tests.size());
|
|
|
|
state int idx = 0;
|
|
|
|
for(; idx < tests.size(); idx++ ) {
|
2018-07-09 09:25:01 +08:00
|
|
|
bool ok = wait( runTest( cx, testers, database, tests[idx], dbInfo ) );
|
2017-05-26 04:48:44 +08:00
|
|
|
// do we handle a failure here?
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("\n%d tests passed; %d tests failed, waiting for DD to end...\n\n", passCount, failCount);
|
|
|
|
|
|
|
|
//If the database was deleted during the workload we need to recreate the database
|
2018-02-14 09:01:34 +08:00
|
|
|
if(tests.empty() || useDB) {
|
2017-05-26 04:48:44 +08:00
|
|
|
if(waitForQuiescenceEnd) {
|
|
|
|
try {
|
2018-01-15 04:50:52 +08:00
|
|
|
Void _ = wait( quietDatabase( cx, dbInfo, "End", 0, 2e6, 2e6 ) ||
|
2017-05-26 04:48:44 +08:00
|
|
|
( databasePingDelay == 0.0 ? Never() : testDatabaseLiveness( cx, databasePingDelay, "QuietDatabaseEnd" ) ) );
|
|
|
|
} catch( Error& e ) {
|
2018-08-02 05:30:57 +08:00
|
|
|
TraceEvent("QuietDatabaseEndExternalError").error(e);
|
2017-05-26 04:48:44 +08:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
|
|
|
ACTOR Future<Void> runTests( Reference<AsyncVar<Optional<struct ClusterControllerFullInterface>>> cc,
|
|
|
|
Reference<AsyncVar<Optional<struct ClusterInterface>>> ci, vector<TestSpec> tests, test_location_t at,
|
2017-09-02 03:53:01 +08:00
|
|
|
int minTestersExpected, StringRef startingConfiguration, LocalityData locality ) {
|
2017-10-25 06:16:34 +08:00
|
|
|
state int flags = (at == TEST_ON_SERVERS ? 0 : GetWorkersRequest::TESTER_CLASS_ONLY) | GetWorkersRequest::NON_EXCLUDED_PROCESSES_ONLY;
|
2018-05-06 08:20:48 +08:00
|
|
|
state Future<Void> testerTimeout = delay(600.0); // wait 600 sec for testers to show up
|
2017-05-26 04:48:44 +08:00
|
|
|
state vector<std::pair<WorkerInterface, ProcessClass>> workers;
|
|
|
|
|
|
|
|
loop {
|
|
|
|
choose {
|
|
|
|
when( vector<std::pair<WorkerInterface, ProcessClass>> w = wait( cc->get().present() ? brokenPromiseToNever( cc->get().get().getWorkers.getReply( GetWorkersRequest( flags ) ) ) : Never() ) ) {
|
|
|
|
if (w.size() >= minTestersExpected) {
|
|
|
|
workers = w;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Void _ = wait( delay(SERVER_KNOBS->WORKER_POLL_DELAY) );
|
|
|
|
}
|
|
|
|
when( Void _ = wait( cc->onChange() ) ) {}
|
|
|
|
when( Void _ = wait( testerTimeout ) ) {
|
|
|
|
TraceEvent(SevError, "TesterRecruitmentTimeout");
|
|
|
|
throw timed_out();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
vector<TesterInterface> ts;
|
|
|
|
for(int i=0; i<workers.size(); i++)
|
|
|
|
ts.push_back(workers[i].first.testerInterface);
|
|
|
|
|
2017-09-02 03:53:01 +08:00
|
|
|
Void _ = wait( runTests( cc, ci, ts, tests, startingConfiguration, locality) );
|
2017-05-26 04:48:44 +08:00
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
|
|
|
ACTOR Future<Void> runTests( Reference<ClusterConnectionFile> connFile, test_type_t whatToRun, test_location_t at,
|
2017-09-02 03:53:01 +08:00
|
|
|
int minTestersExpected, std::string fileName, StringRef startingConfiguration, LocalityData locality ) {
|
2017-05-26 04:48:44 +08:00
|
|
|
state vector<TestSpec> testSpecs;
|
|
|
|
Reference<AsyncVar<Optional<ClusterControllerFullInterface>>> cc( new AsyncVar<Optional<ClusterControllerFullInterface>> );
|
|
|
|
Reference<AsyncVar<Optional<ClusterInterface>>> ci( new AsyncVar<Optional<ClusterInterface>> );
|
|
|
|
vector<Future<Void>> actors;
|
2018-06-09 02:11:08 +08:00
|
|
|
actors.push_back( reportErrors(monitorLeader( connFile, cc ), "MonitorLeader") );
|
|
|
|
actors.push_back( reportErrors(extractClusterInterface( cc,ci ),"ExtractClusterInterface") );
|
|
|
|
actors.push_back( reportErrors(failureMonitorClient( ci, false ),"FailureMonitorClient") );
|
2017-05-26 04:48:44 +08:00
|
|
|
|
|
|
|
if(whatToRun == TEST_TYPE_CONSISTENCY_CHECK) {
|
|
|
|
TestSpec spec;
|
|
|
|
Standalone<VectorRef<KeyValueRef>> options;
|
|
|
|
spec.title = LiteralStringRef("ConsistencyCheck");
|
|
|
|
spec.databasePingDelay = 0;
|
|
|
|
spec.timeout = 0;
|
|
|
|
spec.waitForQuiescenceBegin = false;
|
|
|
|
spec.waitForQuiescenceEnd = false;
|
|
|
|
std::string rateLimit = format("%d", CLIENT_KNOBS->CONSISTENCY_CHECK_RATE_LIMIT);
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("testName"), LiteralStringRef("ConsistencyCheck")));
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("performQuiescentChecks"), LiteralStringRef("false")));
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("distributed"), LiteralStringRef("false")));
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("failureIsError"), LiteralStringRef("true")));
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("indefinite"), LiteralStringRef("true")));
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("rateLimit"), StringRef(rateLimit)));
|
|
|
|
options.push_back_deep(options.arena(), KeyValueRef(LiteralStringRef("shuffleShards"), LiteralStringRef("true")));
|
|
|
|
spec.options.push_back_deep(spec.options.arena(), options);
|
|
|
|
testSpecs.push_back(spec);
|
|
|
|
} else {
|
|
|
|
ifstream ifs;
|
|
|
|
ifs.open( fileName.c_str(), ifstream::in );
|
|
|
|
if( !ifs.good() ) {
|
|
|
|
TraceEvent(SevError, "TestHarnessFail").detail("Reason", "file open failed").detail("File", fileName.c_str());
|
|
|
|
fprintf(stderr, "ERROR: Could not open test spec file `%s'\n", fileName.c_str());
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
enableClientInfoLogging(); // Enable Client Info logging by default for tester
|
|
|
|
testSpecs = readTests( ifs );
|
|
|
|
ifs.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<Void> tests;
|
|
|
|
if (at == TEST_HERE) {
|
|
|
|
Reference<AsyncVar<ServerDBInfo>> db( new AsyncVar<ServerDBInfo> );
|
|
|
|
vector<TesterInterface> iTesters(1);
|
2018-06-09 02:11:08 +08:00
|
|
|
actors.push_back( reportErrors(monitorServerDBInfo( cc, Reference<ClusterConnectionFile>(), LocalityData(), db ), "MonitorServerDBInfo") ); // FIXME: Locality
|
|
|
|
actors.push_back( reportErrors(testerServerCore( iTesters[0], connFile, db, locality ), "TesterServerCore") );
|
2017-09-02 03:53:01 +08:00
|
|
|
tests = runTests( cc, ci, iTesters, testSpecs, startingConfiguration, locality );
|
2017-05-26 04:48:44 +08:00
|
|
|
} else {
|
2018-06-09 02:11:08 +08:00
|
|
|
tests = reportErrors(runTests(cc, ci, testSpecs, at, minTestersExpected, startingConfiguration, locality), "RunTests");
|
2017-05-26 04:48:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
choose {
|
|
|
|
when (Void _ = wait(tests)) { return Void(); }
|
|
|
|
when (Void _ = wait(quorum(actors, 1))) { ASSERT(false); throw internal_error(); }
|
|
|
|
}
|
|
|
|
}
|