Пример #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)