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 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
948 Type: 'Client', | 948 Type: 'Client', |
949 Request: 'AddRelation', | 949 Request: 'AddRelation', |
950 Params: { | 950 Params: { |
951 Endpoints: ['wordpress:db', 'mysql:db'] | 951 Endpoints: ['wordpress:db', 'mysql:db'] |
952 } | 952 } |
953 }; | 953 }; |
954 client.onmessage = function(received) { | 954 client.onmessage = function(received) { |
955 var recData = Y.JSON.parse(received.data); | 955 var recData = Y.JSON.parse(received.data); |
956 assert.equal(recData.RequestId, data.RequestId); | 956 assert.equal(recData.RequestId, data.RequestId); |
957 assert.equal(recData.Error, undefined); | 957 assert.equal(recData.Error, undefined); |
| 958 assert.isObject( |
| 959 state.db.relations.getById('wordpress:db mysql:db')); |
958 var recEndpoints = recData.Response.Endpoints; | 960 var recEndpoints = recData.Response.Endpoints; |
959 assert.equal(recEndpoints.wordpress.Name, 'db'); | 961 assert.equal(recEndpoints.wordpress.Name, 'db'); |
960 assert.equal(recEndpoints.wordpress.Scope, 'global'); | 962 assert.equal(recEndpoints.wordpress.Scope, 'global'); |
961 assert.equal(recEndpoints.mysql.Name, 'db'); | 963 assert.equal(recEndpoints.mysql.Name, 'db'); |
962 assert.equal(recEndpoints.mysql.Scope, 'global'); | 964 assert.equal(recEndpoints.mysql.Scope, 'global'); |
963 done(); | 965 done(); |
964 }; | 966 }; |
965 client.open(); | 967 client.open(); |
966 client.send(Y.JSON.stringify(data)); | 968 client.send(Y.JSON.stringify(data)); |
967 }); | 969 }); |
968 }); | 970 }); |
969 }); | 971 }); |
970 | 972 |
971 it('can add a relation (integration)', function(done) { | 973 it('can add a relation (integration)', function(done) { |
972 env.connect(); | 974 env.connect(); |
973 env.deploy( | 975 env.deploy( |
974 'cs:precise/wordpress-15', null, null, null, 1, null, function() { | 976 'cs:precise/wordpress-15', null, null, null, 1, null, function() { |
975 env.deploy( | 977 env.deploy( |
976 'cs:precise/mysql-26', null, null, null, 1, null, function() { | 978 'cs:precise/mysql-26', null, null, null, 1, null, function() { |
977 var endpointA = ['wordpress', {name: 'db', role: 'client'}], | 979 var endpointA = ['wordpress', {name: 'db', role: 'client'}], |
978 endpointB = ['mysql', {name: 'db', role: 'server'}]; | 980 endpointB = ['mysql', {name: 'db', role: 'server'}]; |
979 env.add_relation(endpointA, endpointB, function(recData) { | 981 env.add_relation(endpointA, endpointB, function(recData) { |
980 assert.equal(recData.err, undefined); | 982 assert.equal(recData.err, undefined); |
981 assert.equal(recData.endpoint_a, 'wordpress:db'); | 983 assert.equal(recData.endpoint_a, 'wordpress:db'); |
982 assert.equal(recData.endpoint_b, 'mysql:db'); | 984 assert.equal(recData.endpoint_b, 'mysql:db'); |
983 assert.isObject(recData.result); | 985 assert.isObject(recData.result); |
| 986 assert.isObject( |
| 987 state.db.relations.getById('wordpress:db mysql:db')); |
984 done(); | 988 done(); |
985 }); | 989 }); |
986 } | 990 } |
987 ); | 991 ); |
988 } | 992 } |
989 ); | 993 ); |
990 }); | 994 }); |
991 | 995 |
992 it('is able to add a relation with a subordinate service', function(done) { | 996 it('is able to add a relation with a subordinate service', function(done) { |
993 state.deploy('cs:precise/wordpress-15', function() { | 997 state.deploy('cs:precise/wordpress-15', function() { |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1108 }); | 1112 }); |
1109 } | 1113 } |
1110 ); | 1114 ); |
1111 } | 1115 } |
1112 ); | 1116 ); |
1113 }); | 1117 }); |
1114 | 1118 |
1115 }); | 1119 }); |
1116 | 1120 |
1117 })(); | 1121 })(); |
LEFT | RIGHT |