File: test_save_readonly_as.py

package info (click to toggle)
jupyter-notebook 6.4.13-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,860 kB
  • sloc: javascript: 20,765; python: 15,658; makefile: 255; sh: 160
file content (80 lines) | stat: -rw-r--r-- 3,172 bytes parent folder | download | duplicates (2)
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
from notebook.tests.selenium.utils import wait_for_selector
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import WebDriverWait


promise_js = """
var done = arguments[arguments.length - 1];
(%s).then(
    data => { done(["success", data]); },
    error => { done(["error", error]); }
);
"""

def execute_promise(js, browser):
    state, data = browser.execute_async_script(promise_js % js)
    if state == 'success':
        return data
    raise Exception(data)

def wait_for_rename(browser, nbname, timeout=10):
    wait = WebDriverWait(browser, timeout)
    def notebook_renamed(browser):
        elem = browser.find_element_by_id('notebook_name')
        current_name = browser.execute_script('return arguments[0].innerText', elem)
        return current_name == nbname
    return wait.until(notebook_renamed)

def save_as(nb):
    JS = 'Jupyter.notebook.save_notebook_as()'
    return nb.browser.execute_script(JS)

def get_notebook_name(nb):
    JS = 'return Jupyter.notebook.notebook_name'
    return nb.browser.execute_script(JS)

def refresh_notebook(nb):
    nb.browser.refresh()
    nb.__init__(nb.browser)

def test_save_readonly_notebook_as(notebook):
    # Make notebook read-only
    notebook.edit_cell(index=0, content='import os\nimport stat\nos.chmod("'
        + notebook.browser.current_url.split('?')[0].split('/')[-1] + '", stat.S_IREAD)\nprint(0)')
    notebook.browser.execute_script("Jupyter.notebook.get_cell(0).execute();")
    notebook.wait_for_cell_output(0)
    refresh_notebook(notebook)
    # Test that the notebook is read-only
    assert notebook.browser.execute_script('return Jupyter.notebook.writable') == False

    # Add some content
    test_content_0 = "print('a simple')\nprint('test script')"
    notebook.edit_cell(index=0, content=test_content_0)

    # Wait for Save As modal, save
    save_as(notebook)
    wait_for_selector(notebook.browser, '.save-message')
    inp = notebook.browser.find_element_by_xpath('//input[@data-testid="save-as"]')
    inp.send_keys('writable_notebook.ipynb')
    inp.send_keys(Keys.RETURN)
    wait_for_rename(notebook.browser, "writable_notebook")
    # Test that the name changed
    assert get_notebook_name(notebook) == "writable_notebook.ipynb"
    # Test that address bar was updated (TODO: get the base url)
    assert "writable_notebook.ipynb" in notebook.browser.current_url
    # Test that it is no longer read-only
    assert notebook.browser.execute_script('return Jupyter.notebook.writable') == True

    # Add some more content
    test_content_1 = "print('a second simple')\nprint('script to test save feature')"
    notebook.add_and_execute_cell(content=test_content_1)
    # and save the notebook
    execute_promise("Jupyter.notebook.save_notebook()", notebook.browser)
    
    # Test that it still contains the content
    assert notebook.get_cell_contents(index=0) == test_content_0
    assert notebook.get_cell_contents(index=1) == test_content_1
    # even after a refresh 
    refresh_notebook(notebook)
    assert notebook.get_cell_contents(index=0) == test_content_0
    assert notebook.get_cell_contents(index=1) == test_content_1