gtest_xml_outfiles_test.py 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. #!/usr/bin/env python
  2. #
  3. # Copyright 2008, Google Inc.
  4. # All rights reserved.
  5. #
  6. # Redistribution and use in source and binary forms, with or without
  7. # modification, are permitted provided that the following conditions are
  8. # met:
  9. #
  10. # * Redistributions of source code must retain the above copyright
  11. # notice, this list of conditions and the following disclaimer.
  12. # * Redistributions in binary form must reproduce the above
  13. # copyright notice, this list of conditions and the following disclaimer
  14. # in the documentation and/or other materials provided with the
  15. # distribution.
  16. # * Neither the name of Google Inc. nor the names of its
  17. # contributors may be used to endorse or promote products derived from
  18. # this software without specific prior written permission.
  19. #
  20. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. """Unit test for the gtest_xml_output module."""
  32. __author__ = "keith.ray@gmail.com (Keith Ray)"
  33. import os
  34. from xml.dom import minidom, Node
  35. import gtest_test_utils
  36. import gtest_xml_test_utils
  37. GTEST_OUTPUT_SUBDIR = "xml_outfiles"
  38. GTEST_OUTPUT_1_TEST = "gtest_xml_outfile1_test_"
  39. GTEST_OUTPUT_2_TEST = "gtest_xml_outfile2_test_"
  40. EXPECTED_XML_1 = """<?xml version="1.0" encoding="UTF-8"?>
  41. <testsuites tests="1" failures="0" disabled="0" errors="0" time="*" timestamp="*" name="AllTests">
  42. <testsuite name="PropertyOne" tests="1" failures="0" disabled="0" errors="0" time="*">
  43. <testcase name="TestSomeProperties" status="run" time="*" classname="PropertyOne" SetUpProp="1" TestSomeProperty="1" TearDownProp="1" />
  44. </testsuite>
  45. </testsuites>
  46. """
  47. EXPECTED_XML_2 = """<?xml version="1.0" encoding="UTF-8"?>
  48. <testsuites tests="1" failures="0" disabled="0" errors="0" time="*" timestamp="*" name="AllTests">
  49. <testsuite name="PropertyTwo" tests="1" failures="0" disabled="0" errors="0" time="*">
  50. <testcase name="TestSomeProperties" status="run" time="*" classname="PropertyTwo" SetUpProp="2" TestSomeProperty="2" TearDownProp="2" />
  51. </testsuite>
  52. </testsuites>
  53. """
  54. class GTestXMLOutFilesTest(gtest_xml_test_utils.GTestXMLTestCase):
  55. """Unit test for Google Test's XML output functionality."""
  56. def setUp(self):
  57. # We want the trailing '/' that the last "" provides in os.path.join, for
  58. # telling Google Test to create an output directory instead of a single file
  59. # for xml output.
  60. self.output_dir_ = os.path.join(gtest_test_utils.GetTempDir(),
  61. GTEST_OUTPUT_SUBDIR, "")
  62. self.DeleteFilesAndDir()
  63. def tearDown(self):
  64. self.DeleteFilesAndDir()
  65. def DeleteFilesAndDir(self):
  66. try:
  67. os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml"))
  68. except os.error:
  69. pass
  70. try:
  71. os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml"))
  72. except os.error:
  73. pass
  74. try:
  75. os.rmdir(self.output_dir_)
  76. except os.error:
  77. pass
  78. def testOutfile1(self):
  79. self._TestOutFile(GTEST_OUTPUT_1_TEST, EXPECTED_XML_1)
  80. def testOutfile2(self):
  81. self._TestOutFile(GTEST_OUTPUT_2_TEST, EXPECTED_XML_2)
  82. def _TestOutFile(self, test_name, expected_xml):
  83. gtest_prog_path = gtest_test_utils.GetTestExecutablePath(test_name)
  84. command = [gtest_prog_path, "--gtest_output=xml:%s" % self.output_dir_]
  85. p = gtest_test_utils.Subprocess(command,
  86. working_dir=gtest_test_utils.GetTempDir())
  87. self.assert_(p.exited)
  88. self.assertEquals(0, p.exit_code)
  89. # TODO(wan@google.com): libtool causes the built test binary to be
  90. # named lt-gtest_xml_outfiles_test_ instead of
  91. # gtest_xml_outfiles_test_. To account for this possibillity, we
  92. # allow both names in the following code. We should remove this
  93. # hack when Chandler Carruth's libtool replacement tool is ready.
  94. output_file_name1 = test_name + ".xml"
  95. output_file1 = os.path.join(self.output_dir_, output_file_name1)
  96. output_file_name2 = 'lt-' + output_file_name1
  97. output_file2 = os.path.join(self.output_dir_, output_file_name2)
  98. self.assert_(os.path.isfile(output_file1) or os.path.isfile(output_file2),
  99. output_file1)
  100. expected = minidom.parseString(expected_xml)
  101. if os.path.isfile(output_file1):
  102. actual = minidom.parse(output_file1)
  103. else:
  104. actual = minidom.parse(output_file2)
  105. self.NormalizeXml(actual.documentElement)
  106. self.AssertEquivalentNodes(expected.documentElement,
  107. actual.documentElement)
  108. expected.unlink()
  109. actual.unlink()
  110. if __name__ == "__main__":
  111. os.environ["GTEST_STACK_TRACE_DEPTH"] = "0"
  112. gtest_test_utils.Main()