2013-11-01 03:42:08 +08:00
|
|
|
// Test the widget framework.
|
|
|
|
casper.notebook_test(function () {
|
2013-12-05 05:10:01 +08:00
|
|
|
var index;
|
2013-11-01 03:42:08 +08:00
|
|
|
|
|
|
|
// Test widget dependencies ////////////////////////////////////////////////
|
|
|
|
this.then(function () {
|
|
|
|
|
|
|
|
// Check if the WidgetManager class is defined.
|
|
|
|
this.test.assert(this.evaluate(function() {
|
|
|
|
return IPython.WidgetManager != undefined;
|
|
|
|
}), 'WidgetManager class is defined');
|
2013-11-13 00:35:55 +08:00
|
|
|
});
|
|
|
|
|
2013-12-05 05:10:01 +08:00
|
|
|
index = append_cell(
|
|
|
|
'from IPython.html import widgets\n' +
|
|
|
|
'from IPython.display import display, clear_output\n' +
|
|
|
|
'print("Success")');
|
|
|
|
execute_cell_then(index);
|
|
|
|
|
2013-11-13 00:35:55 +08:00
|
|
|
this.wait(500); // Wait for require.js async callbacks to load dependencies.
|
|
|
|
|
|
|
|
this.then(function () {
|
2013-11-01 03:42:08 +08:00
|
|
|
// Check if the widget manager has been instanciated.
|
|
|
|
this.test.assert(this.evaluate(function() {
|
2013-11-13 00:35:55 +08:00
|
|
|
return IPython.widget_manager != undefined;
|
2013-11-01 03:42:08 +08:00
|
|
|
}), 'Notebook widget manager instanciated');
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// Check widget mapping ////////////////////////////////////////////////////
|
2013-12-05 05:10:01 +08:00
|
|
|
index = append_cell(
|
|
|
|
'names = [name for name in dir(widgets)' +
|
2013-11-01 03:42:08 +08:00
|
|
|
' if name.endswith("Widget") and name!= "Widget"]\n' +
|
|
|
|
'for name in names:\n' +
|
|
|
|
' print(name)\n');
|
2013-12-05 05:10:01 +08:00
|
|
|
execute_cell_then(index, function(index){
|
2013-11-01 03:42:08 +08:00
|
|
|
|
|
|
|
// Get the widget names that are registered with the widget manager. Assume
|
|
|
|
// a 1 to 1 mapping of model and widgets names (model names just have 'model'
|
|
|
|
// suffixed).
|
|
|
|
var javascript_names = this.evaluate(function () {
|
|
|
|
names = [];
|
2013-11-13 00:35:55 +08:00
|
|
|
for (var name in IPython.widget_manager.widget_model_types) {
|
2013-11-01 03:42:08 +08:00
|
|
|
names.push(name.replace('Model',''));
|
|
|
|
}
|
|
|
|
return names;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Get the widget names registered in python.
|
2013-12-05 05:10:01 +08:00
|
|
|
var python_names = this.get_output_cell(index).text.split('\n');
|
2013-11-01 03:42:08 +08:00
|
|
|
|
|
|
|
// Make sure the two lists have the same items.
|
|
|
|
for (var i in javascript_names) {
|
|
|
|
var javascript_name = javascript_names[i];
|
|
|
|
var found = false;
|
|
|
|
for (var j in python_names) {
|
|
|
|
var python_name = python_names[j];
|
|
|
|
if (python_name==javascript_name) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.test.assert(found, javascript_name + ' exists in python');
|
|
|
|
}
|
|
|
|
for (var i in python_names) {
|
|
|
|
var python_name = python_names[i];
|
|
|
|
if (python_name.length > 0) {
|
|
|
|
var found = false;
|
|
|
|
for (var j in javascript_names) {
|
|
|
|
var javascript_name = javascript_names[j];
|
|
|
|
if (python_name==javascript_name) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.test.assert(found, python_name + ' exists in javascript');
|
|
|
|
}
|
|
|
|
}
|
2013-12-04 12:44:19 +08:00
|
|
|
});
|
2013-12-04 09:24:25 +08:00
|
|
|
|
|
|
|
|
2013-12-04 12:44:19 +08:00
|
|
|
// Test button widget //////////////////////////////////////////////////////
|
2013-12-05 05:10:01 +08:00
|
|
|
var button_cell_index = append_cell(
|
|
|
|
'button = widgets.ButtonWidget(description="Title")\n' +
|
2013-12-04 12:44:19 +08:00
|
|
|
'display(button)\n'+
|
|
|
|
'print("Success")\n' +
|
|
|
|
'def handle_click(sender):\n' +
|
|
|
|
' print("Clicked")\n' +
|
|
|
|
'button.on_click(handle_click)');
|
2013-12-05 05:10:01 +08:00
|
|
|
execute_cell_then(button_cell_index, function(index){
|
2013-12-04 09:24:25 +08:00
|
|
|
|
2013-12-05 05:10:01 +08:00
|
|
|
var button_output = this.get_output_cell(index).text;
|
|
|
|
this.test.assert(button_output == 'Success\n',
|
|
|
|
'Create button widget, cell executed with correct output.');
|
|
|
|
|
|
|
|
this.test.assert(cell_element_exists(index,
|
|
|
|
'.widget-area .widget-subarea'),
|
|
|
|
'Create button widget, widget subarea exist.');
|
|
|
|
|
|
|
|
this.test.assert(cell_element_exists(index,
|
|
|
|
'.widget-area .widget-subarea button'),
|
|
|
|
'Create button widget, widget button exist.');
|
|
|
|
|
|
|
|
this.test.assert(cell_element_function(index,
|
|
|
|
'.widget-area .widget-subarea button', 'html')=='Title',
|
|
|
|
'Set button description.');
|
|
|
|
|
|
|
|
cell_element_function(index,
|
|
|
|
'.widget-area .widget-subarea button', 'click');
|
2013-12-04 12:44:19 +08:00
|
|
|
});
|
2013-12-04 09:24:25 +08:00
|
|
|
|
2013-12-05 05:10:01 +08:00
|
|
|
this.wait(500); // Wait for click to execute in kernel and write output
|
2013-12-04 09:24:25 +08:00
|
|
|
|
2013-12-04 12:44:19 +08:00
|
|
|
this.then(function () {
|
2013-12-05 05:10:01 +08:00
|
|
|
this.test.assert(this.get_output_cell(button_cell_index, 1).text == 'Clicked\n',
|
|
|
|
'Button click event fires.');
|
2013-11-01 03:42:08 +08:00
|
|
|
});
|
|
|
|
|
2013-12-05 05:10:01 +08:00
|
|
|
index = append_cell(
|
|
|
|
'button.close()\n'+
|
|
|
|
'print("Success")\n');
|
|
|
|
execute_cell_then(index, function(index){
|
|
|
|
|
|
|
|
var button_output = this.get_output_cell(index).text;
|
|
|
|
this.test.assert(button_output == 'Success\n',
|
|
|
|
'Close button, cell executed with correct output.');
|
|
|
|
|
|
|
|
this.test.assert(! cell_element_exists(button_cell_index,
|
|
|
|
'.widget-area .widget-subarea button'),
|
|
|
|
'Remove button, widget button doesn\'t exist.');
|
|
|
|
});
|
2013-11-01 03:42:08 +08:00
|
|
|
});
|
|
|
|
|