aboutsummaryrefslogtreecommitdiff
path: root/tests/test-service.cc
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2012-04-26 14:34:38 -0500
committerCharles Kerr <charles.kerr@canonical.com>2012-04-26 14:34:38 -0500
commit705eb1b42bd83149592a284a035b54c3346936da (patch)
treef678edaeb08050f4edbfbeba4b798b4a4953bab3 /tests/test-service.cc
parent1ddba0eb336a87dafc522f15be584ba4cbdc97d5 (diff)
downloadayatana-indicator-session-705eb1b42bd83149592a284a035b54c3346936da.tar.gz
ayatana-indicator-session-705eb1b42bd83149592a284a035b54c3346936da.tar.bz2
ayatana-indicator-session-705eb1b42bd83149592a284a035b54c3346936da.zip
add scaffolding for indicator-session-service Google Testing with libdbustest
Diffstat (limited to 'tests/test-service.cc')
-rw-r--r--tests/test-service.cc71
1 files changed, 71 insertions, 0 deletions
diff --git a/tests/test-service.cc b/tests/test-service.cc
new file mode 100644
index 0000000..c3d2471
--- /dev/null
+++ b/tests/test-service.cc
@@ -0,0 +1,71 @@
+/*
+Copyright 2012 Canonical Ltd.
+
+Authors:
+ Charles Kerr <charles.kerr@canonical.com>
+
+This program is free software: you can redistribute it and/or modify it
+under the terms of the GNU General Public License version 3, as published
+by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranties of
+MERCHANTABILITY, SATISFACTORY QUALITY, 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, see <http://www.gnu.org/licenses/>.
+*/
+
+#include <libindicator/indicator-service-test.h>
+
+#include "dbus-shared-names.h"
+
+/***
+****
+***/
+
+static const char * the_executable = NULL;
+
+/**
+ * Fixture class for testing indicator-session-service with Google Test.
+ */
+class SessionServiceTest: public IndicatorServiceTest
+{
+ public:
+ virtual ~SessionServiceTest() {}
+ SessionServiceTest(): IndicatorServiceTest(INDICATOR_SESSION_DBUS_NAME,
+ INDICATOR_SESSION_DBUS_OBJECT,
+ the_executable) { }
+ public:
+ virtual void SetUp() {
+ wait_seconds(1);
+ IndicatorServiceTest::SetUp();
+ }
+ virtual void TearDown() {
+ IndicatorServiceTest::TearDown();
+ }
+};
+
+
+/**
+ * Basic sanity test to see if we can account for all our menuitems.
+ */
+TEST_F(SessionServiceTest, HelloWorld)
+{
+ ASSERT_TRUE(true);
+}
+
+
+int
+main (int argc, char *argv[])
+{
+ if (argc < 2) {
+ fprintf (stderr, "Usage: appname /path/to/indicator-session-service");
+ return -1;
+ }
+ the_executable = argv[1];
+ fprintf (stdout, "executable is '%s'\n", the_executable);
+ ::testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}