import helpers
import pytest

import meshio


@pytest.mark.parametrize(
    "mesh",
    [
        # helpers.empty_mesh,
        helpers.tri_mesh
    ],
)
@pytest.mark.parametrize(
    "binary, tol",
    [
        (False, 1.0e-15),
        # binary STL only operates in single precision
        (True, 1.0e-8),
    ],
)
def test_stl(mesh, binary, tol):
    def writer(*args, **kwargs):
        return meshio.stl.write(*args, binary=binary, **kwargs)

    helpers.write_read(writer, meshio.stl.read, mesh, tol)
