Пример #1
0
def test_start_end_correct():
    assert StartCallRecordFactory()
    assert EndCallRecordFactory(timestamp=timezone.now() + datetime.timedelta(days=1))
Пример #2
0
def test_end_date_before_start():
    assert EndCallRecordFactory()
    with pytest.raises(InvalidDateIntervalError):
        StartCallRecordFactory(timestamp=timezone.now() + datetime.timedelta(days=1))
Пример #3
0
def test_start_date_after_end():
    assert StartCallRecordFactory(timestamp=timezone.now() + datetime.timedelta(days=1))
    with pytest.raises(InvalidDateIntervalError):
        EndCallRecordFactory()
Пример #4
0
def test_invalid_phone_number_long():
    with pytest.raises(ValidationError):
        StartCallRecordFactory(source="123456789123456789")
Пример #5
0
def test_duplicate_start_call_id():
    assert StartCallRecordFactory(call_id=1)
    with pytest.raises(CallIdDuplicationError):
        StartCallRecordFactory(call_id=1)
Пример #6
0
def test_invalid_phone_number_alpha():
    with pytest.raises(ValidationError):
        StartCallRecordFactory(source="this is not a number")
Пример #7
0
def test_invalid_phone_number_short():
    with pytest.raises(ValidationError):
        StartCallRecordFactory(source="123")
Пример #8
0
def test_start():
    assert StartCallRecordFactory()
Пример #9
0
def test_start_no_phone():
    with pytest.raises(StartEndError):
        StartCallRecordFactory(source=None, destination=None)
Пример #10
0
def test_start_destination():
    with pytest.raises(StartEndError):
        StartCallRecordFactory(destination=None)
Пример #11
0
def test_start_source():
    with pytest.raises(StartEndError):
        StartCallRecordFactory(source=None)
Пример #12
0
def test_source_eq_destination():
    with pytest.raises(SourceEqualsDestinationError):
        StartCallRecordFactory(source="1111111111", destination="1111111111")