From a09ebc3b26e9ccdae0c6b3b5af948e60dad6b2b1 Mon Sep 17 00:00:00 2001 From: Abhijeet Kaur Date: Sun, 28 May 2017 03:08:33 +0530 Subject: [PATCH] testsuite: Add tests for helloworld bot in contrib_bots. Add test file 'test_helloworld.py'. --- .../bots/helloworld/test_helloworld.py | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 contrib_bots/bots/helloworld/test_helloworld.py diff --git a/contrib_bots/bots/helloworld/test_helloworld.py b/contrib_bots/bots/helloworld/test_helloworld.py new file mode 100644 index 0000000..06cfef4 --- /dev/null +++ b/contrib_bots/bots/helloworld/test_helloworld.py @@ -0,0 +1,30 @@ +#!/usr/bin/env python + +from __future__ import absolute_import +from __future__ import print_function + +import os +import sys + +our_dir = os.path.dirname(os.path.abspath(__file__)) +# For dev setups, we can find the API in the repo itself. +if os.path.exists(os.path.join(our_dir, '..')): + sys.path.insert(0, '..') +from bots_test_lib import BotTestCase + +class TestHelloWorldBot(BotTestCase): + bot_name = "helloworld" + + def test_bot(self): + self.assert_bot_output( + {'content': "foo", 'type': "private", 'sender_email': "foo"}, + "beep boop" + ) + self.assert_bot_output( + {'content': "Hi, my name is abc", 'type': "stream", 'display_recipient': "foo", 'subject': "foo"}, + "beep boop" + ) + self.assert_bot_output( + {'content': "", 'type': "stream", 'display_recipient': "foo", 'subject': "foo"}, + "beep boop" + )