コード例 #1
0
    def test_sorting_quality(self):
        """" Test questions get sorted by quality in a descending order first and then in an ascending order"""
        course = self._bootstrap_courses(1)
        user = self._bootstrap_user(1)
        author = CourseUser.objects.create(user=user, course=course)
        self._bootstrap_topics(course)
        self._bootstrap_questions(author)

        #Test descending order
        quality = 1
        for q in Question.objects.all():
            q.quality = quality
            quality += 1
            q.save()

        test_search = SearchService.SearchService(course)
        test_search.add_sort("quality", "DESC", author)
        sorted_questions = test_search.execute()
        #make sure next question has lower quality
        for i in range(0, sorted_questions.count() - 1):
            self.assertTrue(
                sorted_questions[i].quality > sorted_questions[i + 1].quality)

        #Test ascending order
        quality = 10
        for q in Question.objects.all():
            q.qualityCount = quality
            quality -= 1
            q.save()

        test_search = SearchService.SearchService(course)
        #The sorting order does not matter as anything that is not DESC will be considered ascending
        test_search.add_sort("quality", "ASC", author)
        sorted_questions = test_search.execute()
        #make sure next question has higher quality
        for i in range(0, sorted_questions.count() - 1):
            self.assertTrue(
                sorted_questions[i].quality < sorted_questions[i + 1].quality)
コード例 #2
0
    def test_search_service_constructor(self):
        """Test the creation of a search service raises no exceptions"""
        course = self._bootstrap_courses(1)
        user = self._bootstrap_user(1)
        author = CourseUser.objects.create(user=user, course=course)
        self._bootstrap_topics(course)
        self._bootstrap_questions(author)

        try:
            test_search = SearchService.SearchService(course)
        except Exception as e:
            self.fail("Search constructor raised exception:  " + str(e))

        #Checking the query returns all the questions created = 5
        num_questions = Question.objects.count()
        self.assertEqual(num_questions, test_search.execute().count())
コード例 #3
0
    def test_topic_filter_many_topics(self):
        """Test that filtering with many topics give all the questions that contain any of those topics"""
        course = self._bootstrap_courses(1)
        user = self._bootstrap_user(1)
        author = CourseUser.objects.create(user=user, course=course)
        self._bootstrap_topics(course)
        self._bootstrap_questions(author)

        test_search = SearchService.SearchService(course)
        topic = Topic.objects.filter(name__in=["t2", "t3", "t4"])
        filtered_questions = Question.objects.filter(topics__in=topic)
        test_search.add_topic_filter(topic)
        for i in test_search.execute():
            self.assertTrue(i in filtered_questions)

        #In common.py 4 questions are defined with topic t2, t3, or t4
        self.assertEqual(test_search.execute().count(), 4)
コード例 #4
0
    def test_topic_filter_single_topic(self):
        """Test that filtering trough a single topic gives only questions that contain that topic"""
        course = self._bootstrap_courses(1)
        user = self._bootstrap_user(1)
        author = CourseUser.objects.create(user=user, course=course)
        self._bootstrap_topics(course)
        self._bootstrap_questions(author)

        test_search = SearchService.SearchService(course)
        topic = Topic.objects.filter(name="t1")
        filtered_questions = Question.objects.filter(topics__in=topic)
        test_search.add_topic_filter(topic)
        for i in test_search.execute():
            self.assertTrue(i in filtered_questions)

        #In common.py 2 questions are defined with topic t2
        self.assertEqual(test_search.execute().count(), 2)
コード例 #5
0
    def test_add_filter_unanswered(self):
        """Test that questions are filtered when they have not been answered before, no QuestionResponse"""
        course = self._bootstrap_courses(1)
        user = self._bootstrap_user(1)
        author = CourseUser.objects.create(user=user, course=course)
        self._bootstrap_topics(course)
        self._bootstrap_questions(author)
        self._bootstrap_question_choices(correct_id=2)

        #answer the first two questions
        QuestionService.respond_to_question(2, author)
        QuestionService.respond_to_question(6, author)

        test_search = SearchService.SearchService(course)
        test_search.add_filter("unanswered", author)
        unanswered_questions = test_search.execute()

        # Check searched questions should be the last 3 unanaswered ones
        for i in unanswered_questions:
            self.assertTrue(i in Question.objects.all()[2:5])
        self.assertEqual(test_search.execute().count(), 3)
コード例 #6
0
    def test_add_filter_answered(self):
        """test that questions can be filtered if they have been answered before, QuestionResponse exists"""
        course = self._bootstrap_courses(1)
        user = self._bootstrap_user(1)
        author = CourseUser.objects.create(user=user, course=course)
        self._bootstrap_topics(course)
        self._bootstrap_questions(author)
        self._bootstrap_question_choices(correct_id=2)

        #answer the first two questions
        QuestionService.respond_to_question(2, author)
        QuestionService.respond_to_question(6, author)

        test_search = SearchService.SearchService(course)
        test_search.add_filter("answered", author)
        answered_questions = test_search.execute()

        # Check searched questions should be the first 2 answered ones
        for i in answered_questions:
            self.assertTrue(i in Question.objects.all()[0:2])
        self.assertEqual(test_search.execute().count(), 2)
コード例 #7
0
ファイル: views.py プロジェクト: muhammadazani/RiPPLE-Core
def search(request):
    if request.method != 'POST':
        return JsonResponse({
            "error": "Must use POST to this endpoint"
        }, status=405)

    logged_in_user = UserService.logged_in_user(request)
    search_query = SearchService.SearchService(logged_in_user.course)
    post_request = loads(request.body.decode("utf-8"))
    sort_field = post_request.get("sortField", None)
    filter_field = post_request.get("filterField", None)
    filter_topics = post_request.get("filterTopics", None)
    query = post_request.get("query", None)
    sort_order = post_request.get("sortOrder", None)
    page_index = post_request.get("page", None)
    page_size = post_request.get("pageSize", 25)

    if sort_field is None and filter_field is None and query is None:
        search_result = search_query.execute()
        return page_response(search_result, page_index, page_size)

    if sort_field is not None:
        search_query.add_sort(sort_field, sort_order, logged_in_user)

    if filter_field is not None:
        search_query.add_filter(filter_field, logged_in_user)

    if filter_topics is not None:
        search_query.add_topic_filter(filter_topics)

    if query is not None:
        search_query.text_search(query)

    try:
        search_result = search_query.execute()
        return page_response(search_result, page_index, page_size)
    except TypeError as e:
        return JsonResponse({
            "error": e
        })
コード例 #8
0
    def test_text_search(self):
        """Check that questions can be filtered by content text search"""
        course = self._bootstrap_courses(1)
        user = self._bootstrap_user(1)
        author = CourseUser.objects.create(user=user, course=course)
        self._bootstrap_topics(course)
        self._bootstrap_questions(author)
        test_search = SearchService.SearchService(course)

        #Change content on the first 3 questions
        num_test_questions = 3
        for i in range(0, num_test_questions):
            question_to_change = Question.objects.all()[i]
            question_to_change.content = "look for this"
            question_to_change.save()

        test_search.text_search("look for this")
        searched_questions = test_search.execute()

        for i in searched_questions:
            self.assertTrue(i in Question.objects.all()[0:num_test_questions])
        self.assertEqual(test_search.execute().count(), num_test_questions)
コード例 #9
0
    def test_sorting_responses_ascending(self):
        """Check that the questions get sorted by their number of responses in ascending order """
        course = self._bootstrap_courses(1)
        user = self._bootstrap_user(1)
        author = CourseUser.objects.create(user=user, course=course)
        responder_user = self._bootstrap_user(2)
        first_responder = CourseUser.objects.create(user=responder_user,
                                                    course=course)
        another_responder_user = self._bootstrap_user(3)
        second_responder = CourseUser.objects.create(
            user=another_responder_user, course=course)
        self._bootstrap_topics(course)
        self._bootstrap_questions(author)
        self._bootstrap_question_choices(correct_id=2)

        #First question is responded 3 times, started from the back to ensure descending sorting happens
        QuestionService.respond_to_question(1, author)
        QuestionService.respond_to_question(2, first_responder)
        QuestionService.respond_to_question(3, second_responder)
        #Second question is responded two times
        QuestionService.respond_to_question(5, author)
        QuestionService.respond_to_question(6, first_responder)
        #Third question is responded once
        QuestionService.respond_to_question(9, author)

        test_search = SearchService.SearchService(course)
        #The sorting order does not matter as anything that is not DESC will be considered ascending
        test_search.add_sort("responses", "ASC", author)
        sorted_questions = test_search.execute()
        for i in range(0, sorted_questions.count() - 1):
            responses = QuestionResponse.objects.filter(
                response__in=Distractor.objects.filter(
                    question=Question.objects.get(id=sorted_questions[i].id)))
            next_responses = QuestionResponse.objects.filter(
                response__in=Distractor.objects.filter(
                    question=Question.objects.get(id=sorted_questions[i +
                                                                      1].id)))
            self.assertTrue(responses.count() <= next_responses.count())
コード例 #10
0
    def test_add_filter_improve(self):
        """
            Test that questions can be filtered by questions answered where user did not get maximun score.
            QuestionResponse exists but Question Score < 1
        """
        course = self._bootstrap_courses(1)
        user = self._bootstrap_user(1)
        author = CourseUser.objects.create(user=user, course=course)
        self._bootstrap_topics(course)
        self._bootstrap_questions(author)
        self._bootstrap_question_choices(correct_id=2)

        #answer the first question correctly after two tries
        QuestionService.respond_to_question(3, author)
        QuestionService.respond_to_question(2, author)

        test_search = SearchService.SearchService(course)
        test_search.add_filter("improve", author)
        improve_questions = test_search.execute()

        self.assertEqual(Question.objects.all().first(),
                         improve_questions.first())
        self.assertEqual(test_search.execute().count(), 1)
コード例 #11
0
def search(request):
    if request.method != 'POST':
        return JsonResponse({
            "error": "Must use POST to this endpoint"
        }, status=405)

    search = SearchService.SearchService()
    post_request = loads(request.body)
    sort_field = post_request.get("sortField", None)
    filter_field = post_request.get("filterField", None)
    filter_topics = post_request.get("filterTopics", None)
    query = post_request.get("query", None)
    sort_order = post_request.get("sortOrder", None)
    page = post_request.get("page", None)

    if sort_field is None and filter_field is None and query is None:
        found_questions = QuestionService.allQuestions()
        return page_response(found_questions, page)

    if sort_field is not None:
        search.addSort(sort_field, sort_order)

    if filter_field is not None:
        search.addFilter(filter_field)

    if filter_topics is not None:
        search.addTopicFilter(filter_topics)

    if query is not None:
        search.textSearch(query)

    try:
        search_result = search.execute()
        return page_response(search_result, page)
    except TypeError:
        all_questions = QuestionService.allQuestions()
        return page_response(all_questions, page)
コード例 #12
0
    def test_sorting_created_time(self):
        """" Test questions get sorted by created_time in a descending order first and then in an ascending order"""
        course = self._bootstrap_courses(1)
        user = self._bootstrap_user(1)
        author = CourseUser.objects.create(user=user, course=course)
        self._bootstrap_topics(course)
        self._bootstrap_questions(author)

        #Test descending order, creates date object and changes by day
        day_index = 1
        time_created = datetime(1999,
                                12,
                                day_index,
                                23,
                                59,
                                59,
                                100,
                                tzinfo=pytz.UTC)
        for q in Question.objects.all():
            q.created_time = time_created
            day_index += 1
            time_created = datetime(1999,
                                    12,
                                    day_index,
                                    23,
                                    59,
                                    59,
                                    100,
                                    tzinfo=pytz.UTC)
            q.save()

        test_search = SearchService.SearchService(course)
        test_search.add_sort("created_time", "DESC", author)
        sorted_questions = test_search.execute()
        #make sure next question has lower created_time
        for i in range(0, sorted_questions.count() - 1):
            self.assertTrue(sorted_questions[i].created_time >
                            sorted_questions[i + 1].created_time)

        #Test ascending order
        day_index = 31
        time_created = datetime(1999,
                                12,
                                day_index,
                                23,
                                59,
                                59,
                                100,
                                tzinfo=pytz.UTC)
        for q in Question.objects.all():
            q.created_time = time_created
            day_index -= 1
            time_created = datetime(1999,
                                    12,
                                    day_index,
                                    23,
                                    59,
                                    59,
                                    100,
                                    tzinfo=pytz.UTC)
            q.save()

        test_search = SearchService.SearchService(course)
        #The sorting order does not matter as anything that is not DESC will be considered ascending
        test_search.add_sort("created_time", "ASC", author)
        sorted_questions = test_search.execute()
        #make sure next question has higher created_time
        for i in range(0, sorted_questions.count() - 1):
            self.assertTrue(sorted_questions[i].created_time <
                            sorted_questions[i + 1].created_time)