##// END OF EJS Templates
Added test that shows the problem.
Jonathan Frederic -
Show More
@@ -8,13 +8,14 b' var recursive_compare = function(a, b) {'
8 8
9 9 if (same) {
10 10 if (a instanceof Object) {
11 for (var key in a) {
11 var key;
12 for (key in a) {
12 13 if (a.hasOwnProperty(key) && !recursive_compare(a[key], b[key])) {
13 14 same = false;
14 15 break;
15 16 }
16 17 }
17 for (var key in b) {
18 for (key in b) {
18 19 if (b.hasOwnProperty(key) && !recursive_compare(a[key], b[key])) {
19 20 same = false;
20 21 break;
@@ -26,7 +27,7 b' var recursive_compare = function(a, b) {'
26 27 }
27 28
28 29 return same;
29 }
30 };
30 31
31 32 // Test the widget framework.
32 33 casper.notebook_test(function () {
@@ -58,7 +59,6 b' casper.notebook_test(function () {'
58 59 var output = that.evaluate(function(input) {
59 60 var model = new IPython.WidgetModel(IPython.notebook.kernel.widget_manager, undefined);
60 61 var results = model._pack_models(input);
61 delete model;
62 62 return results;
63 63 }, {input: input});
64 64 that.test.assert(recursive_compare(input, output),
@@ -68,7 +68,6 b' casper.notebook_test(function () {'
68 68 var output = that.evaluate(function(input) {
69 69 var model = new IPython.WidgetModel(IPython.notebook.kernel.widget_manager, undefined);
70 70 var results = model._unpack_models(input);
71 delete model;
72 71 return results;
73 72 }, {input: input});
74 73 that.test.assert(recursive_compare(input, output),
@@ -79,15 +78,53 b' casper.notebook_test(function () {'
79 78 test_unpack(input);
80 79 };
81 80
82 test_packing({0: 'hi', 1: 'bye'})
83 test_packing(['hi', 'bye'])
84 test_packing(['hi', 5])
85 test_packing(['hi', '5'])
86 test_packing([1.0, 0])
87 test_packing([1.0, false])
88 test_packing([1, false])
89 test_packing([1, false, {a: 'hi'}])
90 test_packing([1, false, ['hi']])
81 test_packing({0: 'hi', 1: 'bye'});
82 test_packing(['hi', 'bye']);
83 test_packing(['hi', 5]);
84 test_packing(['hi', '5']);
85 test_packing([1.0, 0]);
86 test_packing([1.0, false]);
87 test_packing([1, false]);
88 test_packing([1, false, {a: 'hi'}]);
89 test_packing([1, false, ['hi']]);
90
91 // Test multi-set, single touch code. First create a custom widget.
92 this.evaluate(function() {
93 var MultiSetView = IPython.DOMWidgetView.extend({
94 render: function(){
95 this.model.set('a', 1);
96 this.model.set('b', 2);
97 this.model.set('c', 3);
98 this.touch();
99 },
100 });
101 WidgetManager.register_widget_view('MultiSetView', MultiSetView);
102 }, {});
103 });
104
105 // Try creating the multiset widget, verify that sets the values correctly.
106 var multiset = {};
107 multiset.index = this.append_cell(
108 'from IPython.utils.traitlets import Unicode, CInt\n' +
109 'class MultiSetWidget(widgets.Widget):\n' +
110 ' _view_name = Unicode("MultiSetView", sync=True)\n' +
111 ' a = CInt(0, sync=True)\n' +
112 ' b = CInt(0, sync=True)\n' +
113 ' c = CInt(0, sync=True)\n' +
114 'multiset = MultiSetWidget()\n' +
115 'display(multiset)\n' +
116 'print(multiset.model_id)');
117 this.execute_cell_then(multiset.index, function(index) {
118 multiset.model_id = this.get_output_cell(index).text.trim();
119 });
120
121 this.wait_for_widget(multiset);
122
123 index = this.append_cell(
124 'print("%d%d%d" % (multiset.a, multiset.b, multiset.c))');
125 this.execute_cell_then(index, function(index) {
126 this.test.assertEquals(this.get_output_cell(index).text.trim(), '123',
127 'Multiple model.set calls and one view.touch update state in back-end.');
91 128 });
92 129
93 130 var textbox = {};
General Comments 0
You need to be logged in to leave comments. Login now