mirror of https://gitee.com/bigwinds/arangodb
67 lines
2.3 KiB
JavaScript
67 lines
2.3 KiB
JavaScript
/* jshint strict: false, sub: true */
|
|
/* global print, params */
|
|
'use strict';
|
|
|
|
// //////////////////////////////////////////////////////////////////////////////
|
|
// / DISCLAIMER
|
|
// /
|
|
// / Copyright 2019 ArangoDB GmbH, Cologne, Germany
|
|
// /
|
|
// / 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
|
|
// /
|
|
// / http://www.apache.org/licenses/LICENSE-2.0
|
|
// /
|
|
// / 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.
|
|
// /
|
|
// / Copyright holder is ArangoDB GmbH, Cologne, Germany
|
|
// /
|
|
// / @author Jan Christoph Uhde
|
|
// / @author Wilfried Goesgens
|
|
// //////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
// server is started in unicode directory
|
|
|
|
const tu = require('@arangodb/test-utils');
|
|
const fs = require('fs');
|
|
const _ = require('lodash');
|
|
|
|
const functionsDocumentation = {
|
|
'paths': 'paths test for server'
|
|
};
|
|
|
|
const testPaths = {
|
|
'paths_server': [tu.pathForTesting('server/paths')]
|
|
};
|
|
|
|
function paths_server(options) {
|
|
let testCases = tu.scanTestPaths(testPaths.paths_server, options);
|
|
let weirdNames = ['some dog', 'ла́ять', '犬', 'Kläffer'];
|
|
let tmpPath = fs.getTempPath();
|
|
let tmp = fs.join(tmpPath, "x", weirdNames[0], weirdNames[1], weirdNames[2], weirdNames[3]);
|
|
process.env.TMPDIR = tmp;
|
|
process.env.TEMP = tmp;
|
|
process.env.TMP = tmp;
|
|
fs.makeDirectoryRecursive(process.env.TMPDIR);
|
|
let opts = _.clone(options);
|
|
// procdump can't stand weird characters in programm options
|
|
opts.disableMonitor = true;
|
|
let rc = tu.performTests(opts, testCases, fs.join('server_paths', weirdNames[0], weirdNames[1], weirdNames[2], weirdNames[3]), tu.runThere);
|
|
process.env.TMPDIR = tmpPath;
|
|
process.env.TEMP = tmpPath;
|
|
process.env.TMP = tmpPath;
|
|
return rc;
|
|
}
|
|
|
|
exports.setup = function (testFns, defaultFns, opts, fnDocs, optionsDoc, allTestPaths) {
|
|
Object.assign(allTestPaths, testPaths);
|
|
testFns['paths_server'] = paths_server;
|
|
for (var attrname in functionsDocumentation) { fnDocs[attrname] = functionsDocumentation[attrname]; }
|
|
};
|