LEFT | RIGHT |
(no file at all) | |
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 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
798 }); | 798 }); |
799 | 799 |
800 it('must error if both data and config are passed', function() { | 800 it('must error if both data and config are passed', function() { |
801 assert.throws( | 801 assert.throws( |
802 function() { | 802 function() { |
803 env.set_config('mysql', {'cfg-key': 'cfg-val'}, 'YAMLBEBAML');}, | 803 env.set_config('mysql', {'cfg-key': 'cfg-val'}, 'YAMLBEBAML');}, |
804 'Exactly one of config and data must be provided'); | 804 'Exactly one of config and data must be provided'); |
805 }); | 805 }); |
806 | 806 |
807 it('can set a service config', function() { | 807 it('can set a service config', function() { |
808 env.set_config('mysql', {'cfg-key': 'cfg-val'}); | 808 // This also tests that it only sends the changed values |
| 809 env.set_config('mysql', { |
| 810 'cfg-key': 'cfg-val', |
| 811 'unchanged': 'bar' |
| 812 }, null, { |
| 813 'cfg-key': 'foo', |
| 814 'unchanged': 'bar' |
| 815 }); |
809 msg = conn.last_message(); | 816 msg = conn.last_message(); |
810 var expected = { | 817 var expected = { |
811 Type: 'Client', | 818 Type: 'Client', |
812 Params: { | 819 Params: { |
813 ServiceName: 'mysql', | 820 ServiceName: 'mysql', |
814 Config: { | 821 Config: { |
815 'cfg-key': 'cfg-val' | 822 'cfg-key': 'cfg-val' |
816 } | 823 } |
817 }, | 824 }, |
818 Request: 'ServiceSet', | 825 Request: 'ServiceSet', |
(...skipping 15 matching lines...) Expand all Loading... |
834 Params: { | 841 Params: { |
835 ServiceName: 'mysql', | 842 ServiceName: 'mysql', |
836 ConfigYAML: data | 843 ConfigYAML: data |
837 } | 844 } |
838 }; | 845 }; |
839 assert.deepEqual(expected, msg); | 846 assert.deepEqual(expected, msg); |
840 }); | 847 }); |
841 | 848 |
842 it('handles failed set config', function() { | 849 it('handles failed set config', function() { |
843 var err, service_name; | 850 var err, service_name; |
844 env.set_config('yoursql', {}, null, function(evt) { | 851 env.set_config('yoursql', {}, null, {}, function(evt) { |
845 err = evt.err; | 852 err = evt.err; |
846 service_name = evt.service_name; | 853 service_name = evt.service_name; |
847 }); | 854 }); |
848 msg = conn.last_message(); | 855 msg = conn.last_message(); |
849 conn.msg({ | 856 conn.msg({ |
850 RequestId: msg.RequestId, | 857 RequestId: msg.RequestId, |
851 Error: 'service "yoursql" not found' | 858 Error: 'service "yoursql" not found' |
852 }); | 859 }); |
853 assert.equal(err, 'service "yoursql" not found'); | 860 assert.equal(err, 'service "yoursql" not found'); |
854 assert.equal(service_name, 'yoursql'); | 861 assert.equal(service_name, 'yoursql'); |
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1311 env.dispatch_result({ | 1318 env.dispatch_result({ |
1312 RequestId: msg.RequestId, | 1319 RequestId: msg.RequestId, |
1313 Error: 'badness', | 1320 Error: 'badness', |
1314 Response: {} | 1321 Response: {} |
1315 }); | 1322 }); |
1316 }); | 1323 }); |
1317 | 1324 |
1318 }); | 1325 }); |
1319 | 1326 |
1320 })(); | 1327 })(); |
LEFT | RIGHT |