Ejemplo n.º 1
0
def test_get_from_child1():
    qc = QueueComms()
    qc.child_queue.put("2")
    assert qc.get_from_child() == "2"
Ejemplo n.º 2
0
def test_get_from_parent1():
    qc = QueueComms()
    qc.parent_queue.put("2")
    assert qc.get_from_parent() == "2"
Ejemplo n.º 3
0
def test_get_from_parent2():
    qc = QueueComms()
    assert qc.get_from_parent() == None
Ejemplo n.º 4
0
def test_queued_for_parent1():
    qc = QueueComms()
    qc.parent_queue.put("2")
    qc.parent_queue.get()
    assert qc.queued_for_parent() == False
Ejemplo n.º 5
0
def test_get_from_parent1():
    qc = QueueComms()
    qc.parent_queue.put("2")
    assert (qc.get_from_parent() == "2")
Ejemplo n.º 6
0
def test_queued_for_child2():
    qc = QueueComms()
    qc.child_queue.put("2")
    assert qc.queued_for_child() == True
Ejemplo n.º 7
0
def test_queue_value_error_child2():
    qc = QueueComms()
    with pytest.raises(ValueError):
        qc.signal_child("overflow")
Ejemplo n.º 8
0
def test_queue_max_size_child1():
    qc = QueueComms()
    for i in range(QUEUE_MAX_SIZE):
        qc.send_to_child(i)
    with pytest.raises(Full):
        qc.send_to_child("overflow")
Ejemplo n.º 9
0
def test_queue_value_error_child2():
    qc = QueueComms()
    with pytest.raises(ValueError):
        qc.signal_child("overflow")
Ejemplo n.º 10
0
def test_queued_for_child1():
    qc = QueueComms()
    qc.child_queue.put("2")
    qc.child_queue.get()
    assert (qc.queued_for_child() == False)
Ejemplo n.º 11
0
def test_queued_for_child2():
    qc = QueueComms()
    qc.child_queue.put("2")
    assert (qc.queued_for_child() == True)
Ejemplo n.º 12
0
def test_get_from_child2():
    qc = QueueComms()
    assert (qc.get_from_child() == None)
Ejemplo n.º 13
0
def test_get_from_child1():
    qc = QueueComms()
    qc.child_queue.put("2")
    assert (qc.get_from_child() == "2")
Ejemplo n.º 14
0
def test_get_from_parent2():
    qc = QueueComms()
    assert (qc.get_from_parent() == None)
Ejemplo n.º 15
0
def test_get_from_child2():
    qc = QueueComms()
    assert qc.get_from_child() == None
Ejemplo n.º 16
0
def test_queue_value_error_parent2():
    qc = QueueComms()
    with pytest.raises(ValueError):
        qc.signal_parent("overflow")
Ejemplo n.º 17
0
def test_queued_for_child1():
    qc = QueueComms()
    qc.child_queue.put("2")
    qc.child_queue.get()
    assert qc.queued_for_child() == False
Ejemplo n.º 18
0
def test_queued_for_parent1():
    qc = QueueComms()
    qc.parent_queue.put("2")
    qc.parent_queue.get()
    assert (qc.queued_for_parent() == False)
Ejemplo n.º 19
0
def test_queue_max_size_child1():
    qc = QueueComms()
    for i in range(QUEUE_MAX_SIZE):
        qc.send_to_child(i)
    with pytest.raises(Full):
        qc.send_to_child("overflow")
Ejemplo n.º 20
0
def test_queue_max_size_parent3():
    qc = QueueComms()
    for i in range(QUEUE_MAX_SIZE):
        qc.signal_parent(i)
    with pytest.raises(Full):
        qc.signal_parent(1)
Ejemplo n.º 21
0
def test_queue_value_error_parent2():
    qc = QueueComms()
    with pytest.raises(ValueError):
        qc.signal_parent("overflow")
Ejemplo n.º 22
0
def test_queued_for_parent2():
    qc = QueueComms()
    qc.parent_queue.put("2")
    assert qc.queued_for_parent() == True
Ejemplo n.º 23
0
def test_queue_max_size_parent3():
    qc = QueueComms()
    for i in range(QUEUE_MAX_SIZE):
        qc.signal_parent(i)
    with pytest.raises(Full):
        qc.signal_parent(1)
Ejemplo n.º 24
0
def test_queued_for_parent2():
    qc = QueueComms()
    qc.parent_queue.put("2")
    assert (qc.queued_for_parent() == True)