mirror of https://gitee.com/bigwinds/arangodb
Add dfdb and foxx-manager to testing.js, fix typo
This commit is contained in:
parent
69827a5294
commit
d2b65e13ed
|
@ -8,7 +8,7 @@ directory= @LOCALSTATEDIR@/lib/arangodb3
|
||||||
|
|
||||||
[server]
|
[server]
|
||||||
rest-server = false
|
rest-server = false
|
||||||
authenication = false
|
authentication = false
|
||||||
statistics = false
|
statistics = false
|
||||||
# set number of threads to 1 so we don't have concurrency
|
# set number of threads to 1 so we don't have concurrency
|
||||||
threads = 1
|
threads = 1
|
||||||
|
|
|
@ -71,7 +71,7 @@ const optionsDocumentation = [
|
||||||
' - `skipAql`: if set to true the AQL tests are skipped',
|
' - `skipAql`: if set to true the AQL tests are skipped',
|
||||||
' - `skipArangoBenchNonConnKeepAlive`: if set to true benchmark do not use keep-alive',
|
' - `skipArangoBenchNonConnKeepAlive`: if set to true benchmark do not use keep-alive',
|
||||||
' - `skipArangoBench`: if set to true benchmark tests are skipped',
|
' - `skipArangoBench`: if set to true benchmark tests are skipped',
|
||||||
' - `skipAuthenication : testing authentication and authentication_paramaters will be skipped.',
|
' - `skipAuthentication : testing authentication and authentication_paramaters will be skipped.',
|
||||||
' - `skipBoost`: if set to true the boost unittests are skipped',
|
' - `skipBoost`: if set to true the boost unittests are skipped',
|
||||||
' - `skipConfig`: omit the noisy configuration tests',
|
' - `skipConfig`: omit the noisy configuration tests',
|
||||||
' - `skipFoxxQueues`: omit the test for the foxx queues',
|
' - `skipFoxxQueues`: omit the test for the foxx queues',
|
||||||
|
@ -153,7 +153,7 @@ const optionsDefaults = {
|
||||||
"skipAql": false,
|
"skipAql": false,
|
||||||
"skipArangoBench": false,
|
"skipArangoBench": false,
|
||||||
"skipArangoBenchNonConnKeepAlive": true,
|
"skipArangoBenchNonConnKeepAlive": true,
|
||||||
"skipAuthenication": false,
|
"skipAuthentication": false,
|
||||||
"skipBoost": false,
|
"skipBoost": false,
|
||||||
"skipGeo": false,
|
"skipGeo": false,
|
||||||
"skipLogAnalysis": false,
|
"skipLogAnalysis": false,
|
||||||
|
@ -2215,7 +2215,7 @@ testFuncs.arangobench = function(options) {
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
testFuncs.authentication = function(options) {
|
testFuncs.authentication = function(options) {
|
||||||
if (options.skipAuthenication === true) {
|
if (options.skipAuthentication === true) {
|
||||||
print("skipping Authentication tests!");
|
print("skipping Authentication tests!");
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -2299,7 +2299,7 @@ function checkBodyForJsonToParse(request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
testFuncs.authentication_parameters = function(options) {
|
testFuncs.authentication_parameters = function(options) {
|
||||||
if (options.skipAuthenication === true) {
|
if (options.skipAuthentication === true) {
|
||||||
print(CYAN + "skipping Authentication with parameters tests!" + RESET);
|
print(CYAN + "skipping Authentication with parameters tests!" + RESET);
|
||||||
return {
|
return {
|
||||||
authentication_parameters: {
|
authentication_parameters: {
|
||||||
|
@ -2480,12 +2480,15 @@ testFuncs.config = function(options) {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const ts = ["arangod",
|
const ts = [
|
||||||
|
"arangod",
|
||||||
"arangobench",
|
"arangobench",
|
||||||
"arangodump",
|
"arangodump",
|
||||||
"arangoimp",
|
"arangoimp",
|
||||||
"arangorestore",
|
"arangorestore",
|
||||||
"arangosh"
|
"arangosh",
|
||||||
|
"arango-dfdb",
|
||||||
|
"foxx-manager"
|
||||||
];
|
];
|
||||||
|
|
||||||
print("--------------------------------------------------------------------------------");
|
print("--------------------------------------------------------------------------------");
|
||||||
|
|
Loading…
Reference in New Issue