Source code for tests.unit.sts.deferred_io_worker_test
# Copyright 2011-2013 Colin Scott
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
'''
Created on Mar 8, 2012
@author: rcs
'''
import itertools
import os.path
import sys
import unittest
sys.path.append(os.path.join(os.path.dirname(__file__), *itertools.repeat("..", 3)))
from pox.lib.mock_socket import MockSocket
from pox.lib.ioworker.io_worker import IOWorker
from sts.util.deferred_io import DeferredIOWorker
[docs]class DeferredIOWorkerTest(unittest.TestCase):
  @staticmethod
[docs]  def call_later(func):
      # call now!
      func()
 
[docs]  def test_not_sent_until_permitted(self):
    i = DeferredIOWorker(IOWorker())
    i.set_receive_handler(self.call_later)
    i.block()
    i.send("foo")
    self.assertFalse(i._io_worker._ready_to_send)
    self.assertFalse(i._send_queue.empty())
    i.unblock()
    self.assertTrue(i._send_queue.empty())
    i._io_worker._consume_send_buf(3)
    self.assertFalse(i._io_worker._ready_to_send)
 
[docs]  def test_not_received_until_permitted(self):
    i = DeferredIOWorker(IOWorker())
    i.set_receive_handler(self.call_later)
    i.block()
    self.data = None
    def d(worker):
      self.data = worker.peek_receive_buf()
    i.set_receive_handler(d)
    i._io_worker._push_receive_data("bar")
    self.assertEqual(self.data, None)
    i.unblock()
    self.assertEqual(self.data, "bar")
    # Now if unblocked, should go through immediately
    # Note: d does not consume the data
    i._io_worker._push_receive_data("hepp")
    self.assertEqual(self.data, "barhepp")
 
[docs]  def test_receive_consume(self):
    i = DeferredIOWorker(IOWorker())
    i.set_receive_handler(self.call_later)
    self.data = None
    def consume(worker):
      self.data = worker.peek_receive_buf()
      worker.consume_receive_buf(len(self.data))
    i.set_receive_handler(consume)
    i.block()
    i._io_worker._push_receive_data("bar")
    self.assertEqual(self.data, None)
    i.unblock()
    self.assertEqual(self.data, "bar")
    # data has been consumed
    i._io_worker._push_receive_data("hepp")
    self.assertEqual(self.data, "hepp")