示例#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")