Write more model tests

This commit is contained in:
2020-11-08 11:47:42 -06:00
parent bcde7699bb
commit 97b26a3007
3 changed files with 67 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
const { expect } = require('chai')
const sinon = require('sinon')
const Team = require('../../app/models/Team.model')
const { Model } = require('flitter-orm')
describe('the team model', function() {
it('should extend Model', function() {
expect(new Team).to.be.an.instanceOf(Model)
})
it('should format teams for the API', async function() {
const team = new Team({
user_id: '45c',
team_name: 'A test team name',
team_num: 44,
player_ids: ['abc', '123'],
})
expect(await team.to_api()).to.be.eql({
user_id: '45c',
user_display: 'Unknown User',
team_name: 'A test team name',
team_num: 44,
})
})
})

View File

@@ -0,0 +1,35 @@
const { expect } = require('chai')
const sinon = require('sinon')
const WeeklyPlayerStat = require('../../app/models/WeeklyPlayerStat.model')
const { Model } = require('flitter-orm')
describe('the weekly player stat model', function() {
it('should extend Model', function() {
expect(new WeeklyPlayerStat).to.be.an.instanceOf(Model)
})
it('should format stats for the API', async function() {
const stat = new WeeklyPlayerStat({
player_id: 1,
week_num: 1,
patch_player_id: 1,
fantasy_points: 3,
passing_attempts: 4,
passing_completions: 2,
passing_yards: 50,
fumbles: 2,
kick_returns: 1,
sacks: 0,
})
expect(await stat.to_api()).to.be.eql({
'Passing Attempts': 4,
'Passing Completions': 2,
'Passing Yards': 50,
'Fumbles': 2,
'Kick Returns': 1,
'Sacks': 0,
})
})
})