diff tests/cmd-server-cnotice/main.cpp @ 298:a67bc47e6d02

Tests: add test for server-disconnect and cnotice, #559
author David Demelier <markand@malikania.fr>
date Wed, 19 Oct 2016 13:43:29 +0200
parents
children a6c3d73d9641
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/cmd-server-cnotice/main.cpp	Wed Oct 19 13:43:29 2016 +0200
@@ -0,0 +1,76 @@
+/*
+ * main.cpp -- test server-cnotice remote command
+ *
+ * Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <cmd-server-cnotice.hpp>
+#include <command-tester.hpp>
+#include <server-tester.hpp>
+
+using namespace irccd;
+using namespace irccd::command;
+
+namespace {
+
+std::string channel;
+std::string message;
+
+} // !namespace
+
+class ServerChannelNoticeTest : public ServerTester {
+public:
+    virtual void cnotice(std::string channel, std::string message) override
+    {
+        ::channel = channel;
+        ::message = message;
+    }
+};
+
+class ServerChannelNoticeCommandTest : public CommandTester {
+public:
+    ServerChannelNoticeCommandTest()
+        : CommandTester(std::make_unique<ServerChannelNoticeCommand>(),
+                        std::make_unique<ServerChannelNoticeTest>())
+    {
+        m_irccdctl.client().request({
+            { "command",    "server-cnotice"    },
+            { "server",     "test"              },
+            { "channel",    "#staff"            },
+            { "message",    "silence"           }
+        });
+    }
+};
+
+TEST_F(ServerChannelNoticeCommandTest, basic)
+{
+    try {
+        poll([&] () {
+            return !channel.empty() && !message.empty();
+        });
+
+        ASSERT_EQ("#staff", channel);
+        ASSERT_EQ("silence", message);
+    } catch (const std::exception &ex) {
+        FAIL() << ex.what();
+    }
+}
+
+int main(int argc, char **argv)
+{
+    testing::InitGoogleTest(&argc, argv);
+
+    return RUN_ALL_TESTS();
+}