mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const { test } = require('ava');
 | |
| const proxyquire = require('proxyquire');
 | |
| const express = require('express');
 | |
| 
 | |
| const getApp = proxyquire('./app', {
 | |
|     './routes': {
 | |
|         router: () => express.Router(),
 | |
|     },
 | |
| });
 | |
| 
 | |
| const serverImpl = proxyquire('./server-impl', {
 | |
|     './app': getApp,
 | |
|     './metrics': {
 | |
|         startMonitoring(o) {
 | |
|             return o;
 | |
|         },
 | |
|     },
 | |
|     './db': {
 | |
|         createStores(o) {
 | |
|             return o;
 | |
|         },
 | |
|     },
 | |
|     './options': {
 | |
|         createOptions(o) {
 | |
|             return o;
 | |
|         },
 | |
|     },
 | |
|     '../migrator'() {
 | |
|         return Promise.resolve();
 | |
|     },
 | |
| });
 | |
| 
 | |
| test('should call preHook', async t => {
 | |
|     let called = 0;
 | |
|     await serverImpl.start({
 | |
|         port: 0,
 | |
|         preHook: () => {
 | |
|             called++;
 | |
|         },
 | |
|     });
 | |
|     t.true(called === 1);
 | |
| });
 | |
| 
 | |
| test('should call preRouterHook', async t => {
 | |
|     let called = 0;
 | |
|     await serverImpl.start({
 | |
|         port: 0,
 | |
|         preRouterHook: () => {
 | |
|             called++;
 | |
|         },
 | |
|     });
 | |
|     t.true(called === 1);
 | |
| });
 |