-
Notifications
You must be signed in to change notification settings - Fork 5.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert dualmode_insertcell.js #3508
Merged
takluyver
merged 9 commits into
jupyter:master
from
sheshtawy:convert-dualmode-insertcell-to-selenium
Apr 28, 2018
Merged
Changes from 5 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
95f02a7
Initial commit: Add selenium tests for dualmode insert cell
sheshtawy 8daa5f5
Add a couple of utility functions to help get a single cell's content…
sheshtawy c4adc52
Update utils.py to resolve merge conflict
sheshtawy a46f5b8
Add assertions for insert below and above cell commands in command mo…
sheshtawy ebf27aa
Remove unnecessary imports
sheshtawy 0acdea7
Remove markdown cells assertions since they're not useful anymore
sheshtawy 1283f27
Add tests for insertion above/below multiple selected cells
sheshtawy 17e46a7
Remove js test file
sheshtawy b25a142
Update assert statement to use a list for more descriptive errors and…
sheshtawy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
|
||
|
||
def test_insert_cell(notebook): | ||
a = "print('a')" | ||
b = "print('b')" | ||
c = "print('c')" | ||
|
||
notebook.edit_cell(index=0, content=a) | ||
notebook.append(b, c) | ||
notebook.to_command_mode() | ||
|
||
assert notebook.get_cells_contents() == [a, b, c] | ||
|
||
notebook.to_command_mode() | ||
notebook.focus_cell(2) | ||
notebook.convert_cell_type(2, "markdown") | ||
|
||
# insert code cell above | ||
notebook.current_cell.send_keys("a") | ||
assert notebook.get_cell_contents(2) == "" | ||
assert notebook.get_cell_type(2) == "code" | ||
assert len(notebook.cells) == 4 | ||
|
||
# insert code cell below | ||
notebook.current_cell.send_keys("b") | ||
assert notebook.get_cell_contents(2) == "" | ||
assert notebook.get_cell_contents(3) == "" | ||
assert notebook.get_cell_type(3) == "code" | ||
assert len(notebook.cells) == 5 | ||
|
||
notebook.focus_cell(2) | ||
notebook.convert_cell_type(2, "markdown") | ||
assert notebook.get_cell_type(2) == "markdown" | ||
notebook.current_cell.send_keys("a") | ||
assert notebook.get_cell_type(3) == "markdown" | ||
notebook.current_cell.send_keys("b") | ||
assert notebook.get_cell_type(4) == "markdown" | ||
|
||
notebook.edit_cell(index=1, content="cell1") | ||
notebook.focus_cell(1) | ||
notebook.current_cell.send_keys("a") | ||
assert notebook.get_cell_contents(1) == "" | ||
assert notebook.get_cell_contents(2) == "cell1" | ||
|
||
notebook.edit_cell(index=1, content='cell1') | ||
notebook.edit_cell(index=2, content='cell2') | ||
notebook.edit_cell(index=3, content='cell3') | ||
notebook.focus_cell(2) | ||
notebook.current_cell.send_keys("b") | ||
assert notebook.get_cell_contents(1) == "cell1" | ||
assert notebook.get_cell_contents(2) == "cell2" | ||
assert notebook.get_cell_contents(3) == "" | ||
assert notebook.get_cell_contents(4) == "cell3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the thing this is trying to test no longer works like that. We used to insert a new cell of the same type as the one you had selected, but we eventually decided it was easier to follow if it was always a code cell that was inserted. The test passes, but I think that's two accidents cancelling each other out - the cell you converted to markdown becomes number 3, then number 4, as you insert other cells.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh .. okay. I will remove those steps and assertions then. Do you have any other comments?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was actually confused about that. I tried to do the test manually and I wasn't able to insert markdown cells. It all makes sense now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, I deeply apologize for the delay in submitting this PR. I will do my best to make sure this doesn't happen again and I hope this doesn't affect your idea of how committed I am to the team and the project.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to apologise! Everyone gets busy at times, and no-one expects volunteer contributors to do things by any set deadline. We might ping you on unfinished pull requests in case you've forgotten about it, or in case you're waiting for us to answer something, but if you don't have time to work on it, that's fine. If it's urgent, someone else can pick it up and finish it, and if not, it can wait. :-)