This file is indexed.

/usr/lib/python2.7/dist-packages/nss_cache/update/files_updater_test.py is in nsscache 0.33-3.

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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
# Copyright 2010 Google Inc.
#
# 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, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

"""Unit tests for nss_cache/files_updater.py."""

__author__ = ('vasilios@google.com (V Hoffman)',
              'jaq@google.com (Jamie Wilkinson)',
              'blaedd@google.com (David MacKinnon)')


import os
import shutil
import tempfile
import time
import unittest

import mox

from nss_cache import config
from nss_cache import error

from nss_cache.caches import cache_factory
from nss_cache.caches import files
from nss_cache.maps import automount
from nss_cache.maps import passwd
from nss_cache.sources import source
from nss_cache.sources import zsyncsource

from nss_cache.update import files_updater


class SingleFileUpdaterTest(mox.MoxTestBase):
  """Unit tests for FileMapUpdaterlass."""

  def setUp(self):
    super(SingleFileUpdaterTest, self).setUp()
    self.workdir = tempfile.mkdtemp()
    self.workdir2 = tempfile.mkdtemp()

  def tearDown(self):
    super(SingleFileUpdaterTest, self).tearDown()
    shutil.rmtree(self.workdir)
    shutil.rmtree(self.workdir2)

  def testFullUpdate(self):
    original_modify_stamp = time.gmtime(1)
    new_modify_stamp = time.gmtime(2)

    # Construct a fake source.
    def GetFile(map_name, dst_file, current_file, location):
      print "GetFile: %s" % dst_file
      f = open(dst_file, 'w')
      f.write('root:x:0:0:root:/root:/bin/bash\n')
      f.close()
      os.utime(dst_file, (1, 2))
      os.system("ls -al %s" % dst_file)
      return dst_file

    dst_file = mox.Value()
    source_mock = self.mox.CreateMock(source.FileSource)
    source_mock.GetFile(config.MAP_PASSWORD,
                        mox.Remember(dst_file),
                        current_file=mox.IgnoreArg(),
                        location=mox.IgnoreArg()
                       ).WithSideEffects(GetFile).AndReturn(dst_file)

    # Construct the cache.
    cache = files.FilesPasswdMapHandler({'dir': self.workdir2})
    map_entry = passwd.PasswdMapEntry({'name': 'foo', 'uid': 10, 'gid': 10})
    password_map = passwd.PasswdMap()
    password_map.SetModifyTimestamp(new_modify_stamp)
    password_map.Add(map_entry)
    cache.Write(password_map)

    updater = files_updater.FileMapUpdater(config.MAP_PASSWORD,
                                           self.workdir,
                                           {'name': 'files',
                                            'dir': self.workdir2})
    updater.WriteModifyTimestamp(original_modify_stamp)

    self.mox.ReplayAll()

    self.assertEqual(0, updater.UpdateCacheFromSource(cache,
                                                      source_mock,
                                                      force_write=False,
                                                      location=None))

    self.assertEqual(new_modify_stamp, updater.GetModifyTimestamp())
    self.assertNotEqual(None, updater.GetUpdateTimestamp())

  def testFullUpdateOnEmptyCache(self):
    """A full update as above, but the initial cache is empty."""
    original_modify_stamp = time.gmtime(1)
    new_modify_stamp = time.gmtime(2)
    # Construct an updater
    self.updater = files_updater.FileMapUpdater(config.MAP_PASSWORD,
                                                self.workdir,
                                                {'name': 'files',
                                                 'dir': self.workdir2})
    self.updater.WriteModifyTimestamp(original_modify_stamp)

    # Construct a cache
    cache = files.FilesPasswdMapHandler({'dir': self.workdir2})

    def GetFileEffects(map_name, dst_file, current_file, location):
      f = open(dst_file, 'w')
      f.write('root:x:0:0:root:/root:/bin/bash\n')
      f.close()
      os.utime(dst_file, (1, 2))
      return dst_file

    source_mock = self.mox.CreateMock(source.FileSource)
    source_mock.GetFile(config.MAP_PASSWORD, mox.IgnoreArg(), mox.IgnoreArg(), location=None).WithSideEffects(GetFileEffects)

    #source_mock = MockSource()
    self.assertEqual(0, self.updater.UpdateCacheFromSource(cache,
                                                           source_mock,
                                                           force_write=False,
                                                           location=None))
    self.assertEqual(new_modify_stamp, self.updater.GetModifyTimestamp())
    self.assertNotEqual(None, self.updater.GetUpdateTimestamp())

  def testFullUpdateOnEmptySource(self):
    """A full update as above, but instead, the initial source is empty."""
    original_modify_stamp = time.gmtime(1)
    new_modify_stamp = time.gmtime(2)
    # Construct an updater
    self.updater = files_updater.FileMapUpdater(config.MAP_PASSWORD,
                                                self.workdir,
                                                {'name': 'files',
                                                 'dir': self.workdir2})
    self.updater.WriteModifyTimestamp(original_modify_stamp)

    # Construct a cache
    cache = files.FilesPasswdMapHandler({'dir': self.workdir2})
    map_entry = passwd.PasswdMapEntry({'name': 'foo', 'uid': 10, 'gid': 10})
    password_map = passwd.PasswdMap()
    password_map.SetModifyTimestamp(new_modify_stamp)
    password_map.Add(map_entry)
    cache.Write(password_map)

    source_mock = self.mox.CreateMock(source.FileSource)
    source_mock.GetFile(config.MAP_PASSWORD,
                        mox.IgnoreArg(),
                        current_file=mox.IgnoreArg(),
                        location=None).AndReturn(None)
    self.mox.ReplayAll()
    self.assertRaises(error.EmptyMap,
                      self.updater.UpdateCacheFromSource,
                      cache,
                      source_mock,
                      force_write=False,
                      location=None)
    self.assertNotEqual(new_modify_stamp, self.updater.GetModifyTimestamp())
    self.assertEqual(None, self.updater.GetUpdateTimestamp())

  # def disabled_testFullUpdateOnEmptySourceForceWrite(self):
  #   """A full update as above, but instead, the initial source is empty."""
  #   original_modify_stamp = time.gmtime(1)
  #   new_modify_stamp = time.gmtime(2)
  #   # Construct an updater
  #   self.updater = files_updater.FileMapUpdater(config.MAP_PASSWORD,
  #                                                self.workdir,
  #                                                {'name': 'files',
  #                                                 'dir': self.workdir2})
  #   self.updater.WriteModifyTimestamp(original_modify_stamp)

  #   # Construct a cache
  #   cache = files.FilesPasswdMapHandler({'dir': self.workdir2})
  #   map_entry = passwd.PasswdMapEntry({'name': 'foo', 'uid': 10, 'gid': 10})
  #   password_map = passwd.PasswdMap()
  #   password_map.SetModifyTimestamp(new_modify_stamp)
  #   password_map.Add(map_entry)
  #   cache.Write(password_map)

  #   class MockSource(pmock.Mock):
  #     def GetFile(self, map_name, dst_file, current_file, location=None):
  #       assert location is None
  #       assert map_name == config.MAP_PASSWORD
  #       f = open(dst_file, 'w')
  #       f.write('')
  #       f.close()
  #       os.utime(dst_file, (1, 2))
  #       return dst_file

  #   source_mock = MockSource()
  #   self.assertEqual(0, self.updater.UpdateCacheFromSource(cache,
  #                                                          source_mock,
  #                                                          force_write=True,
  #                                                          location=None))
  #   self.assertEqual(new_modify_stamp, self.updater.GetModifyTimestamp())
  #   self.assertNotEqual(None, self.updater.GetUpdateTimestamp())


# class AutomountUpdaterTest(mox.MoxTestBase):
#   """Unit tests for FileAutomountUpdater class."""

#   def setUp(self):
#     super(AutomountUpdaterTest, self).setUp()
#     self.workdir = tempfile.mkdtemp()

#   def tearDown(self):
#     shutil.rmtree(self.workdir)
#     super(AutomountUpdaterTest, self).tearDown()

#   def testInit(self):
#     """An automount object correctly sets map-specific attributes."""
#     updater = files_updater.FileAutomountUpdater(config.MAP_AUTOMOUNT,
#                                             self.workdir, {})
#     self.assertEqual(updater.local_master, False)

#     conf = {files_updater.FileAutomountUpdater.OPT_LOCAL_MASTER: 'yes'}
#     updater = files_updater.FileAutomountUpdater(config.MAP_AUTOMOUNT,
#                                             self.workdir, conf)
#     self.assertEqual(updater.local_master, True)

#     conf = {files_updater.FileAutomountUpdater.OPT_LOCAL_MASTER: 'no'}
#     updater = files_updater.FileAutomountUpdater(config.MAP_AUTOMOUNT,
#                                             self.workdir, conf)
#     self.assertEqual(updater.local_master, False)

#   def testUpdate(self):
#     """An update gets a master map and updates each entry."""
#     map_entry1 = automount.AutomountMapEntry()
#     map_entry2 = automount.AutomountMapEntry()
#     map_entry1.key = '/home'
#     map_entry2.key = '/auto'
#     map_entry1.location = 'ou=auto.home,ou=automounts'
#     map_entry2.location = 'ou=auto.auto,ou=automounts'
#     master_map = automount.AutomountMap([map_entry1, map_entry2])

#     source_mock = self.mox.CreateMock(zsyncsource.ZSyncSource)
#     source_mock.GetAutomountMasterFile(mox.IgnoreArg()).AndReturn(master_map)

#     # the auto.home cache
#     cache_mock1 = self.mox.CreateMock(files.FilesCache)
#     cache_mock1.GetCacheFilename().AndReturn(None)
#     cache_mock1.GetMapLocation().AndReturn('/etc/auto.home')

#     # the auto.auto cache
#     cache_mock2 = self.mox.CreateMock(files.FilesCache)
#     cache_mock2.GetMapLocation().AndReturn('/etc/auto.auto')
#     cache_mock2.GetCacheFilename().AndReturn(None)

#     # the auto.master cache
#     cache_mock3 = self.mox.CreateMock(files.FilesCache)
#     cache_mock3.GetMap().AndReturn(master_map)

#     self.mox.StubOutWithMock(cache_factory, 'Create')
#     cache_factory.Create(mox.IgnoreArg(), mox.IgnoreArg(), None).AndReturn(cache_mock3)
#     cache_factory.Create(mox.IgnoreArg(), mox.IgnoreArg(), automount_mountpoint='/auto').AndReturn(cache_mock2)
#     cache_factory.Create(mox.IgnoreArg(), mox.IgnoreArg(), automount_mountpoint='/home').AndReturn(cache_mock1)

#     self.mox.ReplayAll()

#     options = {'name': 'files', 'dir': self.workdir}
#     updater = files_updater.FileAutomountUpdater(config.MAP_AUTOMOUNT,
#                                             self.workdir, options)
#     updater.UpdateFromSource(source_mock)

#     self.assertEqual(map_entry1.location, '/etc/auto.home')
#     self.assertEqual(map_entry2.location, '/etc/auto.auto')

#   def testUpdateNoMaster(self):
#     """An update skips updating the master map, and approprate sub maps."""
#     source_entry1 = automount.AutomountMapEntry()
#     source_entry2 = automount.AutomountMapEntry()
#     source_entry1.key = '/home'
#     source_entry2.key = '/auto'
#     source_entry1.location = 'ou=auto.home,ou=automounts'
#     source_entry2.location = 'ou=auto.auto,ou=automounts'
#     source_master = automount.AutomountMap([source_entry1, source_entry2])

#     local_entry1 = automount.AutomountMapEntry()
#     local_entry2 = automount.AutomountMapEntry()
#     local_entry1.key = '/home'
#     local_entry2.key = '/auto'
#     local_entry1.location = '/etc/auto.home'
#     local_entry2.location = '/etc/auto.null'
#     local_master = automount.AutomountMap([local_entry1, local_entry2])
#     source_mock = self.mock()
#     invocation = source_mock.expects(pmock.at_least_once())
#     invocation._CalledUpdateCacheFromSource()
#     # we should get called inside the DummyUpdater, too.

#     # the auto.home cache
#     cache_mock1 = self.mock()
#     # GetMapLocation() is called, and set to the master map map_entry
#     invocation = cache_mock1.expects(pmock.at_least_once()).GetMapLocation()
#     invocation.will(pmock.return_value('/etc/auto.home'))
#     # we should get called inside the DummyUpdater
#     cache_mock1.expects(pmock.at_least_once())._CalledUpdateCacheFromSource()

#     # the auto.auto cache
#     cache_mock2 = self.mock()
#     # GetMapLocation() is called, and set to the master map map_entry
#     invocation = cache_mock2.expects(pmock.at_least_once()).GetMapLocation()
#     invocation.will(pmock.return_value('/etc/auto.auto'))
#     invocation = cache_mock2.expects(
#         pmock.at_least_once())._CalledUpdateCacheFromSource()
#     # the auto.master cache, which should not be written to
#     cache_mock3 = self.mock()
#     invocation = cache_mock3.expects(pmock.once())
#     invocation = invocation.method('GetMap')
#     invocation.will(pmock.return_value(local_master))
#     invocation = cache_mock3.expects(pmock.once())
#     invocation = invocation.method('GetMap')
#     invocation.will(pmock.return_value(local_master))

#     cache_mocks = {'/home': cache_mock1, '/auto': cache_mock2,
#                    None: cache_mock3}

#     # Create needs to return our mock_caches
#     def DummyCreate(unused_cache_options, unused_map_name,
#                     automount_mountpoint=None):
#       # the order of the master_map iterable is not predictable, so we use the
#       # automount_mountpoint as the key to return the right one.
#       return cache_mocks[automount_mountpoint]

#     original_create = cache_factory.Create
#     cache_factory.Create = DummyCreate

#     skip = files_updater.FileAutomountUpdater.OPT_LOCAL_MASTER
#     options = {skip: 'yes', 'dir': self.workdir}
#     updater = files_updater.FileAutomountUpdater(config.MAP_AUTOMOUNT, self.workdir,
#                                             options)
#     updater.UpdateFromSource(source_mock)

#     cache_factory.Create = original_create

#   def testUpdateCatchesMissingMaster(self):
#     """Gracefully handle a missing local master map."""
#     # use an empty master map from the source, to avoid mocking out already
#     # tested code
#     source_mock = self.mock()

#     cache_mock = self.mock()
#     # raise error on GetMap()
#     invocation = cache_mock.expects(pmock.once()).GetMap()
#     invocation.will(pmock.raise_exception(error.CacheNotFound))

#     # Create needs to return our mock_cache
#     def DummyCreate(unused_cache_options, unused_map_name,
#                     automount_mountpoint=None):
#       # the order of the master_map iterable is not predictable, so we use the
#       # automount_mountpoint as the key to return the right one.
#       return cache_mock

#     original_create = cache_factory.Create
#     cache_factory.Create = DummyCreate

#     skip = files_updater.FileAutomountUpdater.OPT_LOCAL_MASTER
#     options = {skip: 'yes', 'dir': self.workdir}
#     updater = files_updater.FileAutomountUpdater(config.MAP_AUTOMOUNT, self.workdir,
#                                             options)

#     return_value = updater.UpdateFromSource(source_mock)

#     self.assertEqual(return_value, 1)

#     cache_factory.Create = original_create


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