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