All files / test-session test-session.controller.ts

100% Statements 14/14
100% Branches 1/1
100% Functions 3/3
100% Lines 12/12

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 311x       1x 1x     1x   6x     6x   1x   7x 6x       1x     1x   1x      
import {
  Controller, Get, HttpException, Logger, Post, Req
} from '@nestjs/common';
import { Request } from 'express';
import { isSessionChange, TestSessionChange } from 'testcenter-common/interfaces/test-session-change.interface';
import { TestSessionService } from './test-session.service';
 
@Controller()
export class TestSessionController {
  constructor(
    private readonly dataService: TestSessionService
  ) {}
 
  private readonly logger = new Logger(TestSessionController.name);
 
  @Post('/push/session-change')
  pushSessionChange(@Req() request: Request): void {
    if (!isSessionChange(request.body)) {
      throw new HttpException('not session data', 400);
    }
 
    // this.logger.log('/push/session-change', JSON.stringify(request.body));
    this.dataService.applySessionChange(request.body);
  }
 
  @Get('/test-sessions')
  getTestSessions(): TestSessionChange[] {
    return this.dataService.getTestSessions();
  }
}