-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathassessment-controller-get-next-challenge-for-demo_test.js
167 lines (148 loc) · 4.9 KB
/
assessment-controller-get-next-challenge-for-demo_test.js
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import { Assessment } from '../../../../../src/shared/domain/models/index.js';
import {
createServer,
databaseBuilder,
expect,
learningContentBuilder,
mockLearningContent,
} from '../../../../test-helper.js';
describe('Acceptance | API | assessment-controller-get-next-challenge-for-demo', function () {
let server;
beforeEach(async function () {
server = await createServer();
const learningContent = [
{
id: '1. Information et données',
competences: [
{
id: 'competence_id',
name_i18n: {
fr: "Mener une recherche et une veille d'information",
},
index: '1.1',
tubes: [
{
id: 'recTube0_0',
skills: [
{
id: '@web1',
nom: '@web1',
challenges: [{ id: 'first_challenge' }, { id: 'second_challenge' }, { id: 'third_challenge' }],
},
],
},
],
},
],
courses: [
{
id: 'course_id',
competenceId: 'competence_id',
challengeIds: ['first_challenge', 'second_challenge'],
},
],
},
];
const learningContentObjects = learningContentBuilder.fromAreas(learningContent);
await mockLearningContent(learningContentObjects);
});
describe('(demo) GET /api/assessments/:assessment_id/next', function () {
const assessmentId = 1;
context('when next challenge found', function () {
beforeEach(function () {
databaseBuilder.factory.buildAssessment({
id: assessmentId,
type: 'DEMO',
courseId: 'course_id',
state: Assessment.states.STARTED,
});
return databaseBuilder.commit();
});
it('should return 200 HTTP status code', async function () {
// given
const options = {
method: 'GET',
url: '/api/assessments/' + assessmentId + '/next',
};
// when
const response = await server.inject(options);
expect(response.statusCode).to.equal(200);
expect(response.headers['content-type']).to.contain('application/json');
expect(response.result.data.id).to.equal('first_challenge');
});
});
context('when the first challenge is already answered', function () {
beforeEach(function () {
databaseBuilder.factory.buildAssessment({
id: assessmentId,
type: 'DEMO',
courseId: 'course_id',
state: Assessment.states.STARTED,
});
databaseBuilder.factory.buildAnswer({ challengeId: 'first_challenge', assessmentId });
return databaseBuilder.commit();
});
it('should return the second challenge', async function () {
// given
const options = {
method: 'GET',
url: '/api/assessments/' + assessmentId + '/next',
};
// when
const response = await server.inject(options);
// then
expect(response.result.data.id).to.equal('second_challenge');
});
});
context('when the first challenge has not been answered yet', function () {
beforeEach(function () {
databaseBuilder.factory.buildAssessment({
id: assessmentId,
type: 'DEMO',
courseId: 'course_id',
state: Assessment.states.STARTED,
lastChallengeId: 'first_challenge',
});
databaseBuilder.factory.buildAnswer({ challengeId: 'some_other_challenge', assessmentId });
return databaseBuilder.commit();
});
it('should return the first challenge again', async function () {
// given
const options = {
method: 'GET',
url: '/api/assessments/' + assessmentId + '/next',
};
// when
const response = await server.inject(options);
// then
expect(response.result.data.id).to.equal('first_challenge');
});
});
context('when all challenges are answered', function () {
beforeEach(function () {
databaseBuilder.factory.buildAssessment({
id: assessmentId,
type: 'DEMO',
courseId: 'course_id',
});
databaseBuilder.factory.buildAnswer({ challengeId: 'first_challenge', assessmentId });
databaseBuilder.factory.buildAnswer({ challengeId: 'second_challenge', assessmentId });
return databaseBuilder.commit();
});
it('should finish the test', async function () {
// given
const options = {
method: 'GET',
url: '/api/assessments/' + assessmentId + '/next',
};
// when
const response = await server.inject(options);
// then
expect(response.statusCode).to.equal(200);
expect(response.result).to.deep.equal({
data: null,
});
});
});
});
});