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
|
# Copyright (c) 2021-2022, Manfred Moitzi
# License: MIT License
import pytest
import ezdxf
from ezdxf.math import Vec2
from ezdxf.render import mleader
from ezdxf.entities import MultiLeader
@pytest.fixture(scope="module")
def doc():
return ezdxf.new()
def make_multi_leader(doc) -> MultiLeader:
style = doc.mleader_styles.get("Standard")
ml = MultiLeader.new(doc=doc)
ml.dxf.style_handle = style.dxf.handle
return ml
class TestMultiLeaderMTextBuilder:
"""The MultiLeaderMTextBuilder is a construction tool to build the
MULTILEADER entity with MTEXT content and the necessary geometry
information stored in the entity.
"""
def test_set_content(self, doc):
ml = make_multi_leader(doc)
builder = mleader.MultiLeaderMTextBuilder(ml)
builder.set_content("line1")
builder.build(insert=Vec2(0, 0))
assert ml.context.mtext is not None
assert ml.context.mtext.default_content == "line1"
class TestMultiLeaderBlockBuilder:
"""The MultiLeaderBlockBuilder is a construction tool to build the
MULTILEADER entity with BLOCK content and the necessary geometry
information stored in the entity.
"""
def test_set_content(self, doc):
ml = make_multi_leader(doc)
builder = mleader.MultiLeaderBlockBuilder(ml)
assert builder is not None
if __name__ == '__main__':
pytest.main([__file__])
|