mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			509 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			509 B
		
	
	
	
		
			TypeScript
		
	
	
import express from 'express'
 | 
						|
import { Server } from 'http'
 | 
						|
import { getPort, randomListen, terminateServer } from './shared'
 | 
						|
 | 
						|
export class MockHTTP {
 | 
						|
  private server: Server
 | 
						|
 | 
						|
  async initialize () {
 | 
						|
    const app = express()
 | 
						|
 | 
						|
    app.get('/*', (req: express.Request, res: express.Response, next: express.NextFunction) => {
 | 
						|
      return res.sendStatus(200)
 | 
						|
    })
 | 
						|
 | 
						|
    this.server = await randomListen(app)
 | 
						|
 | 
						|
    return getPort(this.server)
 | 
						|
  }
 | 
						|
 | 
						|
  terminate () {
 | 
						|
    return terminateServer(this.server)
 | 
						|
  }
 | 
						|
}
 |