Spaces:
Running
Running
File size: 1,138 Bytes
fe3ba5f cb5b71d fe3ba5f cb5b71d fe3ba5f cb5b71d fe3ba5f cb5b71d fe3ba5f cb5b71d fe3ba5f |
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 |
from unittest import mock
from etils import epath
import pandas as pd
import pytest
from core import files as files_module
FileTypes = files_module.FileTypes
@mock.patch.object(files_module, "guess_file_type", return_value=FileTypes.CSV)
def test_check_file_csv(guess_file_type):
del guess_file_type
csv = epath.Path(
# This is the hash path for "https://my.url".
"/tmp/croissant-editor-f76b4732c82d83daf858fae2cc0e590d352a4bceb781351243a03daab11f76bc"
)
if csv.exists():
csv.unlink()
with csv.open("w") as f:
f.write("column1,column2\n")
f.write("a,1\n")
f.write("b,2\n")
f.write("c,3\n")
file = files_module.file_from_url("https://my.url", set(), epath.Path())
pd.testing.assert_frame_equal(
file.df, pd.DataFrame({"column1": ["a", "b", "c"], "column2": [1, 2, 3]})
)
@mock.patch.object(files_module, "guess_file_type", return_value="unknown")
def test_check_file_unknown(guess_file_type):
del guess_file_type
with pytest.raises(NotImplementedError):
files_module.file_from_url("https://my.url", set(), epath.Path())
|