##// END OF EJS Templates
Make widget tests use new casper util functions
Jonathan Frederic -
Show More
@@ -1,7 +1,7 b''
1 // Test the widget framework.
1 // Test the widget framework.
2 casper.notebook_test(function () {
2 casper.notebook_test(function () {
3 var index;
3 var index;
4
4
5 // Test widget dependencies ////////////////////////////////////////////////
5 // Test widget dependencies ////////////////////////////////////////////////
6 this.then(function () {
6 this.then(function () {
7
7
@@ -11,11 +11,11 b' casper.notebook_test(function () {'
11 }), 'WidgetManager class is defined');
11 }), 'WidgetManager class is defined');
12 });
12 });
13
13
14 index = append_cell(
14 index = this.append_cell(
15 'from IPython.html import widgets\n' +
15 'from IPython.html import widgets\n' +
16 'from IPython.display import display, clear_output\n' +
16 'from IPython.display import display, clear_output\n' +
17 'print("Success")');
17 'print("Success")');
18 execute_cell_then(index);
18 this.execute_cell_then(index);
19
19
20 this.wait(500); // Wait for require.js async callbacks to load dependencies.
20 this.wait(500); // Wait for require.js async callbacks to load dependencies.
21
21
@@ -28,12 +28,12 b' casper.notebook_test(function () {'
28
28
29
29
30 // Check widget mapping ////////////////////////////////////////////////////
30 // Check widget mapping ////////////////////////////////////////////////////
31 index = append_cell(
31 index = this.append_cell(
32 'names = [name for name in dir(widgets)' +
32 'names = [name for name in dir(widgets)' +
33 ' if name.endswith("Widget") and name!= "Widget"]\n' +
33 ' if name.endswith("Widget") and name!= "Widget"]\n' +
34 'for name in names:\n' +
34 'for name in names:\n' +
35 ' print(name)\n');
35 ' print(name)\n');
36 execute_cell_then(index, function(index){
36 this.execute_cell_then(index, function(index){
37
37
38 // Get the widget names that are registered with the widget manager. Assume
38 // Get the widget names that are registered with the widget manager. Assume
39 // a 1 to 1 mapping of model and widgets names (model names just have 'model'
39 // a 1 to 1 mapping of model and widgets names (model names just have 'model'
@@ -80,52 +80,52 b' casper.notebook_test(function () {'
80
80
81
81
82 // Test button widget //////////////////////////////////////////////////////
82 // Test button widget //////////////////////////////////////////////////////
83 var button_cell_index = append_cell(
83 var button_index = this.append_cell(
84 'button = widgets.ButtonWidget(description="Title")\n' +
84 'button = widgets.ButtonWidget(description="Title")\n' +
85 'display(button)\n'+
85 'display(button)\n'+
86 'print("Success")\n' +
86 'print("Success")\n' +
87 'def handle_click(sender):\n' +
87 'def handle_click(sender):\n' +
88 ' print("Clicked")\n' +
88 ' print("Clicked")\n' +
89 'button.on_click(handle_click)');
89 'button.on_click(handle_click)');
90 execute_cell_then(button_cell_index, function(index){
90 this.execute_cell_then(button_index, function(index){
91
91
92 var button_output = this.get_output_cell(index).text;
92 var button_output = this.get_output_cell(index).text;
93 this.test.assert(button_output == 'Success\n',
93 this.test.assert(button_output == 'Success\n',
94 'Create button widget, cell executed with correct output.');
94 'Create button widget, cell executed with correct output.');
95
95
96 this.test.assert(cell_element_exists(index,
96 this.test.assert(this.cell_element_exists(index,
97 '.widget-area .widget-subarea'),
97 '.widget-area .widget-subarea'),
98 'Create button widget, widget subarea exist.');
98 'Create button widget, widget subarea exist.');
99
99
100 this.test.assert(cell_element_exists(index,
100 this.test.assert(this.cell_element_exists(index,
101 '.widget-area .widget-subarea button'),
101 '.widget-area .widget-subarea button'),
102 'Create button widget, widget button exist.');
102 'Create button widget, widget button exist.');
103
103
104 this.test.assert(cell_element_function(index,
104 this.test.assert(this.cell_element_function(index,
105 '.widget-area .widget-subarea button', 'html')=='Title',
105 '.widget-area .widget-subarea button', 'html')=='Title',
106 'Set button description.');
106 'Set button description.');
107
107
108 cell_element_function(index,
108 this.cell_element_function(index,
109 '.widget-area .widget-subarea button', 'click');
109 '.widget-area .widget-subarea button', 'click');
110 });
110 });
111
111
112 this.wait(500); // Wait for click to execute in kernel and write output
112 this.wait(500); // Wait for click to execute in kernel and write output
113
113
114 this.then(function () {
114 this.then(function () {
115 this.test.assert(this.get_output_cell(button_cell_index, 1).text == 'Clicked\n',
115 this.test.assert(this.get_output_cell(button_index, 1).text == 'Clicked\n',
116 'Button click event fires.');
116 'Button click event fires.');
117 });
117 });
118
118
119 index = append_cell(
119 index = this.append_cell(
120 'button.close()\n'+
120 'button.close()\n'+
121 'print("Success")\n');
121 'print("Success")\n');
122 execute_cell_then(index, function(index){
122 this.execute_cell_then(index, function(index){
123
123
124 var button_output = this.get_output_cell(index).text;
124 var button_output = this.get_output_cell(index).text;
125 this.test.assert(button_output == 'Success\n',
125 this.test.assert(button_output == 'Success\n',
126 'Close button, cell executed with correct output.');
126 'Close button, cell executed with correct output.');
127
127
128 this.test.assert(! cell_element_exists(button_cell_index,
128 this.test.assert(! this.cell_element_exists(button_index,
129 '.widget-area .widget-subarea button'),
129 '.widget-area .widget-subarea button'),
130 'Remove button, widget button doesn\'t exist.');
130 'Remove button, widget button doesn\'t exist.');
131 });
131 });
General Comments 0
You need to be logged in to leave comments. Login now