| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- // 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('quick-pomelo');
- var P = quick.Promise;
- var logger = quick.logger.getLogger('test', __filename);
- 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 : {
- 'player-server-1' : {
- host : '127.0.0.1',
- port : 32017,
- },
- 'area-server-1' : {
- host : '127.0.0.1',
- port : 32017,
- },
- 'team-server-1' : {
- host : '127.0.0.1',
- port : 32017,
- },
- },
- };
- exports.createApp = function(serverId, serverType){
- var app = quick.mocks.app({serverId : serverId, serverType : serverType});
- app.setBase(path.join(__dirname, '..'));
- app.set('memdbConfig', exports.memdbConfig);
- app.load(quick.components.memdb);
- app.load(quick.components.controllers);
- return app;
- };
|