def test_forms_courses_limit_greater_than_1(self, *_):
     """The `limit` param should be greater than 1."""
     form = CourseSearchForm(data=QueryDict(query_string="limit=0"))
     self.assertFalse(form.is_valid())
     self.assertEqual(
         form.errors,
         {"limit": ["Ensure this value is greater than or equal to 1."]})
Пример #2
0
 def test_forms_courses_build_es_query_search_by_match_text(self, *_):
     """
     Happy path: build a query that filters courses by matching text
     """
     form = CourseSearchForm(
         data=QueryDict(query_string="limit=2&offset=20&query=some%20phrase%20terms")
     )
     self.assertTrue(form.is_valid())
     self.assertEqual(
         form.build_es_query()[2],
         {
             "bool": {
                 "must": [
                     {
                         "multi_match": {
                             "analyzer": "english",
                             "fields": [
                                 "description.*",
                                 "title.*",
                                 "categories_names.*^0.05",
                                 "organizations_names.*^0.05",
                                 "persons_names.*^0.05",
                             ],
                             "query": "some phrase terms",
                             "type": "cross_fields",
                         }
                     }
                 ]
             }
         },
     )
    def test_forms_courses_empty_querystring(self, *_):
        """The empty query string should be a valid search form."""
        form = CourseSearchForm(data=QueryDict())
        self.assertTrue(form.is_valid())

        self.assertEqual(
            form.cleaned_data,
            {
                "availability": [],
                "languages": [],
                "levels": [],
                "levels_include": "",
                "limit": None,
                "new": [],
                "offset": None,
                "organizations": [],
                "organizations_include": "",
                "persons": [],
                "persons_include": "",
                "query": "",
                "scope": "",
                "subjects": [],
                "subjects_include": "",
            },
        )
Пример #4
0
 def test_forms_courses_multi_values_in_querystring(self, *_):
     """
     The fields from filter definitions should allow multiple values. The fields defined
     on the form should ignore repeated values (limit, offset and query).
     """
     form = CourseSearchForm(data=QueryDict(query_string=(
         "availability=coming_soon&availability=ongoing&levels=1&levels=2&"
         "languages=fr&languages=en&limit=9&limit=11&offset=3&offset=17&"
         "organizations=10&organizations=11&query=maths&query=physics&new=new&"
         "scope=objects&scope=filters&subjects=1&subjects=2")))
     form.is_valid()
     self.assertTrue(form.is_valid())
     self.assertEqual(
         form.cleaned_data,
         {
             "availability": ["coming_soon", "ongoing"],
             "languages": ["fr", "en"],
             "levels": ["1", "2"],
             "levels_include": "",
             "limit": 9,
             "new": ["new"],
             "offset": 3,
             "organizations": ["10", "11"],
             "organizations_include": "",
             "persons": [],
             "persons_include": "",
             "query": "maths",
             "scope": "objects",
             "subjects": ["1", "2"],
             "subjects_include": "",
         },
     )
Пример #5
0
 def test_forms_courses_single_values_in_querystring(self, *_):
     """
     The fields from filter definitions should be normalized as lists. The fields defined
     on the form should be single values (limit, offset and query)
     """
     form = CourseSearchForm(data=QueryDict(query_string=(
         "availability=coming_soon&levels=1&levels_include=.*&languages=fr&limit=9&"
         "offset=3&organizations=10&organizations_include=.*&query=maths&new=new&"
         "scope=objects&subjects=1&subjects_include=.*")))
     self.assertTrue(form.is_valid())
     self.assertEqual(
         form.cleaned_data,
         {
             "availability": ["coming_soon"],
             "languages": ["fr"],
             "levels": ["1"],
             "levels_include": ".*",
             "limit": 9,
             "new": ["new"],
             "offset": 3,
             "organizations": ["10"],
             "organizations_include": ".*",
             "persons": [],
             "persons_include": "",
             "query": "maths",
             "scope": "objects",
             "subjects": ["1"],
             "subjects_include": ".*",
         },
     )
 def test_forms_courses_offset_greater_than_0(self, *_):
     """The `offset` param should be greater than 0."""
     form = CourseSearchForm(data=QueryDict(query_string="offset=-1"))
     self.assertFalse(form.is_valid())
     self.assertEqual(
         form.errors,
         {"offset": ["Ensure this value is greater than or equal to 0."]},
     )
Пример #7
0
 def test_forms_courses_multi_values_in_querystring(self, *_):
     """
     The fields from filter definitions should allow multiple values. The fields defined
     on the form should ignore repeated values (limit, offset and query).
     """
     form = CourseSearchForm(data=QueryDict(
         query_string=("availability=coming_soon"
                       "&availability=ongoing"
                       "&facet_sorting=name"
                       "&languages=fr"
                       "&languages=en"
                       "&levels=1"
                       "&levels=2"
                       "&levels_aggs=33"
                       "&levels_aggs=34"
                       "&limit=9"
                       "&limit=11"
                       "&new=new"
                       "&offset=3"
                       "&offset=17"
                       "&organizations=10"
                       "&organizations=11"
                       "&organizations_aggs=43"
                       "&organizations_aggs=44"
                       "&query=maths"
                       "&query=physics"
                       "&scope=objects"
                       "&scope=filters"
                       "&subjects=1"
                       "&subjects=2"
                       "&subjects_aggs=89")))
     form.is_valid()
     self.assertTrue(form.is_valid())
     self.assertEqual(
         form.cleaned_data,
         {
             "availability": ["coming_soon", "ongoing"],
             "facet_sorting": "name",
             "languages": ["fr", "en"],
             "levels": ["1", "2"],
             "levels_aggs": ["33", "34"],
             "levels_children_aggs": "",
             "limit": 9,
             "new": ["new"],
             "offset": 3,
             "organizations": ["10", "11"],
             "organizations_aggs": ["43", "44"],
             "organizations_children_aggs": "",
             "persons": [],
             "persons_aggs": [],
             "persons_children_aggs": "",
             "query": "maths",
             "scope": "objects",
             "subjects": ["1", "2"],
             "subjects_aggs": ["89"],
             "subjects_children_aggs": "",
         },
     )
Пример #8
0
 def test_forms_courses_facet_sorting_among_choices(self, *_):
     """The `facet_sorting` param should be one of the available choices."""
     form = CourseSearchForm(data=QueryDict(
         query_string="facet_sorting=none"))
     self.assertFalse(form.is_valid())
     self.assertEqual(
         form.errors,
         {
             "facet_sorting": [
                 "Select a valid choice. none is not one of the available choices."
             ]
         },
     )
Пример #9
0
 def test_forms_courses_single_values_in_querystring(self, *_):
     """
     The fields from filter definitions should be normalized as lists. The fields defined
     on the form should be single values (limit, offset and query)
     """
     form = CourseSearchForm(data=QueryDict(
         query_string=("availability=coming_soon"
                       "&facet_sorting=count"
                       "&languages=fr"
                       "&levels=1"
                       "&limit=9"
                       "&new=new"
                       "&offset=3"
                       "&organizations=10"
                       "&query=maths"
                       "&scope=objects"
                       "&subjects=1")))
     self.assertTrue(form.is_valid())
     self.assertEqual(
         form.cleaned_data,
         {
             "availability": ["coming_soon"],
             "facet_sorting": "count",
             "languages": ["fr"],
             "levels": ["1"],
             "levels_aggs": [],
             "levels_children_aggs": "",
             "licences": [],
             "licences_aggs": [],
             "licences_children_aggs": "",
             "limit": 9,
             "new": ["new"],
             "offset": 3,
             "organizations": ["10"],
             "organizations_aggs": [],
             "organizations_children_aggs": "",
             "persons": [],
             "persons_aggs": [],
             "persons_children_aggs": "",
             "query": "maths",
             "pace": [],
             "scope": "objects",
             "subjects": ["1"],
             "subjects_aggs": [],
             "subjects_children_aggs": "",
         },
     )
    def test_forms_courses_offset_integer(self, *_):
        """The `offset` param should be an integer."""
        form = CourseSearchForm(data=QueryDict(query_string="offset=a"))
        self.assertFalse(form.is_valid())
        self.assertEqual(form.errors, {"offset": ["Enter a whole number."]})

        form = CourseSearchForm(data=QueryDict(query_string="offset=1"))
        self.assertTrue(form.is_valid())
    def test_forms_courses_query_between_3_and_100_characters_long(self, *_):
        """The `query` param should be between 3 and 100 characters long."""
        form = CourseSearchForm(data=QueryDict(query_string="query=aa"))
        self.assertFalse(form.is_valid())
        self.assertEqual(
            form.errors,
            {
                "query":
                ["Ensure this value has at least 3 characters (it has 2)."]
            },
        )

        form = CourseSearchForm(data=QueryDict(query_string="query=aaa"))
        self.assertTrue(form.is_valid())

        form = CourseSearchForm(data=QueryDict(
            query_string="query={:s}".format("a" * 100)))
        self.assertTrue(form.is_valid())

        form = CourseSearchForm(data=QueryDict(
            query_string="query={:s}".format("a" * 101)))
        self.assertFalse(form.is_valid())
        self.assertEqual(
            form.errors,
            {
                "query":
                ["Ensure this value has at most 100 characters (it has 101)."]
            },
        )
 def test_forms_courses_params_not_required(self, *_):
     """No params are required for the search form."""
     form = CourseSearchForm()
     self.assertTrue(form.is_valid())
Пример #13
0
 def test_forms_courses_build_es_query_search_by_match_text(self, *_):
     """
     Happy path: build a query that filters courses by matching text
     """
     form = CourseSearchForm(data=QueryDict(
         query_string="limit=2&offset=20&query=some%20phrase%20terms"))
     self.assertTrue(form.is_valid())
     self.assertEqual(
         form.build_es_query()[2]["function_score"]["query"],
         {
             "bool": {
                 "filter": {
                     "term": {
                         "is_listed": True
                     }
                 },
                 "must": [{
                     "bool": {
                         "should": [
                             {
                                 "multi_match": {
                                     "analyzer":
                                     "english",
                                     "fields": [
                                         "description.*",
                                         "introduction.*",
                                         "title.*^50",
                                         "categories_names.*^0.05",
                                         "organizations_names.*^0.05",
                                         "persons_names.*^0.05",
                                     ],
                                     "query":
                                     "some phrase terms",
                                     "type":
                                     "best_fields",
                                 }
                             },
                             {
                                 "match": {
                                     "code": {
                                         "query": "some phrase terms",
                                         "analyzer": "code",
                                         "boost": 3000,
                                     }
                                 }
                             },
                             {
                                 "match": {
                                     "code": {
                                         "query": "some phrase terms",
                                         "analyzer": "code",
                                         "fuzziness": "AUTO",
                                     }
                                 }
                             },
                         ]
                     }
                 }],
             }
         },
     )