-
-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathsolutions_controller_test.rb
More file actions
676 lines (557 loc) · 19 KB
/
solutions_controller_test.rb
File metadata and controls
676 lines (557 loc) · 19 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
require_relative './base_test_case'
class API::SolutionsControllerTest < API::BaseTestCase
guard_incorrect_token! :api_solutions_path
guard_incorrect_token! :api_solution_path, args: 1
guard_incorrect_token! :diff_api_solution_path, args: 1
guard_incorrect_token! :sync_api_solution_path, args: 1, method: :patch
guard_incorrect_token! :complete_api_solution_path, args: 1, method: :patch
guard_incorrect_token! :publish_api_solution_path, args: 1, method: :patch
guard_incorrect_token! :unpublish_api_solution_path, args: 1, method: :patch
guard_incorrect_token! :published_iteration_api_solution_path, args: 1, method: :patch
#########
# INDEX #
#########
test "index should proxy params" do
setup_user
create :concept_solution
Solution::SearchUserSolutions.expects(:call).with(
@current_user,
criteria: "ru",
status: "published",
mentoring_status: "completed",
sync_status: "up_to_date",
tests_status: "passed",
head_tests_status: "failed",
track_slug: "ruby",
page: "2",
per: "10",
order: "newest_first"
).returns(Solution.page(2))
get api_solutions_path(
criteria: "ru",
track_slug: "ruby",
status: "published",
mentoring_status: "completed",
sync_status: "up_to_date",
tests_status: "passed",
head_tests_status: "failed",
page: "2",
per_page: "10",
order: "newest_first"
), headers: @headers, as: :json
assert_response :ok
end
test "index should search and return solutions" do
Solution::SearchUserSolutions::Fallback.expects(:call).never
setup_user
ruby = create :track, title: "Ruby"
ruby_bob = create :concept_exercise, track: ruby, title: "Bob"
create :concept_solution,
user: @current_user,
exercise: ruby_bob,
status: :published,
mentoring_status: "finished"
wait_for_opensearch_to_be_synced
get api_solutions_path(
criteria: "ru",
status: "published",
mentoring_status: "finished",
page: 1
), headers: @headers, as: :json
assert_response :ok
serializer = SerializePaginatedCollection.(
Solution.page(1),
serializer: SerializeSolutions,
serializer_args: @current_user
)
assert_equal serializer.to_json, response.body
end
########
# Show #
########
test "Show renders 404 when solution not found" do
setup_user
get api_solution_path("xxx"),
headers: @headers, as: :json
assert_response :not_found
assert_equal(
{
"error" => {
"type" => "solution_not_found",
"message" => I18n.t("api.errors.solution_not_found")
}
},
JSON.parse(response.body)
)
end
test "Show should 403 if the solution belongs to someone else" do
setup_user
solution = create :concept_solution
get api_solution_path(solution.uuid), headers: @headers, as: :json
assert_response :forbidden
expected = { error: {
type: "solution_not_accessible",
message: I18n.t('api.errors.solution_not_accessible')
} }
actual = JSON.parse(response.body, symbolize_names: true)
assert_equal expected, actual
end
test "Show should return solution by default" do
setup_user
solution = create :concept_solution, user: @current_user
get api_solution_path(solution.uuid), headers: @headers, as: :json
assert_response :ok
expected = {
solution: SerializeSolution.(solution)
}
assert_equal expected.to_json, response.body
end
test "Show should return iterations if requested" do
setup_user
solution = create :concept_solution, user: @current_user
iteration = create(:iteration, solution:)
get api_solution_path(solution.uuid, sideload: [:iterations]), headers: @headers, as: :json
assert_response :ok
expected = {
solution: SerializeSolution.(solution),
iterations: [SerializeIteration.(iteration)]
}
assert_equal expected.to_json, response.body
end
########
# Diff #
########
test "Diff renders 404 when solution not found" do
setup_user
get diff_api_solution_path("xxx"),
headers: @headers, as: :json
assert_response :not_found
assert_equal(
{
"error" => {
"type" => "solution_not_found",
"message" => I18n.t("api.errors.solution_not_found")
}
},
JSON.parse(response.body)
)
end
test "Diff should 403 if the solution belongs to someone else" do
setup_user
solution = create :concept_solution
get diff_api_solution_path(solution.uuid), headers: @headers, as: :json
assert_response :forbidden
expected = { error: {
type: "solution_not_accessible",
message: I18n.t('api.errors.solution_not_accessible')
} }
actual = JSON.parse(response.body, symbolize_names: true)
assert_equal expected, actual
end
test "Diff auto-syncs and returns 200 when diff does not contain files" do
user = create :user
setup_user(user)
solution = create(:concept_solution, user:)
Solution::UpdateToLatestExerciseVersion.expects(:call).with(solution)
get diff_api_solution_path(solution.uuid), headers: @headers, as: :json
assert_response :ok
response_body = JSON.parse(response.body)
assert_empty response_body.dig("diff", "files")
end
########
# Sync #
########
test "Sync renders 404 when solution not found" do
setup_user
patch sync_api_solution_path("xxx"),
headers: @headers, as: :json
assert_response :not_found
assert_equal(
{
"error" => {
"type" => "solution_not_found",
"message" => I18n.t("api.errors.solution_not_found")
}
},
JSON.parse(response.body)
)
end
test "Sync should work correctly" do
setup_user
solution = create :concept_solution, user: @current_user
Solution::UpdateToLatestExerciseVersion.expects(:call).with(solution)
patch sync_api_solution_path(solution.uuid), headers: @headers, as: :json
assert_response :ok
end
############
# Complete #
############
test "complete renders 404 when solution not found" do
setup_user
patch complete_api_solution_path("xxx"),
headers: @headers, as: :json
assert_response :not_found
assert_equal(
{
"error" => {
"type" => "solution_not_found",
"message" => I18n.t("api.errors.solution_not_found")
}
},
JSON.parse(response.body)
)
end
test "complete should 403 if the solution belongs to someone else" do
setup_user
solution = create :concept_solution
patch complete_api_solution_path(solution.uuid), headers: @headers, as: :json
assert_response :forbidden
expected = { error: {
type: "solution_not_accessible",
message: I18n.t('api.errors.solution_not_accessible')
} }
actual = JSON.parse(response.body, symbolize_names: true)
assert_equal expected, actual
end
test "complete renders 404 when track not joined" do
setup_user
solution = create :concept_solution, user: @current_user
create(:iteration, solution:)
patch complete_api_solution_path(solution.uuid),
headers: @headers, as: :json
assert_response :not_found
assert_equal(
{
"error" => {
"type" => "track_not_joined",
"message" => I18n.t("api.errors.track_not_joined")
}
},
JSON.parse(response.body)
)
end
test "complete renders 400 when solution has no iterations" do
setup_user
exercise = create :concept_exercise
create :user_track, track: exercise.track, user: @current_user
solution = create :concept_solution, exercise:, user: @current_user
patch complete_api_solution_path(solution.uuid),
headers: @headers, as: :json
assert_response :bad_request
assert_equal(
{
"error" => {
"type" => "solution_without_iterations",
"message" => I18n.t("api.errors.solution_without_iterations")
}
},
JSON.parse(response.body)
)
end
test "complete completes exercise" do
freeze_time do
setup_user
exercise = create :concept_exercise
create :user_track, track: exercise.track, user: @current_user
solution = create :concept_solution, exercise:, user: @current_user
create(:iteration, solution:)
patch complete_api_solution_path(solution.uuid),
headers: @headers, as: :json
assert_response :ok
solution.reload
assert_equal Time.current, solution.completed_at
assert_nil solution.published_at
assert_equal :completed, solution.status
end
end
test "publishes if requested" do
freeze_time do
setup_user
exercise = create :concept_exercise
create :user_track, track: exercise.track, user: @current_user
solution = create :concept_solution, exercise:, user: @current_user
create(:iteration, solution:)
patch complete_api_solution_path(solution.uuid, publish: true),
headers: @headers, as: :json
assert_response :ok
solution.reload
assert_equal Time.current, solution.completed_at
assert_equal Time.current, solution.published_at
assert_equal :published, solution.status
end
end
test "complete renders changes in user_track" do
freeze_time do
setup_user
track = create :track
concept_1 = create(:concept, track:)
concept_2 = create(:concept, track:)
concept_exercise_1 = create :concept_exercise, track:, slug: "lasagna"
concept_exercise_1.taught_concepts << concept_1
concept_exercise_2 = create :concept_exercise, track:, slug: "concept-exercise-2"
concept_exercise_2.taught_concepts << concept_2
concept_exercise_2.prerequisites << concept_1
practice_exercise_1 = create :practice_exercise, track:, slug: "two-fer"
practice_exercise_1.practiced_concepts << concept_1
practice_exercise_1.prerequisites << concept_1
practice_exercise_2 = create :practice_exercise, track:, slug: "bob"
practice_exercise_2.prerequisites << concept_1
practice_exercise_3 = create :practice_exercise, track:, slug: "leap"
practice_exercise_3.prerequisites << concept_2
user_track = create :user_track, track:, user: @current_user
solution = create :concept_solution, exercise: concept_exercise_1, user: @current_user
submission = create(:submission, solution:)
create(:iteration, submission:)
patch complete_api_solution_path(solution.uuid),
headers: @headers, as: :json
user_track.reload
assert_response :ok
expected = {
track: SerializeTrack.(solution.track, user_track),
exercise: SerializeExercise.(solution.exercise, user_track:),
unlocked_exercises: [concept_exercise_2, practice_exercise_1, practice_exercise_2].map do |exercise|
SerializeExercise.(exercise, user_track:)
end,
"unlocked_concepts" => [
{
"slug" => concept_2.slug,
"name" => concept_2.name,
"links" => {
"self" => Exercism::Routes.track_concept_path(concept_2.track, concept_2)
}
}
],
"concept_progressions" => [
{
"slug" => concept_1.slug,
"name" => concept_1.name,
"from" => 0,
"to" => 1,
"total" => 2,
"links" => {
"self" => Exercism::Routes.track_concept_path(concept_1.track, concept_1)
}
}
]
}.to_json
assert_equal expected, response.body
end
end
############
# Publish #
############
test "publish renders 404 when solution not found" do
setup_user
patch publish_api_solution_path("xxx"),
headers: @headers, as: :json
assert_response :not_found
assert_equal(
{
"error" => {
"type" => "solution_not_found",
"message" => I18n.t("api.errors.solution_not_found")
}
},
JSON.parse(response.body)
)
end
test "publish should 403 if the solution belongs to someone else" do
setup_user
solution = create :concept_solution
patch publish_api_solution_path(solution.uuid), headers: @headers, as: :json
assert_response :forbidden
expected = { error: {
type: "solution_not_accessible",
message: I18n.t('api.errors.solution_not_accessible')
} }
actual = JSON.parse(response.body, symbolize_names: true)
assert_equal expected, actual
end
test "publish renders 404 when track not joined" do
setup_user
solution = create :concept_solution, user: @current_user
create(:iteration, solution:)
patch publish_api_solution_path(solution.uuid),
headers: @headers, as: :json
assert_response :not_found
assert_equal(
{
"error" => {
"type" => "track_not_joined",
"message" => I18n.t("api.errors.track_not_joined")
}
},
JSON.parse(response.body)
)
end
test "publish renders 400 when solution not completed and has no iterations" do
setup_user
exercise = create :concept_exercise
create :user_track, track: exercise.track, user: @current_user
solution = create :concept_solution, exercise:, user: @current_user, completed_at: nil
patch publish_api_solution_path(solution.uuid, publish: true),
headers: @headers, as: :json
assert_response :bad_request
assert_equal(
{
"error" => {
"type" => "solution_without_iterations",
"message" => I18n.t("api.errors.solution_without_iterations")
}
},
JSON.parse(response.body)
)
end
test "publish completes the solution if not already completed" do
freeze_time do
setup_user
exercise = create :concept_exercise
create :user_track, track: exercise.track, user: @current_user
solution = create :concept_solution, exercise:, user: @current_user, completed_at: nil
create(:iteration, solution:)
patch publish_api_solution_path(solution.uuid, publish: true),
headers: @headers, as: :json
assert_response :ok
solution.reload
assert_equal Time.current, solution.completed_at
assert_equal Time.current, solution.published_at
assert_equal :published, solution.status
end
end
test "publish publishes the solution" do
freeze_time do
setup_user
exercise = create :concept_exercise
create :user_track, track: exercise.track, user: @current_user
solution = create :concept_solution, exercise:, user: @current_user, completed_at: Time.current
create(:iteration, solution:)
patch publish_api_solution_path(solution.uuid, publish: true),
headers: @headers, as: :json
assert_response :ok
solution.reload
assert_equal Time.current, solution.completed_at
assert_equal Time.current, solution.published_at
assert_equal :published, solution.status
end
end
############
# Unpublish #
############
test "unpublish renders 404 when solution not found" do
setup_user
patch unpublish_api_solution_path("xxx"),
headers: @headers, as: :json
assert_response :not_found
assert_equal(
{
"error" => {
"type" => "solution_not_found",
"message" => I18n.t("api.errors.solution_not_found")
}
},
JSON.parse(response.body)
)
end
test "unpublish should 403 if the solution belongs to someone else" do
setup_user
solution = create :concept_solution
patch unpublish_api_solution_path(solution.uuid), headers: @headers, as: :json
assert_response :forbidden
expected = { error: {
type: "solution_not_accessible",
message: I18n.t('api.errors.solution_not_accessible')
} }
actual = JSON.parse(response.body, symbolize_names: true)
assert_equal expected, actual
end
test "unpublish renders 404 when track not joined" do
setup_user
solution = create :concept_solution, user: @current_user
patch unpublish_api_solution_path(solution.uuid),
headers: @headers, as: :json
assert_response :not_found
assert_equal(
{
"error" => {
"type" => "track_not_joined",
"message" => I18n.t("api.errors.track_not_joined")
}
},
JSON.parse(response.body)
)
end
test "unpublish unpublishes the solution" do
freeze_time do
setup_user
exercise = create :concept_exercise
create :user_track, track: exercise.track, user: @current_user
solution = create :concept_solution, exercise:, user: @current_user, completed_at: Time.current
create(:iteration, solution:)
patch unpublish_api_solution_path(solution.uuid, publish: true),
headers: @headers, as: :json
assert_response :ok
solution.reload
assert_equal Time.current, solution.completed_at
assert_nil solution.published_at
assert_nil solution.published_iteration_id
assert_equal :completed, solution.status
end
end
###############
# Unlock help #
###############
test "unlock_help renders 404 when solution not found" do
setup_user
patch unlock_help_api_solution_path("xxx"), headers: @headers, as: :json
assert_response :not_found
expected = {
error: {
type: "solution_not_found",
message: I18n.t("api.errors.solution_not_found")
}
}
assert_equal expected, JSON.parse(response.body, symbolize_names: true)
end
test "unlock_help should 403 if the solution belongs to someone else" do
setup_user
solution = create :concept_solution
patch unlock_help_api_solution_path(solution.uuid), headers: @headers, as: :json
assert_response :forbidden
expected = {
error: {
type: "solution_not_accessible",
message: I18n.t('api.errors.solution_not_accessible')
}
}
assert_equal expected, JSON.parse(response.body, symbolize_names: true)
end
test "unlock_help renders 400 when solution has not been downloaded nor submitted" do
setup_user
exercise = create :concept_exercise
create :user_track, track: exercise.track, user: @current_user
solution = create :concept_solution, exercise:, user: @current_user, completed_at: nil
patch unlock_help_api_solution_path(solution.uuid), headers: @headers, as: :json
assert_response :bad_request
expected = {
error: {
type: "solution_unlock_help_not_accessible",
message: I18n.t("api.errors.solution_unlock_help_not_accessible")
}
}
assert_equal expected, JSON.parse(response.body, symbolize_names: true)
end
test "unlock_help unlocks help for the solution" do
freeze_time do
setup_user
exercise = create :concept_exercise
create :user_track, track: exercise.track, user: @current_user
solution = create :concept_solution, exercise:, user: @current_user, completed_at: Time.current
create(:iteration, solution:)
# Sanity check
refute solution.unlocked_help?
patch unlock_help_api_solution_path(solution.uuid), headers: @headers, as: :json
assert_response :ok
assert solution.reload.unlocked_help?
end
end
end