This file is indexed.

/usr/lib/python2.7/dist-packages/fedmsg_meta_fedora_infrastructure/tests/fmn.py is in python-fedmsg-meta-fedora-infrastructure 0.2.18-1.

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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
# This file is part of fedmsg.
# Copyright (C) 2014 Red Hat, Inc.
#
# fedmsg is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# fedmsg 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with fedmsg; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# Authors:  Ralph Bean <rbean@redhat.com>
""" Tests for messages from FMN """

import unittest

from fedmsg.tests.test_meta import Base

from common import add_doc


class TestFilterUpdateRules(Base):
    """ Messages of this type are published whenever someone **updates
    one of their notification rules** in the `Fedora Notifications
    <https://apps.fedoraproject.org/notifications>`_ app.
    """
    expected_title = "fmn.filter.update"
    expected_subti = "ralph updated the rules on a fmn irc filter"
    expected_link = "https://apps.fedoraproject.org/notifications/"
    expected_icon = "https://apps.fedoraproject.org/img/icons/fedmsg.png"
    expected_secondary_icon = (
        "https://seccdn.libravatar.org/avatar/"
        "9c9f7784935381befc302fe3c814f9136e7a33953d0318761669b8643f4df55c"
        "?s=64&d=retro")
    expected_packages = set([])
    expected_usernames = set(['ralph'])
    expected_objects = set(['ralph/irc/filter/rules'])
    msg = {
        "username": "apache",
        "i": 1,
        "timestamp": 1379638157.759283,
        "msg_id": "2013-96f9ca0e-c7c6-43f0-9de7-7a268c7f1cef",
        "topic": "org.fedoraproject.prod.fmn.filter.update",
        "msg": {
            'openid': 'ralph.id.fedoraproject.org',
            'context': 'irc',
            'changed': 'rules',
        }
    }


class TestPreferenceUpdateBatchValues(Base):
    """ Messages of this type are published whenever someone **updates
    their batch values** in the `Fedora Notifications
    <https://apps.fedoraproject.org/notifications>`_ app.

    Batch values are the parameters used to determine how to send notification
    digests like "how many messages should we accumulate before forwarding them
    to you" or "how many days should we wait before forwarding you a digest".
    """
    expected_title = "fmn.preference.update"
    expected_subti = "ralph updated their email digest options"
    expected_link = "https://apps.fedoraproject.org/notifications/"
    expected_icon = "https://apps.fedoraproject.org/img/icons/fedmsg.png"
    expected_secondary_icon = (
        "https://seccdn.libravatar.org/avatar/"
        "9c9f7784935381befc302fe3c814f9136e7a33953d0318761669b8643f4df55c"
        "?s=64&d=retro")
    expected_packages = set([])
    expected_usernames = set(['ralph'])
    expected_objects = set(['ralph/email/preference/batch_values'])
    msg = {
        "username": "apache",
        "i": 1,
        "timestamp": 1379638157.759283,
        "msg_id": "2013-96f9ca0e-c7c6-43f0-9de7-7a268c7f1cef",
        "topic": "org.fedoraproject.prod.fmn.preference.update",
        "msg": {
            'openid': 'ralph.id.fedoraproject.org',
            'context': 'email',
            'changed': 'batch_values',
        }
    }


class TestPreferenceUpdateDetails(Base):
    """ Messages of this type are published whenever someone **updates
    their delivery details** in the `Fedora Notifications
    <https://apps.fedoraproject.org/notifications>`_ app.

    Delivery details are the values used to figure out how to deliver messages,
    like "email address" or "irc nick".
    """
    expected_title = "fmn.preference.update"
    expected_subti = "ralph updated their email delivery details"
    expected_link = "https://apps.fedoraproject.org/notifications/"
    expected_icon = "https://apps.fedoraproject.org/img/icons/fedmsg.png"
    expected_secondary_icon = (
        "https://seccdn.libravatar.org/avatar/"
        "9c9f7784935381befc302fe3c814f9136e7a33953d0318761669b8643f4df55c"
        "?s=64&d=retro")
    expected_packages = set([])
    expected_usernames = set(['ralph'])
    expected_objects = set(['ralph/email/preference/details'])
    msg = {
        "username": "apache",
        "i": 1,
        "timestamp": 1379638157.759283,
        "msg_id": "2013-96f9ca0e-c7c6-43f0-9de7-7a268c7f1cef",
        "topic": "org.fedoraproject.prod.fmn.preference.update",
        "msg": {
            'openid': 'ralph.id.fedoraproject.org',
            'context': 'email',
            'changed': 'details',
        }
    }


class TestPreferenceUpdateEnabled(Base):
    """ Messages of this type are published whenever someone **toggles
    delivery of messages** in the `Fedora Notifications
    <https://apps.fedoraproject.org/notifications>`_ app.
    """
    expected_title = "fmn.preference.update"
    expected_subti = "ralph toggled their flow of android messages"
    expected_link = "https://apps.fedoraproject.org/notifications/"
    expected_icon = "https://apps.fedoraproject.org/img/icons/fedmsg.png"
    expected_secondary_icon = (
        "https://seccdn.libravatar.org/avatar/"
        "9c9f7784935381befc302fe3c814f9136e7a33953d0318761669b8643f4df55c"
        "?s=64&d=retro")
    expected_packages = set([])
    expected_usernames = set(['ralph'])
    expected_objects = set(['ralph/android/preference/enabled'])
    msg = {
        "username": "apache",
        "i": 1,
        "timestamp": 1379638157.759283,
        "msg_id": "2013-96f9ca0e-c7c6-43f0-9de7-7a268c7f1cef",
        "topic": "org.fedoraproject.prod.fmn.preference.update",
        "msg": {
            'openid': 'ralph.id.fedoraproject.org',
            'context': 'android',
            'changed': 'enabled',
        }
    }


class TestPreferenceUpdateFilters(Base):
    """ Messages of this type are published whenever someone **toggles
    delivery of messages** in the `Fedora Notifications
    <https://apps.fedoraproject.org/notifications>`_ app.
    """
    expected_title = "fmn.preference.update"
    expected_subti = "ralph updated their irc filters"
    expected_link = "https://apps.fedoraproject.org/notifications/"
    expected_icon = "https://apps.fedoraproject.org/img/icons/fedmsg.png"
    expected_secondary_icon = (
        "https://seccdn.libravatar.org/avatar/"
        "9c9f7784935381befc302fe3c814f9136e7a33953d0318761669b8643f4df55c"
        "?s=64&d=retro")
    expected_packages = set([])
    expected_usernames = set(['ralph'])
    expected_objects = set(['ralph/irc/preference/filters'])
    msg = {
        "username": "apache",
        "i": 1,
        "timestamp": 1379638157.759283,
        "msg_id": "2013-96f9ca0e-c7c6-43f0-9de7-7a268c7f1cef",
        "topic": "org.fedoraproject.prod.fmn.preference.update",
        "msg": {
            'openid': 'ralph.id.fedoraproject.org',
            'context': 'irc',
            'changed': 'filters',
        }
    }


class TestConfirmationUpdateValue(Base):
    """ Messages of this type are published whenever **a confirmation value
    changes** in the `Fedora Notifications
    <https://apps.fedoraproject.org/notifications>`_ app.
    """
    expected_title = "fmn.confirmation.update"
    expected_subti = "the value of one of ralph's pending " + \
        "confirmations changed"
    expected_link = "https://apps.fedoraproject.org/notifications/"
    expected_icon = "https://apps.fedoraproject.org/img/icons/fedmsg.png"
    expected_secondary_icon = (
        "https://seccdn.libravatar.org/avatar/"
        "9c9f7784935381befc302fe3c814f9136e7a33953d0318761669b8643f4df55c"
        "?s=64&d=retro")
    expected_packages = set([])
    expected_usernames = set(['ralph'])
    expected_objects = set(['ralph/irc/confirmation/value'])
    msg = {
        "username": "apache",
        "i": 1,
        "timestamp": 1379638157.759283,
        "msg_id": "2013-96f9ca0e-c7c6-43f0-9de7-7a268c7f1cef",
        "topic": "org.fedoraproject.prod.fmn.confirmation.update",
        "msg": {
            'openid': 'ralph.id.fedoraproject.org',
            'context': 'irc',
            'changed': 'value',
        }
    }


class TestConfirmationUpdateStatus(Base):
    """ Messages of this type are published whenever **the status of a
    confirmation changes** in the `Fedora Notifications
    <https://apps.fedoraproject.org/notifications>`_ app.
    """
    expected_title = "fmn.confirmation.update"
    expected_subti = "the status of one of ralph's pending " + \
        "confirmations changed"
    expected_link = "https://apps.fedoraproject.org/notifications/"
    expected_icon = "https://apps.fedoraproject.org/img/icons/fedmsg.png"
    expected_secondary_icon = (
        "https://seccdn.libravatar.org/avatar/"
        "9c9f7784935381befc302fe3c814f9136e7a33953d0318761669b8643f4df55c"
        "?s=64&d=retro")
    expected_packages = set([])
    expected_usernames = set(['ralph'])
    expected_objects = set(['ralph/irc/confirmation/status'])
    msg = {
        "username": "apache",
        "i": 1,
        "timestamp": 1379638157.759283,
        "msg_id": "2013-96f9ca0e-c7c6-43f0-9de7-7a268c7f1cef",
        "topic": "org.fedoraproject.prod.fmn.confirmation.update",
        "msg": {
            'openid': 'ralph.id.fedoraproject.org',
            'context': 'irc',
            'changed': 'status',
        }
    }


add_doc(locals())

if __name__ == '__main__':
    unittest.main()