-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathtest_cat.py
58 lines (38 loc) · 1.61 KB
/
test_cat.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
import pytest
from rclone_python import rclone
@pytest.fixture(scope="module")
def lorem_ipsum_remote_file(default_test_setup):
# uploads the lorem ipsum text file prior to the execution of the tests and deletes it afterwards
# INITIALIZATION
print("\nInitializing: uploading lorem ipsum file")
remote_path = f"{default_test_setup.remote_test_data_dir}/{default_test_setup.local_test_txt_file.name}"
rclone.copyto(
str(default_test_setup.local_test_txt_file),
remote_path,
ignore_existing=True,
show_progress=False,
)
yield remote_path
# TEARDOWN
print("\nTeardown: deleting lorem ipsum file")
rclone.delete(remote_path)
def test_cat(default_test_setup, lorem_ipsum_remote_file):
output = rclone.cat(lorem_ipsum_remote_file)
assert output == default_test_setup.local_test_txt_file.read_text()
def test_cat_count(default_test_setup, lorem_ipsum_remote_file):
count = 10
output = rclone.cat(lorem_ipsum_remote_file, count=count)
assert output == default_test_setup.local_test_txt_file.read_text()[:count]
def test_cat_head(default_test_setup, lorem_ipsum_remote_file):
head = 10
output = rclone.cat(lorem_ipsum_remote_file, head=head)
assert output == default_test_setup.local_test_txt_file.read_text()[:head]
def test_cat_offset(default_test_setup, lorem_ipsum_remote_file):
offset = 10
count = 15
# offset and count
output = rclone.cat(lorem_ipsum_remote_file, offset=offset, count=count)
assert (
output
== default_test_setup.local_test_txt_file.read_text()[offset : offset + count]
)