mirror of
https://github.com/eggjs/egg.git
synced 2024-12-04 07:14:30 +00:00
33 lines
811 B
JavaScript
33 lines
811 B
JavaScript
'use strict';
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const assert = require('assert');
|
|
const sleep = require('mz-modules/sleep');
|
|
const utils = require('../../utils');
|
|
|
|
describe('test/lib/cluster/cluster-client-error.test.js', () => {
|
|
let app;
|
|
before(async () => {
|
|
app = utils.app('apps/cluster-client-error');
|
|
|
|
let err;
|
|
try {
|
|
await app.ready();
|
|
} catch (e) {
|
|
err = e;
|
|
}
|
|
assert(err);
|
|
});
|
|
|
|
it('should close even if app throw error', () => {
|
|
return app.close();
|
|
});
|
|
|
|
it('should follower not throw error', async () => {
|
|
await sleep(1000);
|
|
const cnt = fs.readFileSync(path.join(__dirname, '../../fixtures/apps/cluster-client-error/logs/cluster-client-error/common-error.log'), 'utf8');
|
|
assert(!cnt.includes('ECONNRESET'));
|
|
});
|
|
});
|