| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // Copyright 2015 rain1017.
- //
- // 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. See the AUTHORS file
- // for names of contributors.
- 'use strict';
- var should = require('should');
- var path = require('path');
- var child_process = require('child_process');
- var quick = require('../lib');
- var logger = quick.logger.getLogger('test', __filename);
- var P = quick.Promise;
- P.longStackTraces();
- var execMemdbClusterSync = function(cmd){
- var configPath = path.join(__dirname, 'memdb.conf.js');
- var output = child_process.execFileSync('memdbcluster', [cmd, '--conf=' + configPath]);
- logger.info(output.toString());
- };
- exports.initMemdbSync = function(){
- execMemdbClusterSync('drop');
- execMemdbClusterSync('start');
- };
- exports.closeMemdbSync = function(){
- execMemdbClusterSync('stop');
- };
- exports.memdbConfig = {
- backend : {
- engine : 'mongodb',
- url : 'mongodb://localhost/quick-pomelo-test',
- options : {},
- },
- shards : {
- area1 : {
- host : '127.0.0.1',
- port : 32017,
- }
- },
- modelsPath : 'lib/models',
- };
|