Esempio n. 1
0
def test_get_from_child1():
    qc = QueueComms()
    qc.child_queue.put("2")
    assert qc.get_from_child() == "2"
Esempio n. 2
0
def test_get_from_parent1():
    qc = QueueComms()
    qc.parent_queue.put("2")
    assert qc.get_from_parent() == "2"
Esempio n. 3
0
def test_get_from_parent2():
    qc = QueueComms()
    assert qc.get_from_parent() == None
Esempio 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
Esempio n. 5
0
def test_get_from_parent1():
    qc = QueueComms()
    qc.parent_queue.put("2")
    assert (qc.get_from_parent() == "2")
Esempio n. 6
0
def test_queued_for_child2():
    qc = QueueComms()
    qc.child_queue.put("2")
    assert qc.queued_for_child() == True
Esempio n. 7
0
def test_queue_value_error_child2():
    qc = QueueComms()
    with pytest.raises(ValueError):
        qc.signal_child("overflow")
Esempio 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")
Esempio n. 9
0
def test_queue_value_error_child2():
    qc = QueueComms()
    with pytest.raises(ValueError):
        qc.signal_child("overflow")
Esempio 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)
Esempio n. 11
0
def test_queued_for_child2():
    qc = QueueComms()
    qc.child_queue.put("2")
    assert (qc.queued_for_child() == True)
Esempio n. 12
0
def test_get_from_child2():
    qc = QueueComms()
    assert (qc.get_from_child() == None)
Esempio n. 13
0
def test_get_from_child1():
    qc = QueueComms()
    qc.child_queue.put("2")
    assert (qc.get_from_child() == "2")
Esempio n. 14
0
def test_get_from_parent2():
    qc = QueueComms()
    assert (qc.get_from_parent() == None)
Esempio n. 15
0
def test_get_from_child2():
    qc = QueueComms()
    assert qc.get_from_child() == None
Esempio n. 16
0
def test_queue_value_error_parent2():
    qc = QueueComms()
    with pytest.raises(ValueError):
        qc.signal_parent("overflow")
Esempio 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
Esempio 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)
Esempio 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")
Esempio 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)
Esempio n. 21
0
def test_queue_value_error_parent2():
    qc = QueueComms()
    with pytest.raises(ValueError):
        qc.signal_parent("overflow")
Esempio n. 22
0
def test_queued_for_parent2():
    qc = QueueComms()
    qc.parent_queue.put("2")
    assert qc.queued_for_parent() == True
Esempio 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)
Esempio n. 24
0
def test_queued_for_parent2():
    qc = QueueComms()
    qc.parent_queue.put("2")
    assert (qc.queued_for_parent() == True)