| #!/usr/bin/python |
| # |
| |
| # Copyright (C) 2010, 2012 Google Inc. |
| # All rights reserved. |
| # |
| # Redistribution and use in source and binary forms, with or without |
| # modification, are permitted provided that the following conditions are |
| # met: |
| # |
| # 1. Redistributions of source code must retain the above copyright notice, |
| # this list of conditions and the following disclaimer. |
| # |
| # 2. Redistributions in binary form must reproduce the above copyright |
| # notice, this list of conditions and the following disclaimer in the |
| # documentation and/or other materials provided with the distribution. |
| # |
| # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS |
| # IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR |
| # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| |
| |
| """Script for testing utils.ResetTempfileModule""" |
| |
| import os |
| import sys |
| import errno |
| import shutil |
| import tempfile |
| import unittest |
| import logging |
| |
| from ganeti import utils |
| |
| import testutils |
| |
| |
| # This constant is usually at a much higher value. Setting it lower for test |
| # purposes. |
| tempfile.TMP_MAX = 3 |
| |
| |
| class TestResetTempfileModule(unittest.TestCase): |
| def setUp(self): |
| self.tmpdir = tempfile.mkdtemp() |
| |
| def tearDown(self): |
| shutil.rmtree(self.tmpdir) |
| |
| def testNoReset(self): |
| if ((sys.hexversion >= 0x020703F0 and sys.hexversion < 0x03000000) or |
| sys.hexversion >= 0x030203F0): |
| # We can't test the no_reset case on Python 2.7+ |
| return |
| # evil Debian sid... |
| if (hasattr(tempfile._RandomNameSequence, "rng") and |
| type(tempfile._RandomNameSequence.rng) == property): |
| return |
| self._Test(False) |
| |
| def testReset(self): |
| self._Test(True) |
| |
| def _Test(self, reset): |
| self.failIf(tempfile.TMP_MAX > 10) |
| |
| # Initialize tempfile module |
| (fd, _) = tempfile.mkstemp(dir=self.tmpdir, prefix="init.", suffix="") |
| os.close(fd) |
| |
| (notify_read, notify_write) = os.pipe() |
| |
| pid = os.fork() |
| if pid == 0: |
| # Child |
| try: |
| try: |
| if reset: |
| utils.ResetTempfileModule() |
| |
| os.close(notify_write) |
| |
| # Wait for parent to close pipe |
| os.read(notify_read, 1) |
| |
| try: |
| # This is a short-lived process, not caring about closing file |
| # descriptors |
| (_, path) = tempfile.mkstemp(dir=self.tmpdir, |
| prefix="test.", suffix="") |
| except EnvironmentError, err: |
| if err.errno == errno.EEXIST: |
| # Couldnt' create temporary file (e.g. because we run out of |
| # retries) |
| os._exit(2) |
| raise |
| |
| logging.debug("Child created %s", path) |
| |
| os._exit(0) |
| except Exception: |
| logging.exception("Unhandled error") |
| finally: |
| os._exit(1) |
| |
| # Parent |
| os.close(notify_read) |
| |
| # Create parent's temporary files |
| for _ in range(tempfile.TMP_MAX): |
| (fd, path) = tempfile.mkstemp(dir=self.tmpdir, |
| prefix="test.", suffix="") |
| os.close(fd) |
| logging.debug("Parent created %s", path) |
| |
| # Notify child by closing pipe |
| os.close(notify_write) |
| |
| (_, status) = os.waitpid(pid, 0) |
| |
| self.failIf(os.WIFSIGNALED(status)) |
| |
| if reset: |
| # If the tempfile module was reset, it should not fail to create |
| # temporary files |
| expected = 0 |
| else: |
| expected = 2 |
| |
| self.assertEqual(os.WEXITSTATUS(status), expected) |
| |
| |
| if __name__ == "__main__": |
| testutils.GanetiTestProgram() |