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
|
# 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 unittest
from unittest import mock
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.update import files_updater
class SingleFileUpdaterTest(unittest.TestCase):
"""Unit tests for FileMapUpdater."""
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)
@unittest.skip("timestamp isnt propagaged correctly")
def testFullUpdate(self):
original_modify_stamp = 1
new_modify_stamp = 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
source_mock = mock.create_autospec(source.FileSource)
source_mock.GetFile.side_effect = GetFile
# 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.assertEqual(
0,
updater.UpdateCacheFromSource(
cache, source_mock, force_write=False, location=None
),
)
self.assertEqual(new_modify_stamp, updater.GetModifyTimestamp())
self.assertNotEqual(None, updater.GetUpdateTimestamp())
source_mock.GetFile.assert_called_with(
config.MAP_PASSWORD,
mock.ANY,
current_file=mock.ANY,
location=mock.ANY,
)
@unittest.skip("raises EmptyMap, is that intended?")
def testFullUpdateOnEmptyCache(self):
"""A full update as above, but the initial cache is empty."""
original_modify_stamp = 1
new_modify_stamp = 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 = mock.create_autospec(source.FileSource)
source_mock.GetFile.side_effects = GetFileEffects
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())
source_mock.GetFile.assert_called_with(
config.MAP_PASSWORD, mock.ANY, mock.ANY, location=None
)
def testFullUpdateOnEmptySource(self):
"""A full update as above, but instead, the initial source is empty."""
original_modify_stamp = 1
new_modify_stamp = 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 = mock.create_autospec(source.FileSource)
source_mock.GetFile.return_value = None
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())
source_mock.GetFile.assert_called_with(
config.MAP_PASSWORD,
mock.ANY,
current_file=mock.ANY,
location=None,
)
def testFullUpdateOnEmptySourceForceWrite(self):
"""A full update as above, but instead, the initial source is empty."""
original_modify_stamp = 1
new_modify_stamp = 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 = mock.create_autospec(source.FileSource)
source_mock.GetFile.return_value = None
self.assertEqual(
0,
self.updater.UpdateCacheFromSource(
cache, source_mock, force_write=True, location=None
),
)
self.assertNotEqual(original_modify_stamp, self.updater.GetModifyTimestamp())
self.assertNotEqual(None, self.updater.GetUpdateTimestamp())
source_mock.GetFile.assert_called_with(
config.MAP_PASSWORD,
mock.ANY,
current_file=mock.ANY,
location=None,
)
@unittest.skip("disabled")
class AutomountUpdaterTest(unittest.TestCase):
"""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)
@mock.patch.object(cache_factory, "Create")
def testUpdate(self, cache_factory_create_mock):
"""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 = mock.Mock()
source_mock.GetAutomountMasterFile.return_value = master_map
# the auto.home cache
cache_mock1 = mock.create_autospec(files.FilesCache)
cache_mock1.GetCacheFilename.return_value = None
cache_mock1.GetMapLocation.return_value = "/etc/auto.home"
# the auto.auto cache
cache_mock2 = mock.create_autospec(files.FilesCache)
cache_mock2.GetMapLocation.return_value = "/etc/auto.auto"
cache_mock2.GetCacheFilename.return_value = None
# the auto.master cache
cache_mock3 = mock.create_autospec(files.FilesCache)
cache_mock3.GetMap.return_value = master_map
cache_factory_create_mock.Create.side_effect = [
cache_mock3,
cache_mock2,
cache_mock1,
]
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")
cache_factory_create_mock.assert_has_calls(
[
mock.call(mock.ANY, mock.ANY, None),
mock.call(mock.ANY, mock.ANY, automount_mountpoint="/auto"),
mock.call(mock.ANY, mock.ANY, automount_mountpoint="/home"),
]
)
@mock.patch.object(cache_factory, "Create")
def testUpdateNoMaster(self, cache_factory_create_mock):
"""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 = mock.Mock()
# we should get called inside the DummyUpdater, too.
# the auto.home cache
cache_mock1 = mock.Mock()
# GetMapLocation() is called, and set to the master map map_entry
cache_mock1.GetMapLocation.return_value = "/etc/auto.home"
# the auto.auto cache
cache_mock2 = mock.Mock()
# GetMapLocation() is called, and set to the master map map_entry
cache_mock2.GetMapLocation.return_value = "/etc/auto.auto"
# the auto.master cache, which should not be written to
cache_mock3 = mock.Mock()
cache_mock3.GetMap.return_value = local_master
cache_factory_create_mock.side_effect = [cache_mock1, cache_mock2, cache_mock3]
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)
source_mock._CalledUpdateCacheFromSource.assert_called_once()
# we should get called inside the DummyUpdater
cache_mock1._CalledUpdateCacheFromSource.assert_called_once()
cache_mock2._CalledUpdateCacheFromSource().assert_called_once()
@mock.patch.object(cache_factory, "Create")
def testUpdateCatchesMissingMaster(self, cache_factory_create_mock):
"""Gracefully handle a missing local master map."""
# use an empty master map from the source, to avoid mocking out already
# tested code
source_mock = mock.Mock
cache_mock = mock.Mock()
# raise error on GetMap()
cache_mock.GetMap.side_effect = error.CacheNotFound
cache_factory_create_mock.return_value = cache_mock
skip = files_updater.FileAutomountUpdater.OPT_LOCAL_MASTER
options = {skip: "yes", "dir": self.workdir}
updater = files_updater.FileAutomountUpdater(
config.MAP_AUTOMOUNT, self.workdir, options
)
self.assertEqual(1, updater.UpdateFromSource(source_mock))
if __name__ == "__main__":
unittest.main()
|