-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathconstraints_test.py
72 lines (57 loc) · 2.35 KB
/
constraints_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import pytest
from assertpy import assert_that
from baml_py import errors
from .test_setup import b
from ..baml_client.types import (
BlockConstraintForParam,
NestedBlockConstraintForParam,
MalformedConstraints2,
)
def all_succeeded(checks):
return all(check.status == "succeeded" for check in checks.values())
@pytest.mark.asyncio
async def test_constraints():
res = await b.PredictAge("Greg")
assert res.certainty.checks["unreasonably_certain"].status == "failed"
assert not (all_succeeded(res.certainty.checks))
@pytest.mark.asyncio
async def test_constraint_union_variant_checking():
res = await b.ExtractContactInfo(
"Reach me at [email protected], or 111-222-3333 if needed."
)
assert res.primary.value is not None
assert res.primary.value == "[email protected]"
assert res.secondary.value is not None
assert res.secondary.value == "111-222-3333"
@pytest.mark.asyncio
async def test_return_malformed_constraint():
with pytest.raises(errors.BamlError) as e:
res = await b.ReturnMalformedConstraints(1)
assert res.foo.value == 2
assert res.foo.checks["foo_check"].status == "failed"
assert "Failed to coerce value" in str(e)
@pytest.mark.asyncio
async def test_use_malformed_constraint():
with pytest.raises(errors.BamlError) as e:
res = await b.UseMalformedConstraints(MalformedConstraints2(foo=2))
assert res == 3
assert "object has no method named length" in str(e)
@pytest.mark.asyncio
async def test_block_constraints():
ret = await b.MakeBlockConstraint()
assert ret.checks["cross_field"].status == "failed"
@pytest.mark.asyncio
async def test_nested_block_constraints():
ret = await b.MakeNestedBlockConstraint()
print(ret)
assert ret.nbc.checks["cross_field"].status == "succeeded"
@pytest.mark.asyncio
async def test_block_constraint_arguments():
with pytest.raises(errors.BamlInvalidArgumentError) as e:
block_constraint = BlockConstraintForParam(bcfp=1, bcfp2="too long!")
await b.UseBlockConstraint(block_constraint)
assert "Failed assert: hi" in str(e)
with pytest.raises(errors.BamlInvalidArgumentError) as e:
nested_block_constraint = NestedBlockConstraintForParam(nbcfp=block_constraint)
await b.UseNestedBlockConstraint(nested_block_constraint)
assert "Failed assert: hi" in str(e)