[PATCH xorg-gtest 10/11] examples: rename xorg-gtest-example to indicate it's an Environment example
Peter Hutterer
peter.hutterer at who-t.net
Mon Oct 29 18:38:32 PDT 2012
This example relies on the Environment class, make that more obvious. And
add more comments and test cases to show the usage.
Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>
---
.gitignore | 2 +-
examples/Makefile.am | 8 +--
examples/xorg-gtest-environment-example.cpp | 94 +++++++++++++++++++++++++++--
3 files changed, 93 insertions(+), 11 deletions(-)
diff --git a/.gitignore b/.gitignore
index 89fa88c..6bceeb1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -78,4 +78,4 @@ core
#
doc/api
doc/Doxyfile
-examples/xorg-gtest-example
+examples/xorg-gtest-environment-example
diff --git a/examples/Makefile.am b/examples/Makefile.am
index fd9cfb8..df783a7 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -53,17 +53,17 @@ libxorg_gtest_main_a_CPPFLAGS = \
-I$(top_srcdir)
libxorg_gtest_main_a_CXXFLAGS = $(GTEST_CXXFLAGS) $(AM_CXXFLAGS)
-noinst_PROGRAMS = xorg-gtest-example
+noinst_PROGRAMS = xorg-gtest-environment-example
if ENABLE_XORG_GTEST_TESTS
TESTS = $(noinst_PROGRAMS)
endif
-xorg_gtest_example_SOURCES = xorg-gtest-example.cpp
+xorg_gtest_environment_example_SOURCES = xorg-gtest-environment-example.cpp
-xorg_gtest_example_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/include
+xorg_gtest_environment_example_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/include
-xorg_gtest_example_LDADD = \
+xorg_gtest_environment_example_LDADD = \
libgtest.a \
libxorg-gtest.a \
libxorg-gtest_main.a \
diff --git a/examples/xorg-gtest-environment-example.cpp b/examples/xorg-gtest-environment-example.cpp
index 4e9b6bb..92d777f 100644
--- a/examples/xorg-gtest-environment-example.cpp
+++ b/examples/xorg-gtest-environment-example.cpp
@@ -1,18 +1,100 @@
#include <xorg/gtest/xorg-gtest.h>
+#include <X11/extensions/XInput2.h>
+#include <X11/Xatom.h>
+
using namespace xorg::testing;
/**
- * @example xorg-gtest-example.cpp
+ * @example xorg-gtest-environment-example.cpp
+ *
+ * This is an example for using the fixture xorg::testing::Test for your own
+ * tests, using the xorg::testing::Environment to start up a server.
+ *
+ * Please make sure that you have the X.org dummy display driver installed
+ * on your system and that you execute the test with root privileges.
+ *
+ * The xorg::testing::Environment starts up one server before the test
+ * execution, that server is alive during all tests until the end of the
+ * test suite. For options on controlling that server run this test with
+ * --help, the configuration path, display number can be controlled by the
+ * caller.
*
- * This is an example for using the fixture
- * xorg::testing::Test for your own tests. Please
- * make sure that you have the X.org dummy display
- * driver installed on your system and that you execute
- * the test with root privileges.
+ * Note that the test environment (i.e. the X server instance) is shared
+ * between tests. If the tests are the only client connection, the server
+ * will trigger a regeneration when the test finishes with Test::TearDown().
+ * If more than one client connection is active however, this regeneration
+ * will not happen and changes made by one test can affect outcomes on other
+ * tests.
+ *
+ * This test is missing a main(), we pull that in from xorg-gtest-main.cpp
*/
+
+/* This must be a TEST_F to ensure we get the goodies from
+ * ::xorg::testing::Test */
TEST_F(Test, DummyXorgServerTest) {
+ /* Display() contains the display connection to the X server */
EXPECT_NE((Window)None, DefaultRootWindow(Display()));
}
+
+/* Another test querying for input devices. */
+TEST_F(Test, XIQueryVersion20) {
+ int major = 2, minor = 0;
+
+ ASSERT_EQ(Success, XIQueryVersion(Display(), &major, &minor));
+ ASSERT_GE(major * 100 + minor, 200);
+}
+
+/* Even though we queried for 2.0 above, we can query again for 2.2. Each
+ * TEST_F has a new Display */
+TEST_F(Test, XIQueryVersion22) {
+ int major = 2, minor = 2;
+
+ ASSERT_EQ(Success, XIQueryVersion(Display(), &major, &minor));
+ ASSERT_EQ(major * 100 + minor, 202);
+}
+
+/* The next two tests illustrates a potential test dependency.
+ * Test.CreateWindowProperty creates a property on the root window. If our
+ * connection is the only Display connection, the server will regenerate
+ * after Test::TearDown and the property is removed becore
+ * Test.CheckWindowProperty is called. If some other client holds the
+ * connection open, the property stays alive.
+ */
+TEST_F(Test, CreateWindowProperty) {
+ Atom prop = XInternAtom(Display(), "xorg-gtest test atom", False);
+ ASSERT_NE((Atom)None, prop);
+
+ unsigned char data = 1;
+ XChangeProperty(Display(), DefaultRootWindow(Display()), prop,
+ XA_INTEGER, 8, PropModeReplace, &data, 1);
+ XFlush(Display());
+}
+
+TEST_F(Test, CheckWindowProperty) {
+ Atom prop = XInternAtom(Display(), "xorg-gtest test atom", True);
+ ASSERT_EQ((Atom)None, prop) << "Property did not get removed, some client prevented regeneration";
+}
+
+/**
+ * Example class for how to subclass tests.
+ */
+class SubTest : public Test {
+public:
+ virtual void SetUp(void) {
+ Test::SetUp();
+
+ /* Create some atom that we can then use inside the test */
+ example_prop = XInternAtom(Display(), "xorg-gtest example atom", False);
+ }
+
+protected:
+ Atom example_prop;
+};
+
+TEST_F(SubTest, ExampleAtom) {
+ /* We have access to SubTest's member public and protected variables here */
+ ASSERT_NE((Atom)None, example_prop);
+}
--
1.7.11.7
More information about the xorg-devel
mailing list