|
|
# coding: utf-8
|
|
|
"""Tests for the notebook manager."""
|
|
|
from __future__ import print_function
|
|
|
|
|
|
import logging
|
|
|
import os
|
|
|
|
|
|
from tornado.web import HTTPError
|
|
|
from unittest import TestCase
|
|
|
from tempfile import NamedTemporaryFile
|
|
|
|
|
|
from IPython.nbformat import v4 as nbformat
|
|
|
|
|
|
from IPython.utils.tempdir import TemporaryDirectory
|
|
|
from IPython.utils.traitlets import TraitError
|
|
|
from IPython.html.utils import url_path_join
|
|
|
from IPython.testing import decorators as dec
|
|
|
|
|
|
from ..filemanager import FileContentsManager
|
|
|
from ..manager import ContentsManager
|
|
|
|
|
|
|
|
|
class TestFileContentsManager(TestCase):
|
|
|
|
|
|
def test_root_dir(self):
|
|
|
with TemporaryDirectory() as td:
|
|
|
fm = FileContentsManager(root_dir=td)
|
|
|
self.assertEqual(fm.root_dir, td)
|
|
|
|
|
|
def test_missing_root_dir(self):
|
|
|
with TemporaryDirectory() as td:
|
|
|
root = os.path.join(td, 'notebook', 'dir', 'is', 'missing')
|
|
|
self.assertRaises(TraitError, FileContentsManager, root_dir=root)
|
|
|
|
|
|
def test_invalid_root_dir(self):
|
|
|
with NamedTemporaryFile() as tf:
|
|
|
self.assertRaises(TraitError, FileContentsManager, root_dir=tf.name)
|
|
|
|
|
|
def test_get_os_path(self):
|
|
|
# full filesystem path should be returned with correct operating system
|
|
|
# separators.
|
|
|
with TemporaryDirectory() as td:
|
|
|
root = td
|
|
|
fm = FileContentsManager(root_dir=root)
|
|
|
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)
|
|
|
self.assertEqual(path, fs_path)
|
|
|
|
|
|
fm = FileContentsManager(root_dir=root)
|
|
|
path = fm._get_os_path('test.ipynb')
|
|
|
fs_path = os.path.join(fm.root_dir, 'test.ipynb')
|
|
|
self.assertEqual(path, fs_path)
|
|
|
|
|
|
fm = FileContentsManager(root_dir=root)
|
|
|
path = fm._get_os_path('////test.ipynb')
|
|
|
fs_path = os.path.join(fm.root_dir, 'test.ipynb')
|
|
|
self.assertEqual(path, fs_path)
|
|
|
|
|
|
def test_checkpoint_subdir(self):
|
|
|
subd = u'sub ∂ir'
|
|
|
cp_name = 'test-cp.ipynb'
|
|
|
with TemporaryDirectory() as td:
|
|
|
root = td
|
|
|
os.mkdir(os.path.join(td, subd))
|
|
|
fm = FileContentsManager(root_dir=root)
|
|
|
cp_dir = fm.get_checkpoint_path('cp', 'test.ipynb')
|
|
|
cp_subdir = fm.get_checkpoint_path('cp', '/%s/test.ipynb' % subd)
|
|
|
self.assertNotEqual(cp_dir, cp_subdir)
|
|
|
self.assertEqual(cp_dir, os.path.join(root, fm.checkpoint_dir, cp_name))
|
|
|
self.assertEqual(cp_subdir, os.path.join(root, subd, fm.checkpoint_dir, cp_name))
|
|
|
|
|
|
|
|
|
class TestContentsManager(TestCase):
|
|
|
|
|
|
def setUp(self):
|
|
|
self._temp_dir = TemporaryDirectory()
|
|
|
self.td = self._temp_dir.name
|
|
|
self.contents_manager = FileContentsManager(
|
|
|
root_dir=self.td,
|
|
|
log=logging.getLogger()
|
|
|
)
|
|
|
|
|
|
def tearDown(self):
|
|
|
self._temp_dir.cleanup()
|
|
|
|
|
|
def make_dir(self, abs_path, rel_path):
|
|
|
"""make subdirectory, rel_path is the relative path
|
|
|
to that directory from the location where the server started"""
|
|
|
os_path = os.path.join(abs_path, rel_path)
|
|
|
try:
|
|
|
os.makedirs(os_path)
|
|
|
except OSError:
|
|
|
print("Directory already exists: %r" % os_path)
|
|
|
return os_path
|
|
|
|
|
|
def add_code_cell(self, nb):
|
|
|
output = nbformat.new_output("display_data", {'application/javascript': "alert('hi');"})
|
|
|
cell = nbformat.new_code_cell("print('hi')", outputs=[output])
|
|
|
nb.cells.append(cell)
|
|
|
|
|
|
def new_notebook(self):
|
|
|
cm = self.contents_manager
|
|
|
model = cm.new_untitled(type='notebook')
|
|
|
name = model['name']
|
|
|
path = model['path']
|
|
|
|
|
|
full_model = cm.get(path)
|
|
|
nb = full_model['content']
|
|
|
self.add_code_cell(nb)
|
|
|
|
|
|
cm.save(full_model, path)
|
|
|
return nb, name, path
|
|
|
|
|
|
def test_new_untitled(self):
|
|
|
cm = self.contents_manager
|
|
|
# Test in root directory
|
|
|
model = cm.new_untitled(type='notebook')
|
|
|
assert isinstance(model, dict)
|
|
|
self.assertIn('name', model)
|
|
|
self.assertIn('path', model)
|
|
|
self.assertIn('type', model)
|
|
|
self.assertEqual(model['type'], 'notebook')
|
|
|
self.assertEqual(model['name'], 'Untitled.ipynb')
|
|
|
self.assertEqual(model['path'], 'Untitled.ipynb')
|
|
|
|
|
|
# Test in sub-directory
|
|
|
model = cm.new_untitled(type='directory')
|
|
|
assert isinstance(model, dict)
|
|
|
self.assertIn('name', model)
|
|
|
self.assertIn('path', model)
|
|
|
self.assertIn('type', model)
|
|
|
self.assertEqual(model['type'], 'directory')
|
|
|
self.assertEqual(model['name'], 'Untitled Folder')
|
|
|
self.assertEqual(model['path'], 'Untitled Folder')
|
|
|
sub_dir = model['path']
|
|
|
|
|
|
model = cm.new_untitled(path=sub_dir)
|
|
|
assert isinstance(model, dict)
|
|
|
self.assertIn('name', model)
|
|
|
self.assertIn('path', model)
|
|
|
self.assertIn('type', model)
|
|
|
self.assertEqual(model['type'], 'file')
|
|
|
self.assertEqual(model['name'], 'untitled')
|
|
|
self.assertEqual(model['path'], '%s/untitled' % sub_dir)
|
|
|
|
|
|
def test_get(self):
|
|
|
cm = self.contents_manager
|
|
|
# Create a notebook
|
|
|
model = cm.new_untitled(type='notebook')
|
|
|
name = model['name']
|
|
|
path = model['path']
|
|
|
|
|
|
# Check that we 'get' on the notebook we just created
|
|
|
model2 = cm.get(path)
|
|
|
assert isinstance(model2, dict)
|
|
|
self.assertIn('name', model2)
|
|
|
self.assertIn('path', model2)
|
|
|
self.assertEqual(model['name'], name)
|
|
|
self.assertEqual(model['path'], path)
|
|
|
|
|
|
nb_as_file = cm.get(path, content=True, type_='file')
|
|
|
self.assertEqual(nb_as_file['path'], path)
|
|
|
self.assertEqual(nb_as_file['type'], 'file')
|
|
|
self.assertEqual(nb_as_file['format'], 'text')
|
|
|
self.assertNotIsInstance(nb_as_file['content'], dict)
|
|
|
|
|
|
nb_as_bin_file = cm.get(path, content=True, type_='file', format='base64')
|
|
|
self.assertEqual(nb_as_bin_file['format'], 'base64')
|
|
|
|
|
|
# Test in sub-directory
|
|
|
sub_dir = '/foo/'
|
|
|
self.make_dir(cm.root_dir, 'foo')
|
|
|
model = cm.new_untitled(path=sub_dir, ext='.ipynb')
|
|
|
model2 = cm.get(sub_dir + name)
|
|
|
assert isinstance(model2, dict)
|
|
|
self.assertIn('name', model2)
|
|
|
self.assertIn('path', model2)
|
|
|
self.assertIn('content', model2)
|
|
|
self.assertEqual(model2['name'], 'Untitled.ipynb')
|
|
|
self.assertEqual(model2['path'], '{0}/{1}'.format(sub_dir.strip('/'), name))
|
|
|
|
|
|
# Test getting directory model
|
|
|
dirmodel = cm.get('foo')
|
|
|
self.assertEqual(dirmodel['type'], 'directory')
|
|
|
|
|
|
with self.assertRaises(HTTPError):
|
|
|
cm.get('foo', type_='file')
|
|
|
|
|
|
|
|
|
@dec.skip_win32
|
|
|
def test_bad_symlink(self):
|
|
|
cm = self.contents_manager
|
|
|
path = 'test bad symlink'
|
|
|
os_path = self.make_dir(cm.root_dir, path)
|
|
|
|
|
|
file_model = cm.new_untitled(path=path, ext='.txt')
|
|
|
|
|
|
# create a broken symlink
|
|
|
os.symlink("target", os.path.join(os_path, "bad symlink"))
|
|
|
model = cm.get(path)
|
|
|
self.assertEqual(model['content'], [file_model])
|
|
|
|
|
|
@dec.skip_win32
|
|
|
def test_good_symlink(self):
|
|
|
cm = self.contents_manager
|
|
|
parent = 'test good symlink'
|
|
|
name = 'good symlink'
|
|
|
path = '{0}/{1}'.format(parent, name)
|
|
|
os_path = self.make_dir(cm.root_dir, parent)
|
|
|
|
|
|
file_model = cm.new(path=parent + '/zfoo.txt')
|
|
|
|
|
|
# create a good symlink
|
|
|
os.symlink(file_model['name'], os.path.join(os_path, name))
|
|
|
symlink_model = cm.get(path, content=False)
|
|
|
dir_model = cm.get(parent)
|
|
|
self.assertEqual(
|
|
|
sorted(dir_model['content'], key=lambda x: x['name']),
|
|
|
[symlink_model, file_model],
|
|
|
)
|
|
|
|
|
|
def test_update(self):
|
|
|
cm = self.contents_manager
|
|
|
# Create a notebook
|
|
|
model = cm.new_untitled(type='notebook')
|
|
|
name = model['name']
|
|
|
path = model['path']
|
|
|
|
|
|
# Change the name in the model for rename
|
|
|
model['path'] = 'test.ipynb'
|
|
|
model = cm.update(model, path)
|
|
|
assert isinstance(model, dict)
|
|
|
self.assertIn('name', model)
|
|
|
self.assertIn('path', model)
|
|
|
self.assertEqual(model['name'], 'test.ipynb')
|
|
|
|
|
|
# Make sure the old name is gone
|
|
|
self.assertRaises(HTTPError, cm.get, path)
|
|
|
|
|
|
# Test in sub-directory
|
|
|
# Create a directory and notebook in that directory
|
|
|
sub_dir = '/foo/'
|
|
|
self.make_dir(cm.root_dir, 'foo')
|
|
|
model = cm.new_untitled(path=sub_dir, type='notebook')
|
|
|
name = model['name']
|
|
|
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 = cm.update(model, path)
|
|
|
assert isinstance(model, dict)
|
|
|
self.assertIn('name', model)
|
|
|
self.assertIn('path', model)
|
|
|
self.assertEqual(model['name'], 'test_in_sub.ipynb')
|
|
|
self.assertEqual(model['path'], new_path)
|
|
|
|
|
|
# Make sure the old name is gone
|
|
|
self.assertRaises(HTTPError, cm.get, path)
|
|
|
|
|
|
def test_save(self):
|
|
|
cm = self.contents_manager
|
|
|
# Create a notebook
|
|
|
model = cm.new_untitled(type='notebook')
|
|
|
name = model['name']
|
|
|
path = model['path']
|
|
|
|
|
|
# Get the model with 'content'
|
|
|
full_model = cm.get(path)
|
|
|
|
|
|
# Save the notebook
|
|
|
model = cm.save(full_model, path)
|
|
|
assert isinstance(model, dict)
|
|
|
self.assertIn('name', model)
|
|
|
self.assertIn('path', model)
|
|
|
self.assertEqual(model['name'], name)
|
|
|
self.assertEqual(model['path'], path)
|
|
|
|
|
|
# Test in sub-directory
|
|
|
# Create a directory and notebook in that directory
|
|
|
sub_dir = '/foo/'
|
|
|
self.make_dir(cm.root_dir, 'foo')
|
|
|
model = cm.new_untitled(path=sub_dir, type='notebook')
|
|
|
name = model['name']
|
|
|
path = model['path']
|
|
|
model = cm.get(path)
|
|
|
|
|
|
# Change the name in the model for rename
|
|
|
model = cm.save(model, path)
|
|
|
assert isinstance(model, dict)
|
|
|
self.assertIn('name', model)
|
|
|
self.assertIn('path', model)
|
|
|
self.assertEqual(model['name'], 'Untitled.ipynb')
|
|
|
self.assertEqual(model['path'], 'foo/Untitled.ipynb')
|
|
|
|
|
|
def test_delete(self):
|
|
|
cm = self.contents_manager
|
|
|
# Create a notebook
|
|
|
nb, name, path = self.new_notebook()
|
|
|
|
|
|
# Delete the notebook
|
|
|
cm.delete(path)
|
|
|
|
|
|
# Check that a 'get' on the deleted notebook raises and error
|
|
|
self.assertRaises(HTTPError, cm.get, path)
|
|
|
|
|
|
def test_copy(self):
|
|
|
cm = self.contents_manager
|
|
|
parent = u'å b'
|
|
|
name = u'nb √.ipynb'
|
|
|
path = u'{0}/{1}'.format(parent, name)
|
|
|
os.mkdir(os.path.join(cm.root_dir, parent))
|
|
|
orig = cm.new(path=path)
|
|
|
|
|
|
# copy with unspecified name
|
|
|
copy = cm.copy(path)
|
|
|
self.assertEqual(copy['name'], orig['name'].replace('.ipynb', '-Copy1.ipynb'))
|
|
|
|
|
|
# copy with specified name
|
|
|
copy2 = cm.copy(path, u'å b/copy 2.ipynb')
|
|
|
self.assertEqual(copy2['name'], u'copy 2.ipynb')
|
|
|
self.assertEqual(copy2['path'], u'å b/copy 2.ipynb')
|
|
|
# copy with specified path
|
|
|
copy2 = cm.copy(path, u'/')
|
|
|
self.assertEqual(copy2['name'], name)
|
|
|
self.assertEqual(copy2['path'], name)
|
|
|
|
|
|
def test_trust_notebook(self):
|
|
|
cm = self.contents_manager
|
|
|
nb, name, path = self.new_notebook()
|
|
|
|
|
|
untrusted = cm.get(path)['content']
|
|
|
assert not cm.notary.check_cells(untrusted)
|
|
|
|
|
|
# print(untrusted)
|
|
|
cm.trust_notebook(path)
|
|
|
trusted = cm.get(path)['content']
|
|
|
# print(trusted)
|
|
|
assert cm.notary.check_cells(trusted)
|
|
|
|
|
|
def test_mark_trusted_cells(self):
|
|
|
cm = self.contents_manager
|
|
|
nb, name, path = self.new_notebook()
|
|
|
|
|
|
cm.mark_trusted_cells(nb, path)
|
|
|
for cell in nb.cells:
|
|
|
if cell.cell_type == 'code':
|
|
|
assert not cell.metadata.trusted
|
|
|
|
|
|
cm.trust_notebook(path)
|
|
|
nb = cm.get(path)['content']
|
|
|
for cell in nb.cells:
|
|
|
if cell.cell_type == 'code':
|
|
|
assert cell.metadata.trusted
|
|
|
|
|
|
def test_check_and_sign(self):
|
|
|
cm = self.contents_manager
|
|
|
nb, name, path = self.new_notebook()
|
|
|
|
|
|
cm.mark_trusted_cells(nb, path)
|
|
|
cm.check_and_sign(nb, path)
|
|
|
assert not cm.notary.check_signature(nb)
|
|
|
|
|
|
cm.trust_notebook(path)
|
|
|
nb = cm.get(path)['content']
|
|
|
cm.mark_trusted_cells(nb, path)
|
|
|
cm.check_and_sign(nb, path)
|
|
|
assert cm.notary.check_signature(nb)
|
|
|
|