Show More
@@ -1,31 +1,47 b'' | |||
|
1 | 1 | // |
|
2 | 2 | // Test shutdown of a kernel. |
|
3 | 3 | // |
|
4 | 4 | casper.notebook_test(function () { |
|
5 | 5 | // XXX: test.begin allows named sections but requires casperjs 1.1.0-DEV. |
|
6 | 6 | // We will put it back into place when the next version of casper is |
|
7 | 7 | // released. Following that, all instances of this.test can be changed |
|
8 | 8 | // to just test. |
|
9 | 9 | //this.test.begin("shutdown tests (notebook)", 2, function(test) { |
|
10 | 10 | |
|
11 | this.thenEvaluate(function () { | |
|
12 | $('#kill_and_exit').click(); | |
|
13 | }); | |
|
14 | ||
|
15 | this.thenEvaluate(function () { | |
|
16 | var cell = IPython.notebook.get_cell(0); | |
|
17 | cell.set_text('a=10; print(a)'); | |
|
18 | cell.execute(); | |
|
19 | }); | |
|
11 | // Our shutdown test closes the browser window, which will delete the | |
|
12 | // casper browser object, and the rest of the test suite will fail with | |
|
13 | // errors that look like: | |
|
14 | // | |
|
15 | // "Error: cannot access member `evaluate' of deleted QObject" | |
|
16 | // | |
|
17 | // So what we do here is make a quick popup window, and run the test inside | |
|
18 | // of it. | |
|
19 | this.then(function() { | |
|
20 | this.evaluate(function(url){ | |
|
21 | window.open(url); | |
|
22 | }, {url : this.getCurrentUrl()}); | |
|
23 | }) | |
|
24 | ||
|
25 | this.waitForPopup(''); | |
|
26 | this.withPopup('', function () { | |
|
27 | this.thenEvaluate(function () { | |
|
28 | $('#kill_and_exit').click(); | |
|
29 | }); | |
|
30 | ||
|
31 | this.thenEvaluate(function () { | |
|
32 | var cell = IPython.notebook.get_cell(0); | |
|
33 | cell.set_text('a=10; print(a)'); | |
|
34 | cell.execute(); | |
|
35 | }); | |
|
20 | 36 | |
|
21 | // refactor this into just a get_output(0) | |
|
22 | this.then(function () { | |
|
23 | var result = this.get_output_cell(0); | |
|
24 | this.test.assertFalsy(result, "after shutdown: no execution results"); | |
|
25 | this.test.assertNot(this.kernel_running(), | |
|
26 | 'after shutdown: IPython.notebook.kernel.running is false '); | |
|
37 | this.then(function () { | |
|
38 | var result = this.get_output_cell(0); | |
|
39 | this.test.assertFalsy(result, "after shutdown: no execution results"); | |
|
40 | this.test.assertNot(this.kernel_running(), | |
|
41 | 'after shutdown: IPython.notebook.kernel.running is false '); | |
|
42 | }); | |
|
27 | 43 | }); |
|
28 | 44 | |
|
29 | 45 | //}); // end of test.begin |
|
30 | 46 | }); |
|
31 | 47 |
General Comments 0
You need to be logged in to leave comments.
Login now