8000 fixed path by fceller · Pull Request #14586 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions js/client/modules/@arangodb/testsuites/ldap.js
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ function authenticationLdapTwoLdap(options) {
}

print(CYAN + 'Client LDAP Failover with two ldap servers...' + RESET);
let testCases = [fs.join(testPaths.dualldap, "auth-dualldap.js")];
let testCases = testPaths.dualldap.map(x => fs.join(x, "auth-dualldap.js"));

print('Performing #6 Test: Failover - Scenario 1: two active LDAP servers');
print(opts.dualldap.conf);
Expand Down Expand Up @@ -431,7 +431,7 @@ function authenticationLdapFirstLdap(options) {
});

print(CYAN + 'Client LDAP Failover with first active and second unreachable...' + RESET);
let testCases = [fs.join(testPaths.dualldap, "auth-firstldap.js")];
let testCases = testPaths.dualldap.map(x => fs.join(x, "auth-firstldap.js"));

print('Performing #7 Test: Failover - Scenario 2: first LDAP server active, second LDAP inactive');
print(conf);
Expand Down Expand Up @@ -461,7 +461,7 @@ function authenticationLdapSecondLdap(options) {
});

print(CYAN + 'Client LDAP Failover with second active and first unreachable...' + RESET);
let testCases = [fs.join(testPaths.dualldap, "auth-secondldap.js")];
let testCases = testPaths.dualldap.map(x => fs.join(x, "auth-secondldap.js"));

print('Performing #8 Test: Failover - Scenario 3: first LDAP server inactive, second LDAP server active');
print(conf);
Expand Down Expand Up @@ -500,4 +500,4 @@ exports.setup = function(testFns, defaultFns, opts, fnDocs, optionsDoc, allTestP
for (var i = 0; i < optionsDocumentation.length; i++) {
optionsDoc.push(optionsDocumentation[i]);
}
};
};
0