mumuki-laboratory 5.13.0 → 6.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +674 -0
- data/app/assets/stylesheets/application/_modules.scss +1 -0
- data/app/assets/stylesheets/application/modules/_chapter_show.scss +3 -0
- data/app/controllers/api/organizations_controller.rb +3 -3
- data/app/controllers/api/users_controller.rb +2 -2
- data/app/controllers/application_controller.rb +6 -0
- data/app/controllers/discussions_controller.rb +2 -2
- data/app/controllers/exercises_controller.rb +1 -1
- data/app/controllers/guide_container_controller.rb +1 -1
- data/app/controllers/guide_progress_controller.rb +1 -1
- data/app/controllers/guides_controller.rb +1 -1
- data/app/controllers/users_controller.rb +1 -1
- data/app/helpers/discussions_helper.rb +1 -1
- data/app/views/chapters/show.html.erb +1 -1
- data/lib/events.rb +10 -6
- data/lib/mumuki/laboratory.rb +30 -14
- data/lib/mumuki/laboratory/controllers/content.rb +1 -1
- data/lib/mumuki/laboratory/controllers/dynamic_errors.rb +5 -5
- data/lib/mumuki/laboratory/engine.rb +0 -8
- data/lib/mumuki/laboratory/extensions.rb +0 -2
- data/lib/mumuki/laboratory/version.rb +1 -1
- data/lib/tasks/messages.rake +1 -1
- data/public/compass_rose.svg +1272 -1262
- data/spec/api_helper.rb +7 -0
- data/spec/controllers/confirmations_controller_spec.rb +1 -1
- data/spec/controllers/organizations_api_controller_spec.rb +8 -8
- data/spec/controllers/users_api_controller_spec.rb +7 -7
- data/spec/dummy/config/application.rb +4 -0
- data/spec/dummy/db/schema.rb +8 -3
- data/spec/dummy/db/seeds.rb +7 -3
- data/spec/evaluation_helper.rb +1 -1
- data/spec/features/home_private_flow_spec.rb +8 -6
- data/spec/features/home_public_flow_spec.rb +8 -7
- data/spec/features/profile_flow_spec.rb +2 -1
- data/spec/login_helper.rb +20 -0
- data/spec/models/book_import_spec.rb +5 -5
- data/spec/models/course_spec.rb +1 -1
- data/spec/models/event_generation_spec.rb +4 -4
- data/spec/models/exam_spec.rb +14 -14
- data/spec/models/exercise_spec.rb +26 -3
- data/spec/models/guide_import_spec.rb +15 -15
- data/spec/models/guide_spec.rb +54 -4
- data/spec/models/language_spec.rb +48 -46
- data/spec/models/message_spec.rb +5 -5
- data/spec/models/query_spec.rb +2 -2
- data/spec/models/question_spec.rb +1 -1
- data/spec/models/solution_spec.rb +2 -2
- data/spec/models/topic_import_spec.rb +3 -3
- data/spec/models/user_changed_spec.rb +3 -3
- data/spec/spec_helper.rb +2 -37
- metadata +18 -497
- data/app/models/api_client.rb +0 -31
- data/app/models/application_record.rb +0 -92
- data/app/models/assignment.rb +0 -204
- data/app/models/book.rb +0 -47
- data/app/models/chapter.rb +0 -29
- data/app/models/complement.rb +0 -15
- data/app/models/concerns/assistable.rb +0 -17
- data/app/models/concerns/contextualization.rb +0 -82
- data/app/models/concerns/friendly_name.rb +0 -10
- data/app/models/concerns/guide_container.rb +0 -53
- data/app/models/concerns/navigation/parent_navigation.rb +0 -27
- data/app/models/concerns/navigation/siblings_navigation.rb +0 -19
- data/app/models/concerns/navigation/terminal_navigation.rb +0 -13
- data/app/models/concerns/submittable/confirmable.rb +0 -5
- data/app/models/concerns/submittable/queriable.rb +0 -9
- data/app/models/concerns/submittable/questionable.rb +0 -6
- data/app/models/concerns/submittable/solvable.rb +0 -32
- data/app/models/concerns/submittable/submittable.rb +0 -11
- data/app/models/concerns/submittable/triable.rb +0 -9
- data/app/models/concerns/with_assignments.rb +0 -32
- data/app/models/concerns/with_case_insensitive_search.rb +0 -7
- data/app/models/concerns/with_description.rb +0 -12
- data/app/models/concerns/with_discussion_creation.rb +0 -9
- data/app/models/concerns/with_discussion_creation/subscription.rb +0 -33
- data/app/models/concerns/with_discussion_creation/upvote.rb +0 -28
- data/app/models/concerns/with_discussion_status.rb +0 -11
- data/app/models/concerns/with_discussions.rb +0 -23
- data/app/models/concerns/with_editor.rb +0 -39
- data/app/models/concerns/with_expectations.rb +0 -19
- data/app/models/concerns/with_language.rb +0 -14
- data/app/models/concerns/with_layout.rb +0 -7
- data/app/models/concerns/with_locale.rb +0 -7
- data/app/models/concerns/with_messages.rb +0 -22
- data/app/models/concerns/with_number.rb +0 -9
- data/app/models/concerns/with_profile.rb +0 -12
- data/app/models/concerns/with_randomizations.rb +0 -34
- data/app/models/concerns/with_reminders.rb +0 -74
- data/app/models/concerns/with_scoped_queries.rb +0 -47
- data/app/models/concerns/with_scoped_queries/filter.rb +0 -15
- data/app/models/concerns/with_scoped_queries/page.rb +0 -10
- data/app/models/concerns/with_scoped_queries/sort.rb +0 -47
- data/app/models/concerns/with_slug.rb +0 -32
- data/app/models/concerns/with_usages.rb +0 -16
- data/app/models/concerns/with_user_navigation.rb +0 -9
- data/app/models/content.rb +0 -10
- data/app/models/course.rb +0 -20
- data/app/models/discussion.rb +0 -136
- data/app/models/event.rb +0 -2
- data/app/models/exam.rb +0 -147
- data/app/models/exam_authorization.rb +0 -10
- data/app/models/exercise.rb +0 -190
- data/app/models/exercise/challenge.rb +0 -25
- data/app/models/exercise/interactive.rb +0 -41
- data/app/models/exercise/playground.rb +0 -23
- data/app/models/exercise/problem.rb +0 -41
- data/app/models/exercise/queriable_challenge.rb +0 -5
- data/app/models/exercise/reading.rb +0 -17
- data/app/models/guide.rb +0 -92
- data/app/models/invitation.rb +0 -36
- data/app/models/language.rb +0 -106
- data/app/models/lesson.rb +0 -25
- data/app/models/message.rb +0 -68
- data/app/models/organization.rb +0 -118
- data/app/models/stats.rb +0 -24
- data/app/models/submission/confirmation.rb +0 -9
- data/app/models/submission/console_submission.rb +0 -13
- data/app/models/submission/persistent_submission.rb +0 -7
- data/app/models/submission/query.rb +0 -19
- data/app/models/submission/question.rb +0 -14
- data/app/models/submission/solution.rb +0 -7
- data/app/models/submission/submission.rb +0 -56
- data/app/models/submission/try.rb +0 -20
- data/app/models/subscription.rb +0 -12
- data/app/models/topic.rb +0 -46
- data/app/models/topic_container.rb +0 -21
- data/app/models/upvote.rb +0 -4
- data/app/models/usage.rb +0 -20
- data/app/models/user.rb +0 -153
- data/app/models/with_stats.rb +0 -9
- data/db/migrate/20141120231135_create_exercises.rb +0 -11
- data/db/migrate/20141120231735_create_submissions.rb +0 -9
- data/db/migrate/20141121001134_add_status_to_submission.rb +0 -5
- data/db/migrate/20141121013100_add_result_to_submission.rb +0 -5
- data/db/migrate/20141121122921_add_language_to_exercise.rb +0 -5
- data/db/migrate/20141124023403_create_users.rb +0 -13
- data/db/migrate/20141124032114_add_user_to_submission.rb +0 -5
- data/db/migrate/20141207235356_add_submissions_count_to_exercise.rb +0 -5
- data/db/migrate/20141208005050_add_author_to_exercise.rb +0 -5
- data/db/migrate/20141208005125_rename_user_to_submitter.rb +0 -5
- data/db/migrate/20141212044717_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb +0 -31
- data/db/migrate/20141212044718_add_missing_unique_indices.acts_as_taggable_on_engine.rb +0 -20
- data/db/migrate/20141212044719_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +0 -10
- data/db/migrate/20141212044720_add_missing_taggable_index.acts_as_taggable_on_engine.rb +0 -10
- data/db/migrate/20141221213109_create_exercise_repos.rb +0 -11
- data/db/migrate/20141221215035_add_origin_to_exercise.rb +0 -6
- data/db/migrate/20141225034553_rename_exercise_repo_to_guide.rb +0 -6
- data/db/migrate/20141225143218_rename_github_url_to_github_repository.rb +0 -5
- data/db/migrate/20141225195510_create_imports.rb +0 -9
- data/db/migrate/20141225211350_add_status_to_import.rb +0 -6
- data/db/migrate/20141226010922_add_result_to_import.rb +0 -5
- data/db/migrate/20141228151351_change_exercise_description_to_text.rb +0 -5
- data/db/migrate/20141231074400_create_languages.rb +0 -13
- data/db/migrate/20141231191842_change_language_column_type.rb +0 -6
- data/db/migrate/20141231192030_rename_author_to_plugin_author.rb +0 -5
- data/db/migrate/20141231234940_increment_language_id.rb +0 -5
- data/db/migrate/20150108014005_add_locale_to_exercise.rb +0 -5
- data/db/migrate/20150111160450_add_uniques_to_languages.rb +0 -6
- data/db/migrate/20150125042217_add_test_syntax_hint_to_language.rb +0 -5
- data/db/migrate/20150125051529_add_hint_to_exercise.rb +0 -5
- data/db/migrate/20150126213310_devise_create_admin_users.rb +0 -42
- data/db/migrate/20150126213316_create_active_admin_comments.rb +0 -19
- data/db/migrate/20150315072037_add_description_to_guide.rb +0 -6
- data/db/migrate/20150317052723_remove_language_author.rb +0 -5
- data/db/migrate/20150317053307_remove_language_hint.rb +0 -5
- data/db/migrate/20150321150030_add_extra_code_to_exercise.rb +0 -5
- data/db/migrate/20150328211331_create_expectations.rb +0 -11
- data/db/migrate/20150329163753_add_email_to_user.rb +0 -5
- data/db/migrate/20150330020553_add_expectation_results_to_submission.rb +0 -5
- data/db/migrate/20150405231013_create_exports.rb +0 -9
- data/db/migrate/20150405232603_add_default_guide_to_user.rb +0 -5
- data/db/migrate/20150406020152_add_last_submission_date_to_user.rb +0 -5
- data/db/migrate/20150407225356_add_unique_index_to_users.rb +0 -5
- data/db/migrate/20150408020712_add_status_to_export.rb +0 -6
- data/db/migrate/20150408022654_add_commiter_to_export.rb +0 -5
- data/db/migrate/20150411215351_change_guide_description_to_text.rb +0 -5
- data/db/migrate/20150412042959_add_committer_to_import.rb +0 -5
- data/db/migrate/20150412201651_remove_default_guide_from_user.rb +0 -5
- data/db/migrate/20150415053559_add_image_url_to_user.rb +0 -5
- data/db/migrate/20150415211341_add_position_to_exercise.rb +0 -5
- data/db/migrate/20150415234515_create_relationships.rb +0 -10
- data/db/migrate/20150417052238_add_original_id_format_to_guide.rb +0 -5
- data/db/migrate/20150418055334_add_locale_and_language_to_guide.rb +0 -6
- data/db/migrate/20150424180136_add_guides_users_association_tables.rb +0 -14
- data/db/migrate/20150428195229_add_guides_suggestions.rb +0 -8
- data/db/migrate/20150507215646_remove_relationship.rb +0 -5
- data/db/migrate/20150508015148_create_api_tokens.rb +0 -10
- data/db/migrate/20150509191428_add_name_to_token.rb +0 -5
- data/db/migrate/20150512235847_add_feedback_to_submission.rb +0 -5
- data/db/migrate/20150513203636_create_categories.rb +0 -12
- data/db/migrate/20150513204102_create_starting_points.rb +0 -11
- data/db/migrate/20150517074730_add_extra_code_to_guide.rb +0 -5
- data/db/migrate/20150518174912_add_language_output_visibility_flag.rb +0 -5
- data/db/migrate/20150518185508_add_content_type_to_language.rb +0 -5
- data/db/migrate/20150519131033_set_default_locale_for_guide.rb +0 -5
- data/db/migrate/20150519174628_remove_language_name_uniq.rb +0 -6
- data/db/migrate/20150519220307_rename_api_token_columns.rb +0 -6
- data/db/migrate/20150520011404_convert_starting_point_into_path.rb +0 -12
- data/db/migrate/20150529135324_add_corollary_to_guide.rb +0 -5
- data/db/migrate/20150529141430_add_corollary_to_exercise.rb +0 -5
- data/db/migrate/20150531164450_add_test_extension_to_language.rb +0 -5
- data/db/migrate/20150603003459_remove_language_extension_uniq.rb +0 -6
- data/db/migrate/20150603020457_remove_guide_name_uniq.rb +0 -6
- data/db/migrate/20150605065543_add_highlight_mode.rb +0 -5
- data/db/migrate/20150614173852_add_learning_flag.rb +0 -5
- data/db/migrate/20150614180512_add_beta_flag.rb +0 -5
- data/db/migrate/20150614191257_add_last_exercise.rb +0 -5
- data/db/migrate/20150620181839_add_layout_to_exercise.rb +0 -5
- data/db/migrate/20150701030644_add_unique_to_language_name_index.rb +0 -6
- data/db/migrate/20150701212609_add_test_results_to_submission.rb +0 -5
- data/db/migrate/20150708212022_add_position_to_category.rb +0 -5
- data/db/migrate/20150708212836_change_category_description_to_text.rb +0 -5
- data/db/migrate/20150713120916_add_expectations_column_to_exercise.rb +0 -5
- data/db/migrate/20150714000532_remove_expectations_relation.rb +0 -5
- data/db/migrate/20150722003532_create_event_subscribers.rb +0 -10
- data/db/migrate/20150722030820_create_solutions.rb +0 -16
- data/db/migrate/20150722142019_add_submissions_count_to_solution.rb +0 -5
- data/db/migrate/20150723052640_add_submission_id_to_solution.rb +0 -5
- data/db/migrate/20150724062215_add_language_description.rb +0 -5
- data/db/migrate/20150724062233_add_category_links.rb +0 -5
- data/db/migrate/20150724062249_add_category_long_description.rb +0 -5
- data/db/migrate/20150819194207_convert_submissions_into_solutions.rb +0 -34
- data/db/migrate/20150819202310_remove_submissions.rb +0 -5
- data/db/migrate/20150826023647_create_friendly_id_slugs.rb +0 -15
- data/db/migrate/20150826023757_add_slug_to_guides.rb +0 -6
- data/db/migrate/20150826024859_add_slug_to_exercises.rb +0 -6
- data/db/migrate/20150828013106_add_remember_me_token_to_user.rb +0 -5
- data/db/migrate/20150829211550_add_queriable_to_language.rb +0 -5
- data/db/migrate/20150829215524_add_expectations_column_to_guide.rb +0 -5
- data/db/migrate/20150905214532_rename_exercise_title_to_name.rb +0 -5
- data/db/migrate/20151001143118_rename_solution_to_assignment.rb +0 -5
- data/db/migrate/20151001183858_rename_assignment_content_to_solution.rb +0 -5
- data/db/migrate/20151003003856_add_type_to_exercise.rb +0 -5
- data/db/migrate/20151020145904_remove_guide_git_information.rb +0 -7
- data/db/migrate/20151104163433_create_tenants.rb +0 -9
- data/db/migrate/20151104172241_create_path_rules.rb +0 -11
- data/db/migrate/20151104173956_remove_guide_position.rb +0 -5
- data/db/migrate/20151104220859_remove_path_from_guide.rb +0 -5
- data/db/migrate/20151107232242_move_slug_to_path_rule.rb +0 -6
- data/db/migrate/20151108173838_remove_slugs.rb +0 -5
- data/db/migrate/20151108182857_remove_act_as_taggable_taggings.rb +0 -6
- data/db/migrate/20151108183319_add_tags_array.rb +0 -5
- data/db/migrate/20151206072741_rename_guide_extra_code_to_extra.rb +0 -5
- data/db/migrate/20151208224736_rename_path_rule_to_chapter_guide.rb +0 -5
- data/db/migrate/20151208224907_rename_category_to_chapter.rb +0 -5
- data/db/migrate/20151208225503_rename_chapter_position_to_number.rb +0 -5
- data/db/migrate/20151208231749_rename_chapter_guide_path_to_chapter.rb +0 -5
- data/db/migrate/20151208233707_rename_url_to_slug.rb +0 -5
- data/db/migrate/20151209021925_add_locale_to_tenant.rb +0 -5
- data/db/migrate/20151210204646_remove_language_extensions.rb +0 -6
- data/db/migrate/20151211032811_drop_collaborators.rb +0 -5
- data/db/migrate/20151211033000_drop_contributors.rb +0 -5
- data/db/migrate/20151211034943_remove_authors.rb +0 -6
- data/db/migrate/20151211035206_add_contact_email_to_tenant.rb +0 -5
- data/db/migrate/20151218172557_drop_import.rb +0 -6
- data/db/migrate/20151222153838_add_default_content_to_exercise.rb +0 -5
- data/db/migrate/20151223014138_change_language_icon_url_into_devicon_id.rb +0 -5
- data/db/migrate/20151224174248_remove_original_id.rb +0 -5
- data/db/migrate/20151229153839_replace_learning_with_type_in_guides.rb +0 -6
- data/db/migrate/20160108191156_rename_extra_code.rb +0 -5
- data/db/migrate/20160108215313_remove_unique_index_from_users.rb +0 -5
- data/db/migrate/20160119024542_add_preface_to_tenant.rb +0 -5
- data/db/migrate/20160119040351_rename_tenant_to_book.rb +0 -5
- data/db/migrate/20160119191508_rename_position_to_number.rb +0 -6
- data/db/migrate/20160120171336_add_type_to_event_suscriber.rb +0 -5
- data/db/migrate/20160205184243_add_bibliotheca_id_to_exercise.rb +0 -5
- data/db/migrate/20160214191548_required_bibliotheca_id.rb +0 -5
- data/db/migrate/20160222165337_add_hidden_flag_to_extra_code.rb +0 -5
- data/db/migrate/20160222192958_rename_chapter_guide_to_lesson.rb +0 -5
- data/db/migrate/20160307184203_add_prompt_to_language.rb +0 -5
- data/db/migrate/20160331210507_add_comment_model.rb +0 -13
- data/db/migrate/20160401142104_add_readed_to_comment.rb +0 -5
- data/db/migrate/20160404214826_change_readed_to_read.rb +0 -5
- data/db/migrate/20160405184624_change_submission_id_to_string.rb +0 -5
- data/db/migrate/20160412193123_change_content_comment_to_text.rb +0 -5
- data/db/migrate/20160414150800_remove_tenant_subscriber.rb +0 -5
- data/db/migrate/20160426171156_add_new_expectations_to_exercise.rb +0 -5
- data/db/migrate/20160427195306_create_organizations.rb +0 -12
- data/db/migrate/20160427223805_add_chapter_book.rb +0 -5
- data/db/migrate/20160427234538_create_topics.rb +0 -11
- data/db/migrate/20160427235605_add_topic_to_chapter.rb +0 -5
- data/db/migrate/20160428162753_add_topic_id_to_lesson.rb +0 -5
- data/db/migrate/20160428175230_create_exams.rb +0 -10
- data/db/migrate/20160428224823_add_duration_to_exam.rb +0 -5
- data/db/migrate/20160429174901_add_start_end_time_to_exam.rb +0 -6
- data/db/migrate/20160429181825_add_exam_user.rb +0 -8
- data/db/migrate/20160430225048_create_complements.rb +0 -10
- data/db/migrate/20160430231035_remove_chapter_lesson.rb +0 -5
- data/db/migrate/20160430235331_remove_chapter_name_description.rb +0 -6
- data/db/migrate/20160430235656_remove_chapter_locale_image_url.rb +0 -6
- data/db/migrate/20160501003355_add_long_description_to_topic.rb +0 -5
- data/db/migrate/20160501071847_create_usages.rb +0 -11
- data/db/migrate/20160506012945_add_slug_to_topic_and_book.rb +0 -9
- data/db/migrate/20160506035230_remove_slug_from_lesson.rb +0 -5
- data/db/migrate/20160506041446_rename_preface_to_description.rb +0 -5
- data/db/migrate/20160506172239_remove_event_subscriber.rb +0 -5
- data/db/migrate/20160506175610_remove_api_tokens.rb +0 -5
- data/db/migrate/20160506181152_remove_admin_user.rb +0 -5
- data/db/migrate/20160506182333_remove_admin_comments.rb +0 -5
- data/db/migrate/20160510183137_add_private_to_organization.rb +0 -5
- data/db/migrate/20160512134321_add_organization_image.rb +0 -5
- data/db/migrate/20160516191936_add_stateful_console_to_language.rb +0 -5
- data/db/migrate/20160517215229_add_classroom_idto_exams.rb +0 -6
- data/db/migrate/20160518212552_rename_exam_users_to_exam_authorization.rb +0 -5
- data/db/migrate/20160518213912_add_user_start_data_in_exam.rb +0 -6
- data/db/migrate/20160519045220_add_id_to_exam_authorizations.rb +0 -5
- data/db/migrate/20160520141716_remove_chapter_links_and_long_description.rb +0 -6
- data/db/migrate/20160520153115_change_exam_classroom_id_to_string.rb +0 -5
- data/db/migrate/20160526172026_remove_not_null_constraint_exam_duration.rb +0 -6
- data/db/migrate/20160526182119_add_metadata_to_user.rb +0 -5
- data/db/migrate/20160617175235_add_last_organization_to_user.rb +0 -5
- data/db/migrate/20160617195350_change_metadata_to_text.rb +0 -5
- data/db/migrate/20160701195105_add_login_methods_to_organization.rb +0 -5
- data/db/migrate/20160705160244_add_manual_evaluation_to_exercise.rb +0 -5
- data/db/migrate/20160715001254_rename_test_runner_url.rb +0 -5
- data/db/migrate/20160729194600_change_default_content_to_text.rb +0 -5
- data/db/migrate/20160812003350_change_default_login_methods.rb +0 -5
- data/db/migrate/20160815225314_rename_long_description_to_appendix.rb +0 -5
- data/db/migrate/20160819181024_make_organization_private_by_default.rb +0 -5
- data/db/migrate/20160830160937_add_authoring_information_to_guide.rb +0 -6
- data/db/migrate/20160907010315_remove_exercise_slug.rb +0 -5
- data/db/migrate/20161004202742_add_editor_to_problem.rb +0 -6
- data/db/migrate/20161018142147_add_language_extension.rb +0 -5
- data/db/migrate/20161107171305_remove_devicon_column_from_language.rb +0 -5
- data/db/migrate/20161222182015_rename_uid_to_social_id.rb +0 -5
- data/db/migrate/20161222182724_add_uid_to_user.rb +0 -5
- data/db/migrate/20161226181932_remove_metadata_from_users.rb +0 -5
- data/db/migrate/20161230055953_add_not_null_constraint_to_uid_in_user.rb +0 -5
- data/db/migrate/20161231224116_add_permissions_to_user.rb +0 -5
- data/db/migrate/20170125185012_add_new_fields_on_organization.rb +0 -15
- data/db/migrate/20170207154702_add_index_to_uid.rb +0 -5
- data/db/migrate/20170224040846_create_invitations.rb +0 -11
- data/db/migrate/20170224061531_make_tos_type_text.rb +0 -5
- data/db/migrate/20170301160253_rename_invitation_slug_to_code.rb +0 -5
- data/db/migrate/20170330145157_rename_comment_to_messages.rb +0 -6
- data/db/migrate/20170407190910_add_has_messages_flag_to_assignment.rb +0 -5
- data/db/migrate/20170526191251_add_community_link_to_organizations.rb +0 -5
- data/db/migrate/20170526204944_add_has_messages_to_organizations.rb +0 -5
- data/db/migrate/20170601181759_rename_has_messages_to_raise_hand_enabled_in_organization.rb +0 -5
- data/db/migrate/20170608033403_remove_has_messages_from_assignment.rb +0 -5
- data/db/migrate/20170608044038_remove_messages_exercise_id.rb +0 -5
- data/db/migrate/20170608154055_remove_message_type_column.rb +0 -5
- data/db/migrate/20170612173212_add_first_name_and_last_name_to_user.rb +0 -6
- data/db/migrate/20170621222902_introduce_settings_and_themes.rb +0 -40
- data/db/migrate/20170818185127_add_guide_slug_constraint.rb +0 -5
- data/db/migrate/20170830020507_change_invitation_expiration_date_type.rb +0 -5
- data/db/migrate/20171003204152_add_goal_to_exercise.rb +0 -5
- data/db/migrate/20171003204209_add_queries_to_assignment.rb +0 -6
- data/db/migrate/20171004134607_add_triable_to_language.rb +0 -5
- data/db/migrate/20171024182244_add_devicon_and_comment_type_to_language.rb +0 -6
- data/db/migrate/20171109181818_add_manual_evaluation_commend_and_submission_id_index_in_assignment.rb +0 -6
- data/db/migrate/20171229042201_add_assets_to_language.rb +0 -9
- data/db/migrate/20180117014110_add_custom_editor_assets_to_language.rb +0 -13
- data/db/migrate/20180123174410_add_initial_and_final_states_to_exercises.rb +0 -6
- data/db/migrate/20180123180836_add_accepts_reminders_to_users.rb +0 -5
- data/db/migrate/20180129142749_add_api_client.rb +0 -11
- data/db/migrate/20180130194923_add_last_reminded_date_to_users.rb +0 -5
- data/db/migrate/20180130204935_add_course.rb +0 -16
- data/db/migrate/20180307150148_add_failed_submissions_count_to_assignments.rb +0 -5
- data/db/migrate/20180323125804_remove_user_name.rb +0 -5
- data/db/migrate/20180323140943_remove_unused_omniauth_fields.rb +0 -7
- data/db/migrate/20180326224511_remove_book_ids.rb +0 -5
- data/db/migrate/20180402015405_remove_course_uid.rb +0 -5
- data/db/migrate/20180504173548_create_discussions.rb +0 -12
- data/db/migrate/20180504185845_add_discussion_id_to_message.rb +0 -5
- data/db/migrate/20180526141344_add_tips_rules_to_exercise.rb +0 -5
- data/db/migrate/20180605143727_add_submission_to_discussion.rb +0 -16
- data/db/migrate/20180611190239_add_randomizations_to_exercises.rb +0 -5
- data/db/migrate/20180619182555_create_subscriptions.rb +0 -9
- data/db/migrate/20180702153442_create_upvotes.rb +0 -8
- data/db/migrate/20180702175220_add_upvotes_count_to_discussions.rb +0 -5
- data/db/migrate/20180704150839_rename_assignment_status_to_submission_status.rb +0 -5
- data/db/migrate/20180725145801_add_submissions_caps_to_exams.rb +0 -6
- data/db/migrate/20180802190437_add_approved_to_messages.rb +0 -5
- data/db/migrate/20181004173216_add_free_form_editor_to_exercises.rb +0 -5
- data/db/migrate/20181014233438_remove_non_null_constraint_from_permissions.rb +0 -5
- data/db/migrate/20181101180652_add_unique_index_to_organizations_name.rb +0 -5
- data/db/seeds/users.rb +0 -3
- data/lib/mumuki/laboratory/evaluation.rb +0 -5
- data/lib/mumuki/laboratory/evaluation/automated.rb +0 -5
- data/lib/mumuki/laboratory/evaluation/manual.rb +0 -5
- data/lib/mumuki/laboratory/exceptions.rb +0 -5
- data/lib/mumuki/laboratory/exceptions/blocked_forum_error.rb +0 -2
- data/lib/mumuki/laboratory/exceptions/forbidden_error.rb +0 -2
- data/lib/mumuki/laboratory/exceptions/gone_error.rb +0 -2
- data/lib/mumuki/laboratory/exceptions/not_found_error.rb +0 -2
- data/lib/mumuki/laboratory/exceptions/unauthorized_error.rb +0 -2
- data/lib/mumuki/laboratory/extensions/array.rb +0 -11
- data/lib/mumuki/laboratory/extensions/string.rb +0 -29
- data/lib/mumuki/laboratory/file.rb +0 -18
- data/lib/mumuki/laboratory/locales/activerecord.en.yml +0 -13
- data/lib/mumuki/laboratory/locales/activerecord.es.yml +0 -42
- data/lib/mumuki/laboratory/locales/narrator.en.yml +0 -14
- data/lib/mumuki/laboratory/locales/narrator.es.yml +0 -14
- data/lib/mumuki/laboratory/locales/narrator.pt.yml +0 -14
- data/lib/mumuki/laboratory/mumukit/auth.rb +0 -6
- data/lib/mumuki/laboratory/mumukit/login.rb +0 -4
- data/lib/mumuki/laboratory/mumukit/nuntius.rb +0 -6
- data/lib/mumuki/laboratory/mumukit/platform.rb +0 -34
- data/lib/mumuki/laboratory/seed.rb +0 -33
- data/lib/mumuki/laboratory/status.rb +0 -72
- data/lib/mumuki/laboratory/status/discussion/closed.rb +0 -15
- data/lib/mumuki/laboratory/status/discussion/discussion.rb +0 -44
- data/lib/mumuki/laboratory/status/discussion/opened.rb +0 -31
- data/lib/mumuki/laboratory/status/discussion/pending_review.rb +0 -15
- data/lib/mumuki/laboratory/status/discussion/solved.rb +0 -19
- data/lib/mumuki/laboratory/status/submission/aborted.rb +0 -11
- data/lib/mumuki/laboratory/status/submission/errored.rb +0 -19
- data/lib/mumuki/laboratory/status/submission/failed.rb +0 -15
- data/lib/mumuki/laboratory/status/submission/manual_evaluation_pending.rb +0 -15
- data/lib/mumuki/laboratory/status/submission/passed.rb +0 -11
- data/lib/mumuki/laboratory/status/submission/passed_with_warnings.rb +0 -15
- data/lib/mumuki/laboratory/status/submission/pending.rb +0 -11
- data/lib/mumuki/laboratory/status/submission/running.rb +0 -15
- data/lib/mumuki/laboratory/status/submission/submission.rb +0 -38
- data/lib/tasks/guides.rake +0 -11
- data/spec/dummy/config/initializers/application_controller_renderer.rb +0 -8
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/dummy/config/initializers/inflections.rb +0 -16
- data/spec/dummy/config/initializers/mime_types.rb +0 -4
@@ -263,7 +263,7 @@ describe Exercise, organization_workspace: :test do
|
|
263
263
|
end
|
264
264
|
|
265
265
|
context 'and test is nil' do
|
266
|
-
let(:exercise) { create(:exercise, test: nil, expectations: [{}]) }
|
266
|
+
let(:exercise) { create(:exercise, test: nil, expectations: [{binding: "program", inspection: 'Uses:foo'}]) }
|
267
267
|
|
268
268
|
it { expect(assignment.test).to eq nil }
|
269
269
|
end
|
@@ -435,8 +435,6 @@ describe Exercise, organization_workspace: :test do
|
|
435
435
|
it { expect(problem.messages_url_for(student))
|
436
436
|
.to eq 'http://test.classroom-api.localmumuki.io/api/guides/mumuki/myguide/32/student/twitter%7C12134342/messages?language=haskell' }
|
437
437
|
end
|
438
|
-
|
439
|
-
|
440
438
|
end
|
441
439
|
|
442
440
|
describe '#splitted_description' do
|
@@ -444,4 +442,29 @@ describe Exercise, organization_workspace: :test do
|
|
444
442
|
it { expect(exercise.description_context).to eq "<p><strong>Foo</strong></p>\n" }
|
445
443
|
it { expect(exercise.description_task).to eq "<p><em>Bar</em></p>\n" }
|
446
444
|
end
|
445
|
+
|
446
|
+
describe '#validate!' do
|
447
|
+
context 'non-empty, valid randomizations' do
|
448
|
+
let(:exercise) { build(:exercise,
|
449
|
+
randomizations: {
|
450
|
+
some_word: { type: :one_of, value: %w('some' 'word') },
|
451
|
+
some_number: { type: :range, value: [1, 10] } }) }
|
452
|
+
it { expect { exercise.validate! }.not_to raise_error }
|
453
|
+
end
|
454
|
+
|
455
|
+
context 'empty inspections' do
|
456
|
+
let(:exercise) { build(:exercise, expectations: [{ "binding" => "program", "inspection" => "" }]) }
|
457
|
+
it { expect { exercise.validate! }.to raise_error(/expectations format is invalid/i) }
|
458
|
+
end
|
459
|
+
|
460
|
+
context 'invalid assistance_rules' do
|
461
|
+
let(:exercise) { build(:exercise, assistance_rules: [{ when: 'content_empty', then: ['asd'] }]) }
|
462
|
+
it { expect { exercise.validate! }.to raise_error(/assistance rules format is invalid/i) }
|
463
|
+
end
|
464
|
+
|
465
|
+
context 'invalid randomizations' do
|
466
|
+
let(:exercise) { build(:exercise, randomizations: { type: :range, value: [1] }) }
|
467
|
+
it { expect { exercise.validate! }.to raise_error(/randomizations format is invalid/i) }
|
468
|
+
end
|
469
|
+
end
|
447
470
|
end
|
@@ -6,11 +6,11 @@ describe Guide do
|
|
6
6
|
let!(:gobstones) { create(:gobstones) }
|
7
7
|
let(:reloaded_exercise_1) { Exercise.find(exercise_1.id) }
|
8
8
|
|
9
|
-
let(:
|
9
|
+
let(:guide_resource_h) do
|
10
10
|
{name: 'sample guide',
|
11
11
|
description: 'Baz',
|
12
12
|
slug: 'mumuki/sample-guide',
|
13
|
-
language: 'haskell',
|
13
|
+
language: { name: 'haskell' },
|
14
14
|
locale: 'en',
|
15
15
|
extra: 'bar',
|
16
16
|
teacher_info: 'an info',
|
@@ -23,7 +23,7 @@ describe Guide do
|
|
23
23
|
tag_list: %w(baz bar),
|
24
24
|
layout: 'input_bottom',
|
25
25
|
teacher_info: 'an info',
|
26
|
-
language: 'gobstones',
|
26
|
+
language: { name: 'gobstones' },
|
27
27
|
solution: 'foo',
|
28
28
|
assistance_rules: [
|
29
29
|
{when: :content_empty, then: 'remember to copy the code in the editor!'},
|
@@ -53,7 +53,7 @@ describe Guide do
|
|
53
53
|
name: 'Choice',
|
54
54
|
tag_list: %w(bar),
|
55
55
|
extra: '',
|
56
|
-
language: 'text',
|
56
|
+
language: { name: 'text' },
|
57
57
|
test: "---\nequal: '1'\n",
|
58
58
|
choices: [{value: 'foo', checked: false}, {value: 'bar', chekced: true}],
|
59
59
|
extra_visible: false,
|
@@ -64,13 +64,13 @@ describe Guide do
|
|
64
64
|
expectations: [],
|
65
65
|
choices: [],
|
66
66
|
tag_list: %w(bar),
|
67
|
-
language: 'text',
|
67
|
+
language: { name: 'text' },
|
68
68
|
layout: 'input_bottom',
|
69
69
|
extra_visible: false,
|
70
|
-
id: 9}]}
|
70
|
+
id: 9}]}
|
71
71
|
end
|
72
72
|
|
73
|
-
describe '#
|
73
|
+
describe '#import_from_resource_h!' do
|
74
74
|
context 'when an exercise is deleted' do
|
75
75
|
let(:guide) { create(:guide, exercises: [exercise_1, exercise_2, exercise_3, exercise_4, exercise_5, exercise_6]) }
|
76
76
|
|
@@ -111,7 +111,7 @@ describe Guide do
|
|
111
111
|
number: 6) }
|
112
112
|
|
113
113
|
before do
|
114
|
-
guide.
|
114
|
+
guide.import_from_resource_h!(guide_resource_h)
|
115
115
|
end
|
116
116
|
|
117
117
|
describe 'it is removed from the guide' do
|
@@ -129,7 +129,7 @@ describe Guide do
|
|
129
129
|
let(:guide) { lesson.guide }
|
130
130
|
|
131
131
|
before do
|
132
|
-
guide.
|
132
|
+
guide.import_from_resource_h!(guide_resource_h)
|
133
133
|
end
|
134
134
|
|
135
135
|
it { expect(guide).to_not be nil }
|
@@ -159,7 +159,7 @@ describe Guide do
|
|
159
159
|
let(:guide) { create(:guide, language: haskell, exercises: [exercise_1]) }
|
160
160
|
|
161
161
|
before do
|
162
|
-
guide.
|
162
|
+
guide.import_from_resource_h! guide_resource_h
|
163
163
|
end
|
164
164
|
|
165
165
|
context 'when exercise changes its type' do
|
@@ -241,7 +241,7 @@ describe Guide do
|
|
241
241
|
let(:reloaded_exercise_2) { Exercise.find(exercise_2.id) }
|
242
242
|
|
243
243
|
before do
|
244
|
-
guide.
|
244
|
+
guide.import_from_resource_h! guide_resource_h
|
245
245
|
end
|
246
246
|
|
247
247
|
describe 'exercises are not duplicated' do
|
@@ -267,11 +267,11 @@ describe Guide do
|
|
267
267
|
|
268
268
|
context 'when new_expecations' do
|
269
269
|
let(:guide) { create(:guide, language: haskell) }
|
270
|
-
let(:
|
270
|
+
let(:guide_resource_h) do
|
271
271
|
{name: 'sample guide',
|
272
272
|
description: 'Baz',
|
273
273
|
slug: 'mumuki/sample-guide',
|
274
|
-
language: 'haskell',
|
274
|
+
language: { name: 'haskell' },
|
275
275
|
locale: 'en',
|
276
276
|
extra: 'bar',
|
277
277
|
teacher_info: 'an info',
|
@@ -285,11 +285,11 @@ describe Guide do
|
|
285
285
|
type: 'problem',
|
286
286
|
expectations: [{inspection: 'HasBinding', binding: 'foo'}],
|
287
287
|
new_expectations: true,
|
288
|
-
id: 2}]}
|
288
|
+
id: 2}]}
|
289
289
|
end
|
290
290
|
|
291
291
|
before do
|
292
|
-
guide.
|
292
|
+
guide.import_from_resource_h! guide_resource_h
|
293
293
|
end
|
294
294
|
|
295
295
|
it { expect(guide.exercises.first.new_expectations).to be_truthy }
|
data/spec/models/guide_spec.rb
CHANGED
@@ -24,10 +24,60 @@ describe Guide, organization_workspace: :test do
|
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
27
|
-
describe '#
|
28
|
-
|
29
|
-
|
30
|
-
|
27
|
+
describe '#fork!' do
|
28
|
+
let(:syncer) { double(:syncer) }
|
29
|
+
let!(:guide_from) { create :guide, slug: 'foo/bar' }
|
30
|
+
let(:slug_from) { guide_from.slug }
|
31
|
+
let(:slug_to) { 'baz/bar'.to_mumukit_slug }
|
32
|
+
let(:guide_to) { Guide.find_by_slug! slug_to.to_s }
|
33
|
+
let!(:guide) { create(:guide, slug: 'test/bar') }
|
34
|
+
|
35
|
+
context 'fork works' do
|
36
|
+
before { expect(syncer).to receive(:export!).with(instance_of(Guide)) }
|
37
|
+
before { Guide.find_by_slug!(slug_from).fork_to! 'baz', syncer }
|
38
|
+
it { expect(guide_from.to_resource_h).to json_eq guide_to.to_resource_h, except: [:slug] }
|
39
|
+
end
|
40
|
+
|
41
|
+
context 'fork does not work if guide already exists' do
|
42
|
+
before { expect(syncer).to_not receive(:export!) }
|
43
|
+
it { expect { Guide.find_by_slug!(slug_from).fork_to! 'test', syncer }.to raise_error ActiveRecord::RecordInvalid }
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe '#to_markdownified_resource_h' do
|
48
|
+
subject { guide.to_markdownified_resource_h }
|
49
|
+
context 'description' do
|
50
|
+
let(:guide) { create(:guide, description: '`foo = (+)`') }
|
51
|
+
it { expect(subject[:description]).to eq("<p><code>foo = (+)</code></p>\n") }
|
52
|
+
end
|
53
|
+
context 'corollary' do
|
54
|
+
let(:guide) { create(:guide, corollary: '[Google](https://google.com)') }
|
55
|
+
it { expect(subject[:corollary]).to eq("<p><a title=\"\" href=\"https://google.com\" target=\"_blank\">Google</a></p>\n") }
|
56
|
+
end
|
57
|
+
context 'teacher_info' do
|
58
|
+
let(:guide) { create(:guide, teacher_info: '**foo**') }
|
59
|
+
it { expect(subject[:teacher_info]).to eq("<p><strong>foo</strong></p>\n") }
|
60
|
+
end
|
61
|
+
context 'exercises' do
|
62
|
+
let(:guide) { create(:guide, exercises: [exercise]) }
|
63
|
+
subject { guide.to_markdownified_resource_h[:exercises].first }
|
64
|
+
|
65
|
+
context 'description' do
|
66
|
+
let(:exercise) { build(:exercise, description: '`foo = (+)`') }
|
67
|
+
it { expect(subject[:description]).to eq("<p><code>foo = (+)</code></p>\n") }
|
68
|
+
end
|
69
|
+
context 'corollary' do
|
70
|
+
let(:exercise) { build(:exercise, corollary: '[Google](https://google.com)') }
|
71
|
+
it { expect(subject[:corollary]).to eq("<p><a title=\"\" href=\"https://google.com\" target=\"_blank\">Google</a></p>\n") }
|
72
|
+
end
|
73
|
+
context 'teacher_info' do
|
74
|
+
let(:exercise) { build(:exercise, teacher_info: '**foo**') }
|
75
|
+
it { expect(subject[:teacher_info]).to eq("<p><strong>foo</strong></p>\n") }
|
76
|
+
end
|
77
|
+
context 'hint' do
|
78
|
+
let(:exercise) { build(:exercise, hint: '***foo***') }
|
79
|
+
it { expect(subject[:hint]).to eq("<p><strong><em>foo</em></strong></p>\n") }
|
80
|
+
end
|
31
81
|
end
|
32
82
|
end
|
33
83
|
end
|
@@ -1,15 +1,22 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
describe Language do
|
4
|
-
|
4
|
+
describe 'name uniqness' do
|
5
|
+
let!(:gobstones) { create(:language, name: 'Gobstones') }
|
5
6
|
|
6
|
-
|
7
|
-
|
8
|
-
|
7
|
+
it { expect { create :language, name: 'gobstones' }.to raise_exception(ActiveRecord::RecordInvalid) }
|
8
|
+
it { expect(Language.for_name 'gobstones').to eq gobstones }
|
9
|
+
it { expect(Language.for_name nil).to be nil}
|
10
|
+
end
|
9
11
|
|
10
12
|
describe '#import!' do
|
11
|
-
let(:
|
12
|
-
|
13
|
+
let(:bridge) { Mumukit::Bridge::Runner.new('http://runner.com') }
|
14
|
+
before { expect(bridge).to receive(:info).and_return response }
|
15
|
+
before { subject.import_from_resource_h! bridge.importable_info }
|
16
|
+
|
17
|
+
context 'non graphical language' do
|
18
|
+
subject { create(:language, name: 'ruby') }
|
19
|
+
let(:response) do
|
13
20
|
{
|
14
21
|
'name' => 'ruby',
|
15
22
|
'version' => 'master',
|
@@ -40,24 +47,21 @@ describe Language do
|
|
40
47
|
},
|
41
48
|
'url' => 'http://ruby.runners.mumuki.io/info'
|
42
49
|
}
|
43
|
-
|
50
|
+
end
|
44
51
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
it { expect(ruby.prompt).to eq '> ' }
|
55
|
-
it { expect(ruby.stateful_console).to be true }
|
56
|
-
end
|
52
|
+
it { expect(subject.name).to eq 'ruby' }
|
53
|
+
it { expect(subject.queriable).to be true }
|
54
|
+
it { expect(subject.output_content_type).to eq Mumukit::ContentType::Markdown }
|
55
|
+
it { expect(subject.visible_success_output).to be false }
|
56
|
+
it { expect(subject.highlight_mode).to eq 'ruby' }
|
57
|
+
it { expect(subject.devicon).to eq 'ruby' }
|
58
|
+
it { expect(subject.prompt).to eq '> ' }
|
59
|
+
it { expect(subject.stateful_console).to be true }
|
60
|
+
end
|
57
61
|
|
58
|
-
|
59
|
-
|
60
|
-
|
62
|
+
context 'graphical language' do
|
63
|
+
subject { create(:language, name: 'gobstones', runner_url: 'http://runner.com') }
|
64
|
+
let(:response) do
|
61
65
|
{
|
62
66
|
'name' => 'gobstones',
|
63
67
|
'version' => 'master',
|
@@ -74,14 +78,14 @@ describe Language do
|
|
74
78
|
'structured' => true
|
75
79
|
},
|
76
80
|
'layout_assets_urls' => {
|
77
|
-
|
78
|
-
|
79
|
-
|
81
|
+
'js' => ['javascripts/a.js'],
|
82
|
+
'html' => ['b.html', 'c.html'],
|
83
|
+
'css' => ['stylesheets/d.css']
|
80
84
|
},
|
81
85
|
'editor_assets_urls' => {
|
82
|
-
|
83
|
-
|
84
|
-
|
86
|
+
'js' => ['javascripts/aa.js'],
|
87
|
+
'html' => ['bb.html', 'cc.html'],
|
88
|
+
'css' => ['stylesheets/dd.css']
|
85
89
|
},
|
86
90
|
'language' => {
|
87
91
|
'name' => 'gobstones',
|
@@ -96,24 +100,22 @@ describe Language do
|
|
96
100
|
},
|
97
101
|
'url' => 'http://runners2.mumuki.io:8001/info'
|
98
102
|
}
|
99
|
-
|
103
|
+
end
|
100
104
|
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
it { expect(gobstones.editor_html_urls).to eq ['runner.com/bb.html', 'runner.com/cc.html'] }
|
117
|
-
it { expect(gobstones.editor_css_urls).to eq ['runner.com/stylesheets/dd.css'] }
|
105
|
+
it { expect(subject.name).to eq 'gobstones' }
|
106
|
+
it { expect(subject.queriable).to be false }
|
107
|
+
it { expect(subject.output_content_type).to eq Mumukit::ContentType::Html }
|
108
|
+
it { expect(subject.visible_success_output).to be true }
|
109
|
+
it { expect(subject.highlight_mode).to eq 'gobstones' }
|
110
|
+
it { expect(subject.devicon).to eq 'gobstones' }
|
111
|
+
it { expect(subject.prompt).to eq 'ム ' }
|
112
|
+
it { expect(subject.stateful_console).to be false }
|
113
|
+
it { expect(subject.layout_js_urls).to eq ['http://runner.com/javascripts/a.js'] }
|
114
|
+
it { expect(subject.layout_html_urls).to eq ['http://runner.com/b.html', 'http://runner.com/c.html'] }
|
115
|
+
it { expect(subject.layout_css_urls).to eq ['http://runner.com/stylesheets/d.css'] }
|
116
|
+
it { expect(subject.editor_js_urls).to eq ['http://runner.com/javascripts/aa.js'] }
|
117
|
+
it { expect(subject.editor_html_urls).to eq ['http://runner.com/bb.html', 'http://runner.com/cc.html'] }
|
118
|
+
it { expect(subject.editor_css_urls).to eq ['http://runner.com/stylesheets/dd.css'] }
|
119
|
+
end
|
118
120
|
end
|
119
121
|
end
|
data/spec/models/message_spec.rb
CHANGED
@@ -21,7 +21,7 @@ describe Message, organization_workspace: :test do
|
|
21
21
|
it { expect(parsed_comment).to eq(expected_json) }
|
22
22
|
end
|
23
23
|
|
24
|
-
describe '.
|
24
|
+
describe '.import_from_resource_h!' do
|
25
25
|
let(:user) { create(:user) }
|
26
26
|
let(:problem) { create(:problem) }
|
27
27
|
|
@@ -39,10 +39,10 @@ describe Message, organization_workspace: :test do
|
|
39
39
|
'content' => 'a',
|
40
40
|
'created_at' => '1/1/1'}} }
|
41
41
|
|
42
|
-
before { Message.
|
42
|
+
before { Message.import_from_resource_h! data }
|
43
43
|
before do
|
44
44
|
assignment = problem.submit_solution! user, content: ''
|
45
|
-
Message.
|
45
|
+
Message.import_from_resource_h! 'exercise_id' => problem.id,
|
46
46
|
'submission_id' => assignment.submission_id,
|
47
47
|
'organization' => Organization.current.name,
|
48
48
|
'message' => {
|
@@ -54,7 +54,7 @@ describe Message, organization_workspace: :test do
|
|
54
54
|
it { expect(Message.count).to eq 1 }
|
55
55
|
it { expect(message.assignment).to_not be_nil }
|
56
56
|
it { expect(message.assignment).to eq final_assignment }
|
57
|
-
it { expect(message.
|
57
|
+
it { expect(message.to_resource_h.except 'created_at', 'updated_at', 'date')
|
58
58
|
.to json_like submission_id: message.submission_id,
|
59
59
|
content: 'a',
|
60
60
|
sender: 'teacher@mumuki.org',
|
@@ -77,7 +77,7 @@ describe Message, organization_workspace: :test do
|
|
77
77
|
'created_at' => '1/1/1'}} }
|
78
78
|
|
79
79
|
before { problem.submit_solution! user, content: 'other solution' }
|
80
|
-
before { Message.
|
80
|
+
before { Message.import_from_resource_h! data }
|
81
81
|
|
82
82
|
it { expect(Message.count).to eq 0 }
|
83
83
|
it { expect(Assignment.first.has_messages?).to be false }
|
data/spec/models/query_spec.rb
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Query do
|
3
|
+
describe Mumuki::Domain::Submission::Query do
|
4
4
|
let!(:exercise) { create(:exercise) }
|
5
5
|
let(:user) { create(:user) }
|
6
6
|
|
7
7
|
before do
|
8
|
-
expect_any_instance_of(Challenge).to receive(:automated_evaluation_class).and_return(Mumuki::
|
8
|
+
expect_any_instance_of(Challenge).to receive(:automated_evaluation_class).and_return(Mumuki::Domain::Evaluation::Automated)
|
9
9
|
allow_any_instance_of(Language).to receive(:run_query!).and_return(status: :passed, result: '5')
|
10
10
|
end
|
11
11
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Solution, organization_workspace: :test do
|
3
|
+
describe Mumuki::Domain::Submission::Solution, organization_workspace: :test do
|
4
4
|
|
5
5
|
let(:user) { create(:user) }
|
6
6
|
|
@@ -36,7 +36,7 @@ describe Solution, organization_workspace: :test do
|
|
36
36
|
|
37
37
|
describe '#submit_solution!' do
|
38
38
|
|
39
|
-
before { expect_any_instance_of(Challenge).to receive(:automated_evaluation_class).and_return(Mumuki::
|
39
|
+
before { expect_any_instance_of(Challenge).to receive(:automated_evaluation_class).and_return(Mumuki::Domain::Evaluation::Automated) }
|
40
40
|
before { expect_any_instance_of(Language).to receive(:run_tests!).and_return(bridge_response) }
|
41
41
|
|
42
42
|
context 'when results have no expectation' do
|
@@ -17,15 +17,15 @@ describe Guide do
|
|
17
17
|
description: 'topic description',
|
18
18
|
slug: 'mumuki/mumuki-sample-topic',
|
19
19
|
locale: 'en',
|
20
|
-
lessons: [guide_2, guide_1, guide_3].map(&:slug)}
|
20
|
+
lessons: [guide_2, guide_1, guide_3].map(&:slug)}
|
21
21
|
end
|
22
22
|
|
23
|
-
describe '#
|
23
|
+
describe '#import_from_resource_h!' do
|
24
24
|
context 'when guide is empty' do
|
25
25
|
let(:topic) { create(:topic, lessons: [lesson_1, lesson_2]) }
|
26
26
|
|
27
27
|
before do
|
28
|
-
topic.
|
28
|
+
topic.import_from_resource_h!(topic_json)
|
29
29
|
end
|
30
30
|
|
31
31
|
it { expect(topic.name).to eq 'sample topic' }
|