예제 #1
0
파일: test_cron.py 프로젝트: 1234-/kitsune
    def test_old_articles_helpful(self):
        """Doesn't return helpful votes within range"""
        r = _make_backdated_revision(90)

        for x in range(0, 4):
            _add_vote_in_past(r, 1, 10)

        _add_vote_in_past(r, 0, 10)

        result = _get_old_unhelpful()
        eq_(0, len(result))
예제 #2
0
파일: test_cron.py 프로젝트: zctyhj/kitsune
    def test_old_articles_helpful(self):
        """Doesn't return helpful votes within range"""
        r = _make_backdated_revision(90)

        for x in range(0, 4):
            _add_vote_in_past(r, 1, 10)

        _add_vote_in_past(r, 0, 10)

        result = _get_old_unhelpful()
        eq_(0, len(result))
예제 #3
0
파일: test_cron.py 프로젝트: 1234-/kitsune
    def test_old_articles(self):
        """Returns unhelpful votes within time range"""
        r = _make_backdated_revision(10)

        # Add 4 no votes 1.5 weeks ago
        for x in range(4):
            _add_vote_in_past(r, 0, 10)

        # Add 1 yes vote 1.5 weeks ago
        _add_vote_in_past(r, 1, 10)

        result = _get_old_unhelpful()
        eq_(1, len(result))
        self.assertAlmostEqual(0.2, result[r.document.id]['percentage'])
        eq_(5, result[r.document.id]['total'])
예제 #4
0
파일: test_cron.py 프로젝트: zctyhj/kitsune
    def test_old_articles(self):
        """Returns unhelpful votes within time range"""
        r = _make_backdated_revision(90)

        # Add 4 no votes 1.5 months ago
        for x in range(0, 4):
            _add_vote_in_past(r, 0, 10)

        # Add 1 yes vote 1.5 months ago
        _add_vote_in_past(r, 1, 10)

        result = _get_old_unhelpful()
        eq_(1, len(result))
        self.assertAlmostEqual(0.2, result[r.document.id]['percentage'])
        eq_(5, result[r.document.id]['total'])
예제 #5
0
파일: test_cron.py 프로젝트: 1234-/kitsune
 def test_no_old_articles(self):
     """Make sure _get_old_articles() returns nothing with no votes."""
     result = _get_old_unhelpful()
     eq_(0, len(result))
예제 #6
0
파일: test_cron.py 프로젝트: zctyhj/kitsune
 def test_no_old_articles(self):
     """Make sure _get_old_articles() returns nothing with no votes."""
     result = _get_old_unhelpful()
     eq_(0, len(result))