1b89a7cc2SEnji Cooper# Copyright 2006, Google Inc. 2b89a7cc2SEnji Cooper# All rights reserved. 3b89a7cc2SEnji Cooper# 4b89a7cc2SEnji Cooper# Redistribution and use in source and binary forms, with or without 5b89a7cc2SEnji Cooper# modification, are permitted provided that the following conditions are 6b89a7cc2SEnji Cooper# met: 7b89a7cc2SEnji Cooper# 8b89a7cc2SEnji Cooper# * Redistributions of source code must retain the above copyright 9b89a7cc2SEnji Cooper# notice, this list of conditions and the following disclaimer. 10b89a7cc2SEnji Cooper# * Redistributions in binary form must reproduce the above 11b89a7cc2SEnji Cooper# copyright notice, this list of conditions and the following disclaimer 12b89a7cc2SEnji Cooper# in the documentation and/or other materials provided with the 13b89a7cc2SEnji Cooper# distribution. 14b89a7cc2SEnji Cooper# * Neither the name of Google Inc. nor the names of its 15b89a7cc2SEnji Cooper# contributors may be used to endorse or promote products derived from 16b89a7cc2SEnji Cooper# this software without specific prior written permission. 17b89a7cc2SEnji Cooper# 18b89a7cc2SEnji Cooper# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19b89a7cc2SEnji Cooper# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20b89a7cc2SEnji Cooper# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 21b89a7cc2SEnji Cooper# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22b89a7cc2SEnji Cooper# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23b89a7cc2SEnji Cooper# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 24b89a7cc2SEnji Cooper# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 25b89a7cc2SEnji Cooper# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26b89a7cc2SEnji Cooper# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27b89a7cc2SEnji Cooper# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28b89a7cc2SEnji Cooper# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29b89a7cc2SEnji Cooper 30b89a7cc2SEnji Cooper"""Unit test utilities for Google C++ Mocking Framework.""" 31b89a7cc2SEnji Cooper 32b89a7cc2SEnji Cooperimport os 33b89a7cc2SEnji Cooper 34b89a7cc2SEnji Cooper# pylint: disable=C6204 35*28f6c2f2SEnji Cooperfrom googletest.test import gtest_test_utils 36b89a7cc2SEnji Cooper 37b89a7cc2SEnji Cooper 38b89a7cc2SEnji Cooperdef GetSourceDir(): 39b89a7cc2SEnji Cooper """Returns the absolute path of the directory where the .py files are.""" 40b89a7cc2SEnji Cooper 41b89a7cc2SEnji Cooper return gtest_test_utils.GetSourceDir() 42b89a7cc2SEnji Cooper 43b89a7cc2SEnji Cooper 44b89a7cc2SEnji Cooperdef GetTestExecutablePath(executable_name): 45b89a7cc2SEnji Cooper """Returns the absolute path of the test binary given its name. 46b89a7cc2SEnji Cooper 47b89a7cc2SEnji Cooper The function will print a message and abort the program if the resulting file 48b89a7cc2SEnji Cooper doesn't exist. 49b89a7cc2SEnji Cooper 50b89a7cc2SEnji Cooper Args: 51b89a7cc2SEnji Cooper executable_name: name of the test binary that the test script runs. 52b89a7cc2SEnji Cooper 53b89a7cc2SEnji Cooper Returns: 54b89a7cc2SEnji Cooper The absolute path of the test binary. 55b89a7cc2SEnji Cooper """ 56b89a7cc2SEnji Cooper 57b89a7cc2SEnji Cooper return gtest_test_utils.GetTestExecutablePath(executable_name) 58b89a7cc2SEnji Cooper 59b89a7cc2SEnji Cooper 60b89a7cc2SEnji Cooperdef GetExitStatus(exit_code): 61b89a7cc2SEnji Cooper """Returns the argument to exit(), or -1 if exit() wasn't called. 62b89a7cc2SEnji Cooper 63b89a7cc2SEnji Cooper Args: 64b89a7cc2SEnji Cooper exit_code: the result value of os.system(command). 65b89a7cc2SEnji Cooper """ 66b89a7cc2SEnji Cooper 67b89a7cc2SEnji Cooper if os.name == 'nt': 68b89a7cc2SEnji Cooper # On Windows, os.WEXITSTATUS() doesn't work and os.system() returns 69b89a7cc2SEnji Cooper # the argument to exit() directly. 70b89a7cc2SEnji Cooper return exit_code 71b89a7cc2SEnji Cooper else: 72b89a7cc2SEnji Cooper # On Unix, os.WEXITSTATUS() must be used to extract the exit status 73b89a7cc2SEnji Cooper # from the result of os.system(). 74b89a7cc2SEnji Cooper if os.WIFEXITED(exit_code): 75b89a7cc2SEnji Cooper return os.WEXITSTATUS(exit_code) 76b89a7cc2SEnji Cooper else: 77b89a7cc2SEnji Cooper return -1 78b89a7cc2SEnji Cooper 79b89a7cc2SEnji Cooper 80b89a7cc2SEnji Cooper# Exposes utilities from gtest_test_utils. 81b89a7cc2SEnji CooperSubprocess = gtest_test_utils.Subprocess 82b89a7cc2SEnji CooperTestCase = gtest_test_utils.TestCase 83b89a7cc2SEnji Cooperenviron = gtest_test_utils.environ 84b89a7cc2SEnji CooperSetEnvVar = gtest_test_utils.SetEnvVar 85b89a7cc2SEnji CooperPREMATURE_EXIT_FILE_ENV_VAR = gtest_test_utils.PREMATURE_EXIT_FILE_ENV_VAR 86b89a7cc2SEnji Cooper 87b89a7cc2SEnji Cooper 88b89a7cc2SEnji Cooperdef Main(): 89b89a7cc2SEnji Cooper """Runs the unit test.""" 90b89a7cc2SEnji Cooper 91b89a7cc2SEnji Cooper gtest_test_utils.Main() 92