forked from openedx/frontend-app-learning
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: added test cases for new sidebar (openedx#1267)
* test: added test cases for new sidebar * test: added factory for verified user * refactor: updated description for notification widget
- Loading branch information
1 parent
59a68af
commit 4928f50
Showing
7 changed files
with
148 additions
and
40 deletions.
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
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
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,49 @@ | ||
import React from 'react'; | ||
import { Factory } from 'rosie'; | ||
import { getConfig } from '@edx/frontend-platform'; | ||
import { getAuthenticatedHttpClient } from '@edx/frontend-platform/auth'; | ||
import MockAdapter from 'axios-mock-adapter'; | ||
import { breakpoints } from '@edx/paragon'; | ||
import { initializeTestStore, render } from '../../setupTest'; | ||
import { buildTopicsFromUnits } from '../data/__factories__/discussionTopics.factory'; | ||
import { executeThunk } from '../../utils'; | ||
import * as thunks from '../data/thunks'; | ||
import Course from './Course'; | ||
|
||
const mockData = { | ||
nextSequenceHandler: () => {}, | ||
previousSequenceHandler: () => {}, | ||
unitNavigationHandler: () => {}, | ||
}; | ||
|
||
const setupDiscussionSidebar = async (verifiedMode = null, enabledInContext = true) => { | ||
const store = await initializeTestStore(); | ||
const { courseware, models } = store.getState(); | ||
const { courseId, sequenceId } = courseware; | ||
Object.assign(mockData, { | ||
courseId, | ||
sequenceId, | ||
unitId: Object.values(models.units)[0].id, | ||
}); | ||
global.innerWidth = breakpoints.extraLarge.minWidth; | ||
|
||
const courseHomeMetadata = Factory.build('courseHomeMetadata', { verified_mode: verifiedMode }); | ||
const testStore = await initializeTestStore({ provider: 'openedx', courseHomeMetadata }); | ||
const state = testStore.getState(); | ||
const axiosMock = new MockAdapter(getAuthenticatedHttpClient()); | ||
axiosMock.onGet(`${getConfig().LMS_BASE_URL}/api/discussion/v1/courses/${courseId}`).reply(200, { provider: 'openedx' }); | ||
const topicsResponse = buildTopicsFromUnits(state.models.units, enabledInContext); | ||
axiosMock.onGet(`${getConfig().LMS_BASE_URL}/api/discussion/v2/course_topics/${courseId}`) | ||
.reply(200, topicsResponse); | ||
|
||
await executeThunk(thunks.getCourseDiscussionTopics(courseId), testStore.dispatch); | ||
const [firstUnitId] = Object.keys(state.models.units); | ||
mockData.unitId = firstUnitId; | ||
const [firstSequenceId] = Object.keys(state.models.sequences); | ||
mockData.sequenceId = firstSequenceId; | ||
|
||
const wrapper = await render(<Course {...mockData} />, { store: testStore, wrapWithRouter: true }); | ||
return wrapper; | ||
}; | ||
|
||
export default setupDiscussionSidebar; |
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