-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api): Ensure that the project scorecards are wiped before new on…
…es are imported
- Loading branch information
Showing
2 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import { ProjectScorecard } from '@shared/entities/project-scorecard.entity'; | ||
import { TestManager } from 'api/test/utils/test-manager'; | ||
|
||
describe('Import Repository', () => { | ||
let testManager: TestManager; | ||
let jwtToken: string; | ||
|
||
beforeAll(async () => { | ||
testManager = await TestManager.createTestManager(); | ||
const response = await testManager.setUpTestUser(); | ||
jwtToken = response.jwtToken; | ||
}); | ||
|
||
afterEach(async () => { | ||
await testManager.clearDatabase(); | ||
}); | ||
|
||
afterAll(async () => { | ||
await testManager.close(); | ||
}); | ||
|
||
it('should wipe previous project scorecards before importing new ones', async () => { | ||
// Given | ||
await testManager.ingestCountries(); | ||
await testManager.ingestProjectScoreCards(jwtToken); | ||
const scorecardRepository = | ||
testManager.dataSource.getRepository(ProjectScorecard); | ||
|
||
const scorecardCount = await scorecardRepository.count(); | ||
|
||
// When | ||
await testManager.ingestProjectScoreCards(jwtToken); | ||
const latestScorecardCount = await scorecardRepository.count(); | ||
|
||
// Then | ||
expect(scorecardCount).toEqual(latestScorecardCount); | ||
}); | ||
}); |