This file is indexed.

/usr/lib/python2.7/dist-packages/nss_cache/caches/files_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
# Copyright 2007 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/caches/files.py."""

__author__ = ('jaq@google.com (Jamie Wilkinson)',
              'vasilios@google.com (Vasilios Hoffman)')

import os
import shutil
import tempfile
import unittest
import sys

import mox

from nss_cache import config
from nss_cache.maps import automount
from nss_cache.maps import group
from nss_cache.maps import netgroup
from nss_cache.maps import passwd
from nss_cache.maps import shadow
from nss_cache.caches import files


class TestFilesCache(mox.MoxTestBase):

  def setUp(self):
    super(TestFilesCache, self).setUp()
    self.workdir = tempfile.mkdtemp()
    self.config = {'dir': self.workdir}

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

  def testInstantiation(self):
    cache = files.FilesCache(self.config, config.MAP_PASSWORD)
    self.failIfEqual(None, cache)

  def testWrite(self):
    cache = files.FilesPasswdMapHandler(self.config)
    entry = passwd.PasswdMapEntry({'name': 'foo', 'uid': 10, 'gid': 10})
    pmap = passwd.PasswdMap([entry])
    written = cache.Write(pmap)
    self.assertTrue('foo' in written)
    self.assertFalse(entry in pmap)  # we emptied pmap to avoid mem leaks
    self.assertFalse(cache.temp_cache_file.closed)

  def testCacheFilenameSuffixOption(self):
    new_config = {'cache_filename_suffix': 'blarg'}
    new_config.update(self.config)
    cache = files.FilesCache(new_config, config.MAP_PASSWORD)

    cache.CACHE_FILENAME = 'test'
    self.assertEqual(os.path.join(self.workdir, 'test.blarg'),
                     cache.GetCacheFilename())

    cache.temp_cache_file = open(os.path.join(self.workdir, 'pre-commit'), 'w')
    cache.temp_cache_file.write('\n')
    cache.temp_cache_filename = os.path.join(self.workdir,
                                             'pre-commit')
    cache._Commit()
    expected_cache_filename = os.path.join(self.workdir,
                                           'test.blarg')
    self.failUnless(os.path.exists(expected_cache_filename))

  def testWritePasswdEntry(self):
    """We correctly write a typical entry in /etc/passwd format."""
    cache = files.FilesPasswdMapHandler(self.config)
    file_mock = self.mox.CreateMock(sys.stdout)
    file_mock.write('root:x:0:0:Rootsy:/root:/bin/bash\n')

    map_entry = passwd.PasswdMapEntry()
    map_entry.name = 'root'
    map_entry.passwd = 'x'
    map_entry.uid = 0
    map_entry.gid = 0
    map_entry.gecos = 'Rootsy'
    map_entry.dir = '/root'
    map_entry.shell = '/bin/bash'

    self.mox.ReplayAll()

    cache._WriteData(file_mock, map_entry)

  def testWriteGroupEntry(self):
    """We correctly write a typical entry in /etc/group format."""
    cache = files.FilesGroupMapHandler(self.config)
    file_mock = self.mox.CreateMock(sys.stdout)
    file_mock.write('root:x:0:zero_cool,acid_burn\n')

    map_entry = group.GroupMapEntry()
    map_entry.name = 'root'
    map_entry.passwd = 'x'
    map_entry.gid = 0
    map_entry.members = ['zero_cool', 'acid_burn']

    self.mox.ReplayAll()

    cache._WriteData(file_mock, map_entry)

  def testWriteShadowEntry(self):
    """We correctly write a typical entry in /etc/shadow format."""
    cache = files.FilesShadowMapHandler(self.config)
    file_mock = self.mox.CreateMock(sys.stdout)
    file_mock.write('root:$1$zomgmd5support:::::::\n')

    map_entry = shadow.ShadowMapEntry()
    map_entry.name = 'root'
    map_entry.passwd = '$1$zomgmd5support'

    self.mox.ReplayAll()

    cache._WriteData(file_mock, map_entry)

  def testWriteNetgroupEntry(self):
    """We correctly write a typical entry in /etc/netgroup format."""
    cache = files.FilesNetgroupMapHandler(self.config)
    file_mock = self.mox.CreateMock(sys.stdout)
    file_mock.write('administrators unix_admins noc_monkeys (-,zero_cool,)\n')

    map_entry = netgroup.NetgroupMapEntry()
    map_entry.name = 'administrators'
    map_entry.entries = 'unix_admins noc_monkeys (-,zero_cool,)'

    self.mox.ReplayAll()

    cache._WriteData(file_mock, map_entry)

  def testWriteAutomountEntry(self):
    """We correctly write a typical entry in /etc/auto.* format."""
    cache = files.FilesAutomountMapHandler(self.config)
    file_mock = self.mox.CreateMock(sys.stdout)
    file_mock.write('scratch -tcp,rw,intr,bg fileserver:/scratch\n')

    map_entry = automount.AutomountMapEntry()
    map_entry.key = 'scratch'
    map_entry.options = '-tcp,rw,intr,bg'
    map_entry.location = 'fileserver:/scratch'

    self.mox.ReplayAll()
    cache._WriteData(file_mock, map_entry)
    self.mox.VerifyAll()

    file_mock = self.mox.CreateMock(sys.stdout)
    file_mock.write('scratch fileserver:/scratch\n')

    map_entry = automount.AutomountMapEntry()
    map_entry.key = 'scratch'
    map_entry.options = None
    map_entry.location = 'fileserver:/scratch'

    self.mox.ReplayAll()

    cache._WriteData(file_mock, map_entry)

  def testAutomountSetsFilename(self):
    """We set the correct filename based on mountpoint information."""
    # also tests GetMapLocation() because it uses it :)
    conf = {'dir': self.workdir, 'cache_filename_suffix': ''}
    cache = files.FilesAutomountMapHandler(conf)
    self.assertEquals(cache.GetMapLocation(), '%s/auto.master' % self.workdir)

    cache = files.FilesAutomountMapHandler(conf, automount_mountpoint='/home')
    self.assertEquals(cache.GetMapLocation(), '%s/auto.home' % self.workdir)

    cache = files.FilesAutomountMapHandler(conf,
                                           automount_mountpoint='/usr/meh')
    self.assertEquals(cache.GetMapLocation(), '%s/auto.usr_meh' % self.workdir)

  def testCacheFileDoesNotExist(self):
    """Make sure we just get an empty map rather than exception."""
    conf = {'dir': self.workdir, 'cache_filename_suffix': ''}
    cache = files.FilesAutomountMapHandler(conf)
    self.assertFalse(os.path.exists(os.path.join(self.workdir, 'auto.master')))
    data = cache.GetMap()
    self.assertFalse(data)

  def testIndexCreation(self):
    cache = files.FilesPasswdMapHandler(self.config)
    entries = [passwd.PasswdMapEntry(dict(name='foo', uid=10, gid=10)),
               passwd.PasswdMapEntry(dict(name='bar', uid=11, gid=11)),
               passwd.PasswdMapEntry(dict(name='quux', uid=12, gid=11)),
              ]
    pmap = passwd.PasswdMap(entries)
    cache.Write(pmap)
    cache.WriteIndex()

    index_filename = cache.GetCacheFilename() + '.ixname'
    self.failUnless(os.path.exists(index_filename),
                    'Index not created %s' % index_filename)
    f = open(index_filename)
    self.assertEqual('bar\x0015\x00\x00\n', f.readline())
    self.assertEqual('foo\x000\x00\x00\x00\n', f.readline())
    self.assertEqual('quux\x0030\x00\n', f.readline())

    index_filename = cache.GetCacheFilename() + '.ixuid'
    self.failUnless(os.path.exists(index_filename),
                    'Index not created %s' % index_filename)
    f = open(index_filename)
    self.assertEqual('10\x000\x00\x00\n', f.readline())
    self.assertEqual('11\x0015\x00\n', f.readline())
    self.assertEqual('12\x0030\x00\n', f.readline())


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