LEFT | RIGHT |
1 /* | 1 /* |
2 This file is part of the Juju GUI, which lets users view and manage Juju | 2 This file is part of the Juju GUI, which lets users view and manage Juju |
3 environments within a graphical interface (https://launchpad.net/juju-gui). | 3 environments within a graphical interface (https://launchpad.net/juju-gui). |
4 Copyright (C) 2012-2013 Canonical Ltd. | 4 Copyright (C) 2012-2013 Canonical Ltd. |
5 | 5 |
6 This program is free software: you can redistribute it and/or modify it under | 6 This program is free software: you can redistribute it and/or modify it under |
7 the terms of the GNU Affero General Public License version 3, as published by | 7 the terms of the GNU Affero General Public License version 3, as published by |
8 the Free Software Foundation. | 8 the Free Software Foundation. |
9 | 9 |
10 This program is distributed in the hope that it will be useful, but WITHOUT | 10 This program is distributed in the hope that it will be useful, but WITHOUT |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 done(); | 104 done(); |
105 }); | 105 }); |
106 }); | 106 }); |
107 | 107 |
108 beforeEach(function() { | 108 beforeEach(function() { |
109 height = Math.floor(Math.random() * 1000); | 109 height = Math.floor(Math.random() * 1000); |
110 width = Math.floor(Math.random() * 1000); | 110 width = Math.floor(Math.random() * 1000); |
111 // Build test doubles that record height and width settings. | 111 // Build test doubles that record height and width settings. |
112 topo = { | 112 topo = { |
113 get: function() { | 113 get: function() { |
| 114 // Default to adding 1 to each width and height so that the size |
| 115 // returned is always different than the size as viewed by the |
| 116 // setAllTheDimensions method; this will cause the viewport to be |
| 117 // centered. |
114 return [width + 1, height + 1]; | 118 return [width + 1, height + 1]; |
115 }, | 119 }, |
116 vis: {}, | 120 vis: {}, |
117 fire: function(evt) { | 121 fire: function(evt) { |
118 eventFired = evt; | 122 eventFired = evt; |
119 } | 123 } |
120 }; | 124 }; |
121 topo.set = testUtils.setter(topo); | 125 topo.set = testUtils.setter(topo); |
122 topo.vis.attr = testUtils.setter(topo.vis); | 126 topo.vis.attr = testUtils.setter(topo.vis); |
123 view = new views.ViewportModule(); | 127 view = new views.ViewportModule(); |
124 canvas = {style: {}}; | 128 canvas = {style: {}}; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 assert.equal(topo.vis.width, width); | 165 assert.equal(topo.vis.width, width); |
162 assert.equal(topo.vis.height, height); | 166 assert.equal(topo.vis.height, height); |
163 }); | 167 }); |
164 | 168 |
165 it('should center canvas', function() { | 169 it('should center canvas', function() { |
166 assert.equal(eventFired, 'panToCenter'); | 170 assert.equal(eventFired, 'panToCenter'); |
167 }); | 171 }); |
168 | 172 |
169 it('should not center canvas if no changes', function() { | 173 it('should not center canvas if no changes', function() { |
170 topo.get = function() { | 174 topo.get = function() { |
| 175 // Return just the width and height so that the viewport appears not to |
| 176 // have been resized, ensuring that the panToCenter event is not fired. |
171 return [width, height]; | 177 return [width, height]; |
172 }; | 178 }; |
173 eventFired = false; | 179 eventFired = false; |
174 view.setAllTheDimensions(dimentions, canvas, svg, topo, zoomPlane); | 180 view.setAllTheDimensions(dimentions, canvas, svg, topo, zoomPlane); |
175 assert.equal(eventFired, false); | 181 assert.equal(eventFired, false); |
176 }); | 182 }); |
177 }); | 183 }); |
LEFT | RIGHT |