Exemplo n.º 1
0
 def test_channel_receive_none(self):
     """Testing Channel: receive non-existant"""
     channel = Channel()
     channel.subscribe("test")
     channel.publish("bye")
     with self.assertRaises(KeyError):
         [x for x in channel.receive("bye")]
Exemplo n.º 2
0
 def test_channel_publish(self):
     """Testing Channel: publish topic"""
     channel = Channel()
     channel.subscribe("test")
     channel.subscribe("test2")
     channel.publish("hello", topic="test")
     assert [x for x in channel.receive("test")][0] == "hello"
     assert channel.queues["test2"].qsize() == 0
Exemplo n.º 3
0
    def test_log_plugin(self):
        config = Config()
        channel = Channel()
        channel.subscribe("internal.log")
        channel.publish(Value("test", 0))

        kls = log.LogPlugin(config, channel)
        kls.plugin_name = "internal.log"
        kls.write(channel)
Exemplo n.º 4
0
    def setUp(self):
        self.config = Config()
        self.channel = Channel()
        self.channel.subscribe("test")

        self.config["plugin_dir"] = [
            os.path.join(os.path.dirname(drove.plugin.__file__), "plugins")
        ]
        self.config["read_interval"] = 0
        self.config["write_interval"] = 0

        self.testing_plugin = TestingPlugin(self.config, self.channel)
        self.testing_plugin.setup(self.config)
Exemplo n.º 5
0
 def test_channel_subscription(self):
     """Testing Channel: subscription"""
     channel = Channel()
     channel.subscribe("test")
     assert "test" in channel.queues
Exemplo n.º 6
0
 def test_channel_receive_empty(self):
     """Testing Channel: receive in empty queue"""
     channel = Channel()
     channel.subscribe("test")
     assert [x for x in channel.receive("test")] == []
Exemplo n.º 7
0
 def test_channel_publish_none(self):
     """Testing Channel: publish non-existant"""
     channel = Channel()
     with self.assertRaises(KeyError):
         channel.publish("bye", topic="fail")
Exemplo n.º 8
0
 def test_channel_broadcast(self):
     """Testing Channel: publish broadcast"""
     channel = Channel()
     channel.subscribe("test")
     channel.publish("hello")
     assert [x for x in channel.receive("test")][0] == "hello"