Esempio n. 1
0
    def test_active_nodes_unicity(self):
        """ Ensure the nodes unicity in the actives nodes list.

            Fix:
                2015-11-27: we use a list and we don't check the presence of the same node into the list.
        """
        from flumelogger.eventserver import FlumeEventServer
        from flumelogger.errors import ServerSelectionError

        eventserver = FlumeEventServer(host='localhost:7777,localhost:8888')
        eventserver._remove_node(node=('localhost', 7777))
        self.assertEqual([('localhost', 8888)], eventserver.active_nodes)
    def test_active_nodes_unicity(self):
        """ Ensure the nodes unicity in the actives nodes list.

            Fix:
                2015-11-27: we use a list and we don't check the presence of the same node into the list.
        """
        from flumelogger.eventserver import FlumeEventServer
        from flumelogger.errors import ServerSelectionError

        eventserver = FlumeEventServer(host='localhost:7777,localhost:8888')
        eventserver._remove_node(node=('localhost', 7777))
        self.assertEqual([('localhost', 8888)], eventserver.active_nodes)
Esempio n. 3
0
    def test_autoreconnect_failed(self):
        """ Ensure the default_nodes keep safe when we remove a node.

            Fix:
                2015-11-27: the default and active nodes variable was link (memory ref).
        """
        from flumelogger.eventserver import FlumeEventServer
        from flumelogger.errors import ServerSelectionError

        eventserver = FlumeEventServer(host='localhost:7777')
        eventserver._remove_node(node=('localhost', 7777))
        self.assertListEqual([('localhost', 7777)], eventserver.default_nodes)
    def test_autoreconnect_failed(self):
        """ Ensure the default_nodes keep safe when we remove a node.

            Fix:
                2015-11-27: the default and active nodes variable was link (memory ref).
        """
        from flumelogger.eventserver import FlumeEventServer
        from flumelogger.errors import ServerSelectionError

        eventserver = FlumeEventServer(host='localhost:7777')
        eventserver._remove_node(node=('localhost', 7777))
        self.assertListEqual([('localhost', 7777)], eventserver.default_nodes)