This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/tests/stubs.py is in python-schooltool.gradebook 2.6.3-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
#
# SchoolTool - common information systems platform for school administration
# Copyright (c) 2005 Shuttleworth Foundation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
"""
Stubs for Gradebook-related Tests

"""
from decimal import Decimal
import datetime
import zope.interface

from schooltool.term.interfaces import IDateManager
from schooltool.gradebook import interfaces


class ExternalActivityStub(object):

    zope.interface.implements(interfaces.IExternalActivity)
    
    def __init__(self, source, ID, title, description=None, grades={}):
        self.source = source
        self.external_activity_id = ID
        self.title = title
        self.description = description
        self.grades = grades

    def getGrade(self, student):
        return self.grades.get(student.username)

    def __repr__(self):
        return '<ExternalActivity %r>' % (self.title)

    def __eq__(self, other):
        return other is not None and \
               self.source == other.source and \
               self.external_activity_id == other.external_activity_id


class ExternalActivitiesStub(object):

    source = ""
    title = u""

    def __init__(self, context):
        pass
    
    def __repr__(self):
        return '<ExternalActivities...>'

    def getExternalActivities(self):
        return sorted(self.activities.values(),
                      key=lambda x:x.external_activity_id)

    def getExternalActivity(self, external_activity_id):
        return self.activities.get(external_activity_id)


class SomeProductStub(ExternalActivitiesStub):

    source = "someproduct"
    title = u"Some Product"
    activities = {u"some1": \
                  ExternalActivityStub(u"someproduct",
                                       u"some1",
                                       u"Some1",
                                       u"Some1 description",
                                       grades={"paul": Decimal('0.5')})}


class ThirdPartyStub(ExternalActivitiesStub):

    source = "thirdparty"
    title = u"Third Party"
    activities = {u"third1": ExternalActivityStub(u"thirdparty", u"third1",
                                                  u"Third1"),
                  u"third2": ExternalActivityStub(u"thirdparty", u"third2",
                                                  u"Third2"),
                  u"third3": ExternalActivityStub(u"thirdparty", u"third3",
                                                  u"Third3")}


class SampleSource(ExternalActivitiesStub):

    source = "samplesource"
    title = u"Sample Source"
    activities = {"hardware": ExternalActivityStub(u"samplesource",
                                                   u"hardware",
                                                   u"Hardware",
                                                   u"Hardware description",
                                                   grades={"claudia": \
                                                           Decimal('0.4'),
                                                           "tom": \
                                                           Decimal('0.6')}),
                  "html": ExternalActivityStub(u"samplesource",
                                               u"html",
                                               u"HTML",
                                               grades={"claudia": \
                                                       Decimal('0.8'),
                                                       "paul": \
                                                       Decimal('0.5')})}

    def __init__(self, context):
        self.section = context
        result = []
        for name, activity in self.activities.items():
            activity.__parent__ = context
            result.append((name, activity))
        self.activities = dict(result)


class DateManagerStub(object):

    zope.interface.implements(IDateManager)

    def __init__(self):
        self.current_term = None
        self.today = datetime.date(2011, 1, 23)