-
Notifications
You must be signed in to change notification settings - Fork 310
/
test_manager.py
1094 lines (884 loc) · 37.8 KB
/
test_manager.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import os
import shutil
import sys
import time
from itertools import combinations
from typing import Optional
from unittest.mock import patch
import pytest
from jupyter_core.utils import ensure_async
from nbformat import ValidationError
from nbformat import v4 as nbformat
from tornado.web import HTTPError
from traitlets import TraitError
from jupyter_server.services.contents.filemanager import (
AsyncFileContentsManager,
FileContentsManager,
)
from ...utils import expected_http_error
@pytest.fixture(
params=[
(FileContentsManager, True),
(FileContentsManager, False),
(AsyncFileContentsManager, True),
(AsyncFileContentsManager, False),
]
)
def jp_contents_manager(request, tmp_path):
contents_manager, use_atomic_writing = request.param
return contents_manager(root_dir=str(tmp_path), use_atomic_writing=use_atomic_writing)
@pytest.fixture(params=[FileContentsManager, AsyncFileContentsManager])
def jp_file_contents_manager_class(request, tmp_path):
return request.param
# -------------- Functions ----------------------------
def _make_dir(jp_contents_manager, api_path):
"""
Make a directory.
"""
os_path = jp_contents_manager._get_os_path(api_path)
try:
os.makedirs(os_path)
except OSError:
print("Directory already exists: %r" % os_path)
def _make_big_dir(contents_manager, api_path):
# make a directory that is over 100 MB in size
os_path = contents_manager._get_os_path(api_path)
try:
os.makedirs(os_path)
with open(f"{os_path}/demofile.txt", "a") as textFile:
textFile.write(
"""
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate
velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident,
sunt in culpa qui officia deserunt mollit anim id est laborum.
"""
)
num_sub_folders = contents_manager.max_copy_folder_size_mb * 10
for i in range(num_sub_folders):
os.makedirs(f"{os_path}/subfolder-{i}")
for j in range(200):
shutil.copy(
f"{os_path}/demofile.txt",
f"{os_path}/subfolder-{i}/testfile{j}.txt",
)
except OSError as err:
print("Directory already exists", err)
def symlink(jp_contents_manager, src, dst):
"""Make a symlink to src from dst
src and dst are api_paths
"""
src_os_path = jp_contents_manager._get_os_path(src)
dst_os_path = jp_contents_manager._get_os_path(dst)
print(src_os_path, dst_os_path, os.path.isfile(src_os_path))
os.symlink(src_os_path, dst_os_path)
def add_code_cell(notebook):
output = nbformat.new_output("display_data", {"application/javascript": "alert('hi');"})
cell = nbformat.new_code_cell("print('hi')", outputs=[output])
notebook.cells.append(cell)
def add_invalid_cell(notebook):
output = nbformat.new_output("display_data", {"application/javascript": "alert('hi');"})
cell = nbformat.new_code_cell("print('hi')", outputs=[output])
cell.pop("source") # Remove source to invaliate
notebook.cells.append(cell)
async def prepare_notebook(
jp_contents_manager: FileContentsManager, make_invalid: Optional[bool] = False
) -> tuple[dict, str]:
cm = jp_contents_manager
model = await ensure_async(cm.new_untitled(type="notebook"))
name = model["name"]
path = model["path"]
full_model = await ensure_async(cm.get(path))
nb = full_model["content"]
nb["metadata"]["counter"] = int(1e6 * time.time())
if make_invalid:
add_invalid_cell(nb)
else:
add_code_cell(nb)
return full_model, path
async def new_notebook(jp_contents_manager):
full_model, path = await prepare_notebook(jp_contents_manager)
cm = jp_contents_manager
name = full_model["name"]
path = full_model["path"]
nb = full_model["content"]
await ensure_async(cm.save(full_model, path))
return nb, name, path
async def make_populated_dir(jp_contents_manager, api_path):
cm = jp_contents_manager
_make_dir(cm, api_path)
await ensure_async(cm.new(path="/".join([api_path, "nb.ipynb"])))
await ensure_async(cm.new(path="/".join([api_path, "file.txt"])))
async def check_populated_dir_files(jp_contents_manager, api_path):
dir_model = await ensure_async(jp_contents_manager.get(api_path))
assert dir_model["path"] == api_path
assert dir_model["type"] == "directory"
for entry in dir_model["content"]:
if entry["type"] == "directory":
continue
elif entry["type"] == "file":
assert entry["name"] == "file.txt"
complete_path = "/".join([api_path, "file.txt"])
assert entry["path"] == complete_path
elif entry["type"] == "notebook":
assert entry["name"] == "nb.ipynb"
complete_path = "/".join([api_path, "nb.ipynb"])
assert entry["path"] == complete_path
# ----------------- Tests ----------------------------------
def test_root_dir(jp_file_contents_manager_class, tmp_path):
fm = jp_file_contents_manager_class(root_dir=str(tmp_path))
assert fm.root_dir == str(tmp_path)
def test_missing_root_dir(jp_file_contents_manager_class, tmp_path):
root = tmp_path / "notebook" / "dir" / "is" / "missing"
with pytest.raises(TraitError):
jp_file_contents_manager_class(root_dir=str(root))
def test_invalid_root_dir(jp_file_contents_manager_class, tmp_path):
temp_file = tmp_path / "file.txt"
temp_file.write_text("")
with pytest.raises(TraitError):
jp_file_contents_manager_class(root_dir=str(temp_file))
def test_get_os_path(jp_file_contents_manager_class, tmp_path):
fm = jp_file_contents_manager_class(root_dir=str(tmp_path))
path = fm._get_os_path("/path/to/notebook/test.ipynb")
rel_path_list = "/path/to/notebook/test.ipynb".split("/")
fs_path = os.path.join(fm.root_dir, *rel_path_list)
assert path == fs_path
fm = jp_file_contents_manager_class(root_dir=str(tmp_path))
path = fm._get_os_path("test.ipynb")
fs_path = os.path.join(fm.root_dir, "test.ipynb")
assert path == fs_path
@pytest.mark.skipif(os.name == "nt", reason="Posix only")
def test_get_os_path_posix(jp_file_contents_manager_class, tmp_path):
fm = jp_file_contents_manager_class(root_dir=str(tmp_path))
path = fm._get_os_path("////test.ipynb")
fs_path = os.path.join(fm.root_dir, "test.ipynb")
assert path == fs_path
def test_checkpoint_subdir(jp_file_contents_manager_class, tmp_path):
subd = "sub ∂ir"
cp_name = "test-cp.ipynb"
fm = jp_file_contents_manager_class(root_dir=str(tmp_path))
tmp_path.joinpath(subd).mkdir()
cpm = fm.checkpoints
cp_dir = cpm.checkpoint_path("cp", "test.ipynb")
cp_subdir = cpm.checkpoint_path("cp", "/%s/test.ipynb" % subd)
assert cp_dir != cp_subdir
assert cp_dir == os.path.join(str(tmp_path), cpm.checkpoint_dir, cp_name)
async def test_bad_symlink(jp_file_contents_manager_class, tmp_path):
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
path = "test bad symlink"
_make_dir(cm, path)
file_model = await ensure_async(cm.new_untitled(path=path, ext=".txt"))
# create a broken symlink
symlink(cm, "target", "{}/{}".format(path, "bad symlink"))
model = await ensure_async(cm.get(path))
contents = {content["name"]: content for content in model["content"]}
assert "untitled.txt" in contents
assert contents["untitled.txt"] == file_model
assert "bad symlink" in contents
@pytest.mark.skipif(sys.platform.startswith("win"), reason="Windows doesn't detect symlink loops")
async def test_recursive_symlink(jp_file_contents_manager_class, tmp_path):
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
path = "test recursive symlink"
_make_dir(cm, path)
file_model = await ensure_async(cm.new_untitled(path=path, ext=".txt"))
# create recursive symlink
symlink(cm, "{}/{}".format(path, "recursive"), "{}/{}".format(path, "recursive"))
model = await ensure_async(cm.get(path))
contents = {content["name"]: content for content in model["content"]}
assert "untitled.txt" in contents
assert contents["untitled.txt"] == file_model
# recursive symlinks should not be shown in the contents manager
assert "recursive" not in contents
async def test_good_symlink(jp_file_contents_manager_class, tmp_path):
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
parent = "test good symlink"
name = "good symlink"
path = f"{parent}/{name}"
_make_dir(cm, parent)
file_model = await ensure_async(cm.new(path=parent + "/zfoo.txt"))
# create a good symlink
symlink(cm, file_model["path"], path)
symlink_model = await ensure_async(cm.get(path, content=False))
dir_model = await ensure_async(cm.get(parent))
assert sorted(dir_model["content"], key=lambda x: x["name"]) == [
symlink_model,
file_model,
]
@pytest.mark.skipif(sys.platform.startswith("win"), reason="Can't test permissions on Windows")
async def test_403(jp_file_contents_manager_class, tmp_path):
if hasattr(os, "getuid") and os.getuid() == 0:
raise pytest.skip("Can't test permissions as root")
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
model = await ensure_async(cm.new_untitled(type="file"))
os_path = cm._get_os_path(model["path"])
os.chmod(os_path, 0o400)
try:
with cm.open(os_path, "w") as f:
f.write("don't care")
except HTTPError as e:
assert e.status_code == 403
async def test_400(jp_file_contents_manager_class, tmp_path):
# Test Delete behavior
# Test delete of file in hidden directory
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
hidden_dir = ".hidden"
file_in_hidden_path = os.path.join(hidden_dir, "visible.txt")
_make_dir(cm, hidden_dir)
with pytest.raises(HTTPError) as excinfo:
await ensure_async(cm.delete_file(file_in_hidden_path))
assert excinfo.value.status_code == 400
# Test delete hidden file in visible directory
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
hidden_dir = "visible"
file_in_hidden_path = os.path.join(hidden_dir, ".hidden.txt")
_make_dir(cm, hidden_dir)
with pytest.raises(HTTPError) as excinfo:
await ensure_async(cm.delete_file(file_in_hidden_path))
assert excinfo.value.status_code == 400
# Test Save behavior
# Test save of file in hidden directory
with pytest.raises(HTTPError) as excinfo:
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
hidden_dir = ".hidden"
file_in_hidden_path = os.path.join(hidden_dir, "visible.txt")
_make_dir(cm, hidden_dir)
model = await ensure_async(cm.new(path=file_in_hidden_path))
os_path = cm._get_os_path(model["path"])
try:
result = await ensure_async(cm.save(model, path=os_path))
except HTTPError as e:
assert e.status_code == 400
# Test save hidden file in visible directory
with pytest.raises(HTTPError) as excinfo:
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
hidden_dir = "visible"
file_in_hidden_path = os.path.join(hidden_dir, ".hidden.txt")
_make_dir(cm, hidden_dir)
model = await ensure_async(cm.new(path=file_in_hidden_path))
os_path = cm._get_os_path(model["path"])
try:
result = await ensure_async(cm.save(model, path=os_path))
except HTTPError as e:
assert e.status_code == 400
# Test rename behavior
# Test rename with source file in hidden directory
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
hidden_dir = ".hidden"
file_in_hidden_path = os.path.join(hidden_dir, "visible.txt")
_make_dir(cm, hidden_dir)
old_path = file_in_hidden_path
new_path = "new.txt"
with pytest.raises(HTTPError) as excinfo:
await ensure_async(cm.rename_file(old_path, new_path))
assert excinfo.value.status_code == 400
# Test rename of dest file in hidden directory
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
hidden_dir = ".hidden"
file_in_hidden_path = os.path.join(hidden_dir, "visible.txt")
_make_dir(cm, hidden_dir)
new_path = file_in_hidden_path
old_path = "old.txt"
with pytest.raises(HTTPError) as excinfo:
await ensure_async(cm.rename_file(old_path, new_path))
assert excinfo.value.status_code == 400
# Test rename with hidden source file in visible directory
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
hidden_dir = "visible"
file_in_hidden_path = os.path.join(hidden_dir, ".hidden.txt")
_make_dir(cm, hidden_dir)
old_path = file_in_hidden_path
new_path = "new.txt"
with pytest.raises(HTTPError) as excinfo:
await ensure_async(cm.rename_file(old_path, new_path))
assert excinfo.value.status_code == 400
# Test rename with hidden dest file in visible directory
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
hidden_dir = "visible"
file_in_hidden_path = os.path.join(hidden_dir, ".hidden.txt")
_make_dir(cm, hidden_dir)
new_path = file_in_hidden_path
old_path = "old.txt"
with pytest.raises(HTTPError) as excinfo:
await ensure_async(cm.rename_file(old_path, new_path))
assert excinfo.value.status_code == 400
async def test_404(jp_file_contents_manager_class, tmp_path):
# setup
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
# Test visible file in hidden folder
cm.allow_hidden = True
hidden_dir = ".hidden"
file_in_hidden_path = os.path.join(hidden_dir, "visible.txt")
_make_dir(cm, hidden_dir)
model = await ensure_async(cm.new(path=file_in_hidden_path))
os_path = cm._get_os_path(model["path"])
cm.allow_hidden = False
with pytest.raises(HTTPError) as excinfo:
await ensure_async(cm.get(os_path))
assert excinfo.value.status_code == 404
# Test hidden file in visible folder
cm.allow_hidden = True
hidden_dir = "visible"
file_in_hidden_path = os.path.join(hidden_dir, ".hidden.txt")
_make_dir(cm, hidden_dir)
model = await ensure_async(cm.new(path=file_in_hidden_path))
os_path = cm._get_os_path(model["path"])
cm.allow_hidden = False
with pytest.raises(HTTPError) as excinfo:
await ensure_async(cm.get(os_path))
assert excinfo.value.status_code == 404
# Test file not found
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
not_a_file = "foo.bar"
with pytest.raises(HTTPError) as excinfo:
await ensure_async(cm.get(not_a_file))
assert excinfo.value.status_code == 404
async def test_escape_root(jp_file_contents_manager_class, tmp_path):
td = str(tmp_path)
cm = jp_file_contents_manager_class(root_dir=td)
# make foo, bar next to root
with open(os.path.join(cm.root_dir, "..", "foo"), "w") as f:
f.write("foo")
with open(os.path.join(cm.root_dir, "..", "bar"), "w") as f:
f.write("bar")
with pytest.raises(HTTPError) as e:
await ensure_async(cm.get(".."))
assert expected_http_error(e, 404)
with pytest.raises(HTTPError) as e:
await ensure_async(cm.get("foo/../../../bar"))
assert expected_http_error(e, 404)
with pytest.raises(HTTPError) as e:
await ensure_async(cm.delete("../foo"))
assert expected_http_error(e, 404)
with pytest.raises(HTTPError) as e:
await ensure_async(cm.rename("../foo", "../bar"))
assert expected_http_error(e, 404)
with pytest.raises(HTTPError) as e:
await ensure_async(
cm.save(
model={
"type": "file",
"content": "",
"format": "text",
},
path="../foo",
)
)
assert expected_http_error(e, 404)
async def test_new_untitled(jp_contents_manager):
cm = jp_contents_manager
# Test in root directory
model = await ensure_async(cm.new_untitled(type="notebook"))
assert isinstance(model, dict)
assert "name" in model
assert "path" in model
assert "type" in model
assert model["type"] == "notebook"
assert model["name"] == "Untitled.ipynb"
assert model["path"] == "Untitled.ipynb"
# Test in sub-directory
model = await ensure_async(cm.new_untitled(type="directory"))
assert isinstance(model, dict)
assert "name" in model
assert "path" in model
assert "type" in model
assert model["type"] == "directory"
assert model["name"] == "Untitled Folder"
assert model["path"] == "Untitled Folder"
sub_dir = model["path"]
model = await ensure_async(cm.new_untitled(path=sub_dir))
assert isinstance(model, dict)
assert "name" in model
assert "path" in model
assert "type" in model
assert model["type"] == "file"
assert model["name"] == "untitled"
assert model["path"] == "%s/untitled" % sub_dir
# Test with a compound extension
model = await ensure_async(cm.new_untitled(path=sub_dir, ext=".foo.bar"))
assert model["name"] == "untitled.foo.bar"
model = await ensure_async(cm.new_untitled(path=sub_dir, ext=".foo.bar"))
assert model["name"] == "untitled1.foo.bar"
async def test_modified_date(jp_contents_manager):
cm = jp_contents_manager
# Create a new notebook.
nb, name, path = await new_notebook(cm)
model = await ensure_async(cm.get(path))
# Add a cell and save.
add_code_cell(model["content"])
await ensure_async(cm.save(model, path))
# Reload notebook and verify that last_modified incremented.
saved = await ensure_async(cm.get(path))
assert saved["last_modified"] >= model["last_modified"]
# Move the notebook and verify that last_modified stayed the same.
# (The frontend fires a warning if last_modified increases on the
# renamed file.)
new_path = "renamed.ipynb"
await ensure_async(cm.rename(path, new_path))
renamed = await ensure_async(cm.get(new_path))
assert renamed["last_modified"] >= saved["last_modified"]
async def test_get(jp_contents_manager):
cm = jp_contents_manager
# Create a notebook
model = await ensure_async(cm.new_untitled(type="notebook"))
name = model["name"]
path = model["path"]
# Check that we 'get' on the notebook we just created
model2 = await ensure_async(cm.get(path))
assert isinstance(model2, dict)
assert "name" in model2
assert "path" in model2
assert model["name"] == name
assert model["path"] == path
nb_as_file = await ensure_async(cm.get(path, content=True, type="file"))
assert nb_as_file["path"] == path
assert nb_as_file["type"] == "file"
assert nb_as_file["format"] == "text"
assert not isinstance(nb_as_file["content"], dict)
nb_as_bin_file = await ensure_async(cm.get(path, content=True, type="file", format="base64"))
assert nb_as_bin_file["format"] == "base64"
nb_with_hash = await ensure_async(cm.get(path, require_hash=True))
assert nb_with_hash["hash"]
assert nb_with_hash["hash_algorithm"]
# Get the hash without the content
nb_with_hash = await ensure_async(cm.get(path, content=False, require_hash=True))
assert nb_with_hash["content"] is None
assert nb_with_hash["format"] is None
assert nb_with_hash["hash"]
assert nb_with_hash["hash_algorithm"]
# Test in sub-directory
sub_dir = "/foo/"
_make_dir(cm, "foo")
await ensure_async(cm.new_untitled(path=sub_dir, ext=".ipynb"))
model2 = await ensure_async(cm.get(sub_dir + name))
assert isinstance(model2, dict)
assert "name" in model2
assert "path" in model2
assert "content" in model2
assert model2["name"] == "Untitled.ipynb"
assert model2["path"] == "{}/{}".format(sub_dir.strip("/"), name)
# Test with a regular file.
file_model_path = (await ensure_async(cm.new_untitled(path=sub_dir, ext=".txt")))["path"]
file_model = await ensure_async(cm.get(file_model_path, require_hash=True))
expected_model = {
"content": "",
"format": "text",
"mimetype": "text/plain",
"name": "untitled.txt",
"path": "foo/untitled.txt",
"type": "file",
"writable": True,
"hash_algorithm": cm.hash_algorithm,
}
# Assert expected model is in file_model
for key, value in expected_model.items():
assert file_model[key] == value
assert "created" in file_model
assert "last_modified" in file_model
assert file_model["hash"]
# Get hash without content
file_model = await ensure_async(cm.get(file_model_path, content=False, require_hash=True))
expected_model = {
"content": None,
"format": None,
"mimetype": "text/plain",
"name": "untitled.txt",
"path": "foo/untitled.txt",
"type": "file",
"writable": True,
"hash_algorithm": cm.hash_algorithm,
}
# Assert expected model is in file_model
for key, value in expected_model.items():
assert file_model[key] == value
assert "created" in file_model
assert "last_modified" in file_model
assert file_model["hash"]
# Create a sub-sub directory to test getting directory contents with a
# subdir.
_make_dir(cm, "foo/bar")
dirmodel = await ensure_async(cm.get("foo"))
assert dirmodel["type"] == "directory"
assert isinstance(dirmodel["content"], list)
assert len(dirmodel["content"]) == 3
assert dirmodel["path"] == "foo"
assert dirmodel["name"] == "foo"
# Directory contents should match the contents of each individual entry
# when requested with content=False.
model2_no_content = await ensure_async(cm.get(sub_dir + name, content=False))
file_model_no_content = await ensure_async(cm.get("foo/untitled.txt", content=False))
sub_sub_dir_no_content = await ensure_async(cm.get("foo/bar", content=False))
assert sub_sub_dir_no_content["path"] == "foo/bar"
assert sub_sub_dir_no_content["name"] == "bar"
for entry in dirmodel["content"]:
# Order isn't guaranteed by the spec, so this is a hacky way of
# verifying that all entries are matched.
if entry["path"] == sub_sub_dir_no_content["path"]:
assert entry == sub_sub_dir_no_content
elif entry["path"] == model2_no_content["path"]:
assert entry == model2_no_content
elif entry["path"] == file_model_no_content["path"]:
assert entry == file_model_no_content
else:
raise AssertionError("Unexpected directory entry: %s" % entry())
with pytest.raises(HTTPError):
await ensure_async(cm.get("foo", type="file"))
async def test_update(jp_contents_manager):
cm = jp_contents_manager
# Create a notebook.
model = await ensure_async(cm.new_untitled(type="notebook"))
name = model["name"]
path = model["path"]
# Change the name in the model for rename
model["path"] = "test.ipynb"
model = await ensure_async(cm.update(model, path))
assert isinstance(model, dict)
assert "name" in model
assert "path" in model
assert model["name"] == "test.ipynb"
# Make sure the old name is gone
with pytest.raises(HTTPError):
await ensure_async(cm.get(path))
# Test in sub-directory
# Create a directory and notebook in that directory
sub_dir = "/foo/"
_make_dir(cm, "foo")
model = await ensure_async(cm.new_untitled(path=sub_dir, type="notebook"))
path = model["path"]
# Change the name in the model for rename
d = path.rsplit("/", 1)[0]
new_path = model["path"] = d + "/test_in_sub.ipynb"
model = await ensure_async(cm.update(model, path))
assert isinstance(model, dict)
assert "name" in model
assert "path" in model
assert model["name"] == "test_in_sub.ipynb"
assert model["path"] == new_path
# Make sure the old name is gone
with pytest.raises(HTTPError):
await ensure_async(cm.get(path))
async def test_save(jp_contents_manager):
cm = jp_contents_manager
# Create a notebook
model = await ensure_async(cm.new_untitled(type="notebook"))
name = model["name"]
path = model["path"]
# Get the model with 'content'
full_model = await ensure_async(cm.get(path))
# Save the notebook
model = await ensure_async(cm.save(full_model, path))
assert isinstance(model, dict)
assert "name" in model
assert "path" in model
assert model["name"] == name
assert model["path"] == path
# Test in sub-directory
# Create a directory and notebook in that directory
sub_dir = "/foo/"
_make_dir(cm, "foo")
model = await ensure_async(cm.new_untitled(path=sub_dir, type="notebook"))
path = model["path"]
model = await ensure_async(cm.get(path))
# Change the name in the model for rename
model = await ensure_async(cm.save(model, path))
assert isinstance(model, dict)
assert "name" in model
assert "path" in model
assert model["name"] == "Untitled.ipynb"
assert model["path"] == "foo/Untitled.ipynb"
async def test_delete(jp_contents_manager):
cm = jp_contents_manager
# Create a notebook
nb, name, path = await new_notebook(cm)
# Delete the notebook
await ensure_async(cm.delete(path))
# Check that deleting a non-existent path raises an error.
with pytest.raises(HTTPError):
await ensure_async(cm.delete(path))
# Check that a 'get' on the deleted notebook raises and error
with pytest.raises(HTTPError):
await ensure_async(cm.get(path))
@pytest.mark.parametrize(
"delete_to_trash, always_delete, error",
(
[True, True, False],
# on linux test folder may not be on home folder drive
# => if this is the case, _check_trash will be False
[True, False, None],
[False, True, False],
[False, False, True],
),
)
async def test_delete_non_empty_folder(delete_to_trash, always_delete, error, jp_contents_manager):
cm = jp_contents_manager
cm.delete_to_trash = delete_to_trash
cm.always_delete_dir = always_delete
dir = "to_delete"
await make_populated_dir(cm, dir)
await check_populated_dir_files(cm, dir)
if error is None:
error = False
if sys.platform == "win32":
error = True
elif sys.platform == "linux":
file_dev = os.stat(cm.root_dir).st_dev
home_dev = os.stat(os.path.expanduser("~")).st_dev
error = file_dev != home_dev
if error:
with pytest.raises(
HTTPError,
match=r"HTTP 400: Bad Request \(Directory .*?to_delete not empty\)",
):
await ensure_async(cm.delete_file(dir))
else:
await ensure_async(cm.delete_file(dir))
assert await ensure_async(cm.dir_exists(dir)) is False
async def test_rename(jp_contents_manager):
cm = jp_contents_manager
# Create a new notebook
nb, name, path = await new_notebook(cm)
# Rename the notebook
await ensure_async(cm.rename(path, "changed_path"))
# Attempting to get the notebook under the old name raises an error
with pytest.raises(HTTPError):
await ensure_async(cm.get(path))
# Fetching the notebook under the new name is successful
assert isinstance(await ensure_async(cm.get("changed_path")), dict)
# Ported tests on nested directory renaming from pgcontents
all_dirs = ["foo", "bar", "foo/bar", "foo/bar/foo", "foo/bar/foo/bar"]
unchanged_dirs = all_dirs[:2]
changed_dirs = all_dirs[2:]
for _dir in all_dirs:
await make_populated_dir(cm, _dir)
await check_populated_dir_files(cm, _dir)
# Renaming to an existing directory should fail
for src, dest in combinations(all_dirs, 2):
with pytest.raises(HTTPError) as e:
await ensure_async(cm.rename(src, dest))
assert expected_http_error(e, 409)
# Creating a notebook in a non_existant directory should fail
with pytest.raises(HTTPError) as e:
await ensure_async(cm.new_untitled("foo/bar_diff", ext=".ipynb"))
assert expected_http_error(e, 404)
await ensure_async(cm.rename("foo/bar", "foo/bar_diff"))
# Assert that unchanged directories remain so
for unchanged in unchanged_dirs:
await check_populated_dir_files(cm, unchanged)
# Assert changed directories can no longer be accessed under old names
for changed_dirname in changed_dirs:
with pytest.raises(HTTPError) as e:
await ensure_async(cm.get(changed_dirname))
assert expected_http_error(e, 404)
new_dirname = changed_dirname.replace("foo/bar", "foo/bar_diff", 1)
await check_populated_dir_files(cm, new_dirname)
# Created a notebook in the renamed directory should work
await ensure_async(cm.new_untitled("foo/bar_diff", ext=".ipynb"))
async def test_delete_root(jp_contents_manager):
cm = jp_contents_manager
with pytest.raises(HTTPError) as e:
await ensure_async(cm.delete(""))
assert expected_http_error(e, 400)
async def test_copy(jp_contents_manager):
cm = jp_contents_manager
parent = "å b"
name = "nb √.ipynb"
path = f"{parent}/{name}"
_make_dir(cm, parent)
orig = await ensure_async(cm.new(path=path))
# copy with unspecified name
copy = await ensure_async(cm.copy(path))
assert copy["name"] == orig["name"].replace(".ipynb", "-Copy1.ipynb")
# copy with specified name
copy2 = await ensure_async(cm.copy(path, "å b/copy 2.ipynb"))
assert copy2["name"] == "copy 2.ipynb"
assert copy2["path"] == "å b/copy 2.ipynb"
# copy with specified path
copy2 = await ensure_async(cm.copy(path, "/"))
assert copy2["name"] == name
assert copy2["path"] == name
# copy to destination whose parent dir does not exist
with pytest.raises(HTTPError) as e:
await ensure_async(cm.copy(path, "å x/copy 2.ipynb"))
copy3 = await ensure_async(cm.copy(path, "/copy 3.ipynb"))
assert copy3["name"] == "copy 3.ipynb"
assert copy3["path"] == "copy 3.ipynb"
async def test_copy_dir(jp_contents_manager):
cm = jp_contents_manager
destDir = "Untitled Folder 1"
sourceDir = "Morningstar Notebooks"
nonExistantDir = "FolderDoesNotExist"
_make_dir(cm, destDir)
_make_dir(cm, sourceDir)
nestedDir = f"{destDir}/{sourceDir}"
# copy one folder insider another folder
copy = await ensure_async(cm.copy(from_path=sourceDir, to_path=destDir))
assert copy["path"] == nestedDir
# need to test when copying in a directory where the another folder with the same name exists
_make_dir(cm, nestedDir)
copy = await ensure_async(cm.copy(from_path=sourceDir, to_path=destDir))
assert copy["path"] == f"{nestedDir}-Copy1"
# need to test for when copying in the same path as the sourceDir
copy = await ensure_async(cm.copy(from_path=sourceDir, to_path=""))
assert copy["path"] == f"{sourceDir}-Copy1"
# ensure its still possible to copy a folder to another folder that doesn't exist
copy = await ensure_async(
cm.copy(
from_path=sourceDir,
to_path=nonExistantDir,
)
)
assert copy["path"] == f"{nonExistantDir}/{sourceDir}"
@pytest.mark.skipif(os.name == "nt", reason="Copying big dirs on Window")
async def test_copy_big_dir(jp_contents_manager):
# this tests how the Content API limits preventing copying folders that are more than
# the size limit specified in max_copy_folder_size_mb trait
cm = jp_contents_manager
destDir = "Untitled Folder 1"
sourceDir = "Morningstar Notebooks"
cm.max_copy_folder_size_mb = 5
_make_dir(cm, destDir)
_make_big_dir(contents_manager=cm, api_path=sourceDir)
with pytest.raises(HTTPError) as exc_info:
await ensure_async(cm.copy(from_path=sourceDir, to_path=destDir))
assert exc_info.type is HTTPError
async def test_mark_trusted_cells(jp_contents_manager):
cm = jp_contents_manager
nb, name, path = await new_notebook(cm)
cm.mark_trusted_cells(nb, path)
for cell in nb.cells:
if cell.cell_type == "code":
assert not cell.metadata.trusted
await ensure_async(cm.trust_notebook(path))
nb = (await ensure_async(cm.get(path)))["content"]
for cell in nb.cells:
if cell.cell_type == "code":
assert cell.metadata.trusted
async def test_check_and_sign(jp_contents_manager):
cm = jp_contents_manager
nb, name, path = await new_notebook(cm)
cm.mark_trusted_cells(nb, path)
cm.check_and_sign(nb, path)
assert not cm.notary.check_signature(nb)
await ensure_async(cm.trust_notebook(path))
nb = (await ensure_async(cm.get(path)))["content"]
cm.mark_trusted_cells(nb, path)
cm.check_and_sign(nb, path)
assert cm.notary.check_signature(nb)
async def test_nb_validation(jp_contents_manager):
# Test that validation is performed once when a notebook is read or written
model, path = await prepare_notebook(jp_contents_manager, make_invalid=False)
cm = jp_contents_manager
# We'll use a patch to capture the call count on "nbformat.validate" for the
# successful methods and ensure that calls to the aliased "validate_nb" are
# zero. Note that since patching side-effects the validation error case, we'll
# skip call-count assertions for that portion of the test.
with (
patch("nbformat.validate") as mock_validate,
patch("jupyter_server.services.contents.manager.validate_nb") as mock_validate_nb,
):
# Valid notebook, save, then get
model = await ensure_async(cm.save(model, path))
assert "message" not in model
assert mock_validate.call_count == 1
assert mock_validate_nb.call_count == 0
mock_validate.reset_mock()
mock_validate_nb.reset_mock()
# Get the notebook and ensure there are no messages
model = await ensure_async(cm.get(path))
assert "message" not in model