~niedbalski/charms/trusty/quantum-gateway/lp-1396607

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
#!/usr/bin/python

import amulet
import time
try:
    from quantumclient.v2_0 import client as neutronclient
except ImportError:
    from neutronclient.v2_0 import client as neutronclient

from charmhelpers.contrib.openstack.amulet.deployment import (
    OpenStackAmuletDeployment
)

from charmhelpers.contrib.openstack.amulet.utils import (
    OpenStackAmuletUtils,
    DEBUG, # flake8: noqa
    ERROR
)

# Use DEBUG to turn on debug logging
u = OpenStackAmuletUtils(ERROR)


class QuantumGatewayBasicDeployment(OpenStackAmuletDeployment):
    """Amulet tests on a basic quantum-gateway deployment."""

    def __init__(self, series, openstack=None, source=None, stable=False):
        """Deploy the entire test environment."""
        super(QuantumGatewayBasicDeployment, self).__init__(series, openstack,
                                                            source, stable)
        self._add_services()
        self._add_relations()
        self._configure_services()
        self._deploy()
        self._initialize_tests()

    def _add_services(self):
        """Add services

           Add the services that we're testing, where quantum-gateway is local,
           and the rest of the service are from lp branches that are
           compatible with the local charm (e.g. stable or next).
           """
        this_service = {'name': 'quantum-gateway'}
        other_services = [{'name': 'mysql'},
                          {'name': 'rabbitmq-server'}, {'name': 'keystone'},
                          {'name': 'nova-cloud-controller'}]
        super(QuantumGatewayBasicDeployment, self)._add_services(this_service,
                                                                 other_services)

    def _add_relations(self):
        """Add all of the relations for the services."""
        relations = {
          'keystone:shared-db': 'mysql:shared-db',
          'quantum-gateway:shared-db': 'mysql:shared-db',
          'quantum-gateway:amqp': 'rabbitmq-server:amqp',
          'nova-cloud-controller:quantum-network-service': \
                                      'quantum-gateway:quantum-network-service',
          'nova-cloud-controller:shared-db': 'mysql:shared-db',
          'nova-cloud-controller:identity-service': 'keystone:identity-service',
          'nova-cloud-controller:amqp': 'rabbitmq-server:amqp'
        }
        super(QuantumGatewayBasicDeployment, self)._add_relations(relations)

    def _configure_services(self):
        """Configure all of the services."""
        keystone_config = {'admin-password': 'openstack',
                           'admin-token': 'ubuntutesting'}
        nova_cc_config = {'network-manager': 'Quantum',
                          'quantum-security-groups': 'yes'}
        configs = {'keystone': keystone_config,
                   'nova-cloud-controller': nova_cc_config}
        super(QuantumGatewayBasicDeployment, self)._configure_services(configs)

    def _initialize_tests(self):
        """Perform final initialization before tests get run."""
        # Access the sentries for inspecting service units
        self.mysql_sentry = self.d.sentry.unit['mysql/0']
        self.keystone_sentry = self.d.sentry.unit['keystone/0']
        self.rabbitmq_sentry = self.d.sentry.unit['rabbitmq-server/0']
        self.nova_cc_sentry = self.d.sentry.unit['nova-cloud-controller/0']
        self.quantum_gateway_sentry = self.d.sentry.unit['quantum-gateway/0']

        # Let things settle a bit before moving forward
        time.sleep(30)

        # Authenticate admin with keystone
        self.keystone = u.authenticate_keystone_admin(self.keystone_sentry,
                                                      user='admin',
                                                      password='openstack',
                                                      tenant='admin')


        # Authenticate admin with neutron
        ep = self.keystone.service_catalog.url_for(service_type='identity',
                                                   endpoint_type='publicURL')
        self.neutron = neutronclient.Client(auth_url=ep,
                                            username='admin',
                                            password='openstack',
                                            tenant_name='admin',
                                            region_name='RegionOne')

    def test_services(self):
        """Verify the expected services are running on the corresponding
           service units."""
        if self._get_openstack_release() >= self.precise_havana:
            neutron_services = ['status neutron-dhcp-agent',
                                'status neutron-lbaas-agent',
                                'status neutron-metadata-agent',
                                'status neutron-plugin-openvswitch-agent']
            if self._get_openstack_release() == self.precise_havana:
                neutron_services.append('status neutron-l3-agent')
            else:
                neutron_services.append('status neutron-vpn-agent')
                neutron_services.append('status neutron-metering-agent')
                neutron_services.append('status neutron-ovs-cleanup')
        else:
            neutron_services = ['status quantum-dhcp-agent',
                                'status quantum-l3-agent',
                                'status quantum-metadata-agent',
                                'status quantum-plugin-openvswitch-agent']

        nova_cc_services = ['status nova-api-ec2',
                            'status nova-api-os-compute',
                            'status nova-objectstore',
                            'status nova-cert',
                            'status nova-scheduler']
        if self._get_openstack_release() >= self.precise_grizzly:
            nova_cc_services.append('status nova-conductor')

        commands = {
            self.mysql_sentry: ['status mysql'],
            self.keystone_sentry: ['status keystone'],
            self.nova_cc_sentry: nova_cc_services,
            self.quantum_gateway_sentry: neutron_services
        }

        ret = u.validate_services(commands)
        if ret:
            amulet.raise_status(amulet.FAIL, msg=ret)

    def test_quantum_gateway_shared_db_relation(self):
        """Verify the quantum-gateway to mysql shared-db relation data"""
        unit = self.quantum_gateway_sentry
        relation = ['shared-db', 'mysql:shared-db']
        expected = {
            'private-address': u.valid_ip,
            'database': 'nova',
            'username': 'nova',
            'hostname': u.valid_ip
        }

        ret = u.validate_relation_data(unit, relation, expected)
        if ret:
            message = u.relation_error('quantum-gateway shared-db', ret)
            amulet.raise_status(amulet.FAIL, msg=message)

    def test_mysql_shared_db_relation(self):
        """Verify the mysql to quantum-gateway shared-db relation data"""
        unit = self.mysql_sentry
        relation = ['shared-db', 'quantum-gateway:shared-db']
        expected = {
            'private-address': u.valid_ip,
            'password': u.not_null,
            'db_host': u.valid_ip
        }

        ret = u.validate_relation_data(unit, relation, expected)
        if ret:
            message = u.relation_error('mysql shared-db', ret)
            amulet.raise_status(amulet.FAIL, msg=message)

    def test_quantum_gateway_amqp_relation(self):
        """Verify the quantum-gateway to rabbitmq-server amqp relation data"""
        unit = self.quantum_gateway_sentry
        relation = ['amqp', 'rabbitmq-server:amqp']
        expected = {
            'username': 'neutron',
            'private-address': u.valid_ip,
            'vhost': 'openstack'
        }

        ret = u.validate_relation_data(unit, relation, expected)
        if ret:
            message = u.relation_error('quantum-gateway amqp', ret)
            amulet.raise_status(amulet.FAIL, msg=message)

    def test_rabbitmq_amqp_relation(self):
        """Verify the rabbitmq-server to quantum-gateway amqp relation data"""
        unit = self.rabbitmq_sentry
        relation = ['amqp', 'quantum-gateway:amqp']
        expected = {
            'private-address': u.valid_ip,
            'password': u.not_null,
            'hostname': u.valid_ip
        }

        ret = u.validate_relation_data(unit, relation, expected)
        if ret:
            message = u.relation_error('rabbitmq amqp', ret)
            amulet.raise_status(amulet.FAIL, msg=message)

    def test_quantum_gateway_network_service_relation(self):
        """Verify the quantum-gateway to nova-cc quantum-network-service
           relation data"""
        unit = self.quantum_gateway_sentry
        relation = ['quantum-network-service',
                    'nova-cloud-controller:quantum-network-service']
        expected = {
            'private-address': u.valid_ip
        }

        ret = u.validate_relation_data(unit, relation, expected)
        if ret:
            message = u.relation_error('quantum-gateway network-service', ret)
            amulet.raise_status(amulet.FAIL, msg=message)

    def test_nova_cc_network_service_relation(self):
        """Verify the nova-cc to quantum-gateway quantum-network-service
           relation data"""
        unit = self.nova_cc_sentry
        relation = ['quantum-network-service',
                    'quantum-gateway:quantum-network-service']
        expected = {
            'service_protocol': 'http',
            'service_tenant': 'services',
            'quantum_url': u.valid_url,
            'quantum_port': '9696',
            'service_port': '5000',
            'region': 'RegionOne',
            'service_password': u.not_null,
            'quantum_host': u.valid_ip,
            'auth_port': '35357',
            'auth_protocol': 'http',
            'private-address': u.valid_ip,
            'keystone_host': u.valid_ip,
            'quantum_plugin': 'ovs',
            'auth_host': u.valid_ip,
            'service_username': 'quantum_s3_ec2_nova',
            'service_tenant_name': 'services'
        }

        ret = u.validate_relation_data(unit, relation, expected)
        if ret:
            message = u.relation_error('nova-cc network-service', ret)
            amulet.raise_status(amulet.FAIL, msg=message)

    def test_z_restart_on_config_change(self):
        """Verify that the specified services are restarted when the config
           is changed.

           Note(coreycb): The method name with the _z_ is a little odd
           but it forces the test to run last.  It just makes things
           easier because restarting services requires re-authorization.
           """
        if self._get_openstack_release() >= self.precise_havana:
            conf = '/etc/neutron/neutron.conf'
            services = ['neutron-dhcp-agent', 'neutron-openvswitch-agent',
                        'neutron-metering-agent', 'neutron-lbaas-agent',
                        'neutron-metadata-agent']
            if self._get_openstack_release() == self.precise_havana:
                services.append('neutron-l3-agent')
            else:
                services.append('neutron-vpn-agent')
        else:
            conf = '/etc/quantum/quantum.conf'
            services = ['quantum-dhcp-agent', 'quantum-openvswitch-agent',
                        'quantum-metadata-agent', 'quantum-l3-agent']

        self.d.configure('quantum-gateway', {'debug': 'True'})

        time = 20
        for s in services:
            if not u.service_restarted(self.quantum_gateway_sentry, s, conf,
                                       pgrep_full=True, sleep_time=time):
                self.d.configure('quantum-gateway', {'debug': 'False'})
                msg = "service {} didn't restart after config change".format(s)
                amulet.raise_status(amulet.FAIL, msg=msg)
            time = 0

        self.d.configure('quantum-gateway', {'debug': 'False'})

    def test_neutron_config(self):
        """Verify the data in the neutron config file."""
        unit = self.quantum_gateway_sentry
        rabbitmq_relation = self.rabbitmq_sentry.relation('amqp',
                                                         'quantum-gateway:amqp')

        if self._get_openstack_release() >= self.precise_havana:
            conf = '/etc/neutron/neutron.conf'
            expected = {
                'DEFAULT': {
                    'verbose': 'False',
                    'debug': 'False',
                    'lock_path': '/var/lock/neutron',
                    'rabbit_userid': 'neutron',
                    'rabbit_virtual_host': 'openstack',
                    'rabbit_password': rabbitmq_relation['password'],
                    'rabbit_host': rabbitmq_relation['hostname'],
                    'control_exchange': 'neutron',
                    'notification_driver': 'neutron.openstack.common.notifier.'
                                           'list_notifier',
                    'list_notifier_drivers': 'neutron.openstack.common.'
                                             'notifier.rabbit_notifier'
                },
                'agent': {
                    'root_helper': 'sudo /usr/bin/neutron-rootwrap '
                                   '/etc/neutron/rootwrap.conf'
                }
            }
        else:
            conf = '/etc/quantum/quantum.conf'
            expected = {
                'DEFAULT': {
                    'verbose': 'False',
                    'debug': 'False',
                    'lock_path': '/var/lock/quantum',
                    'rabbit_userid': 'neutron',
                    'rabbit_virtual_host': 'openstack',
                    'rabbit_password': rabbitmq_relation['password'],
                    'rabbit_host': rabbitmq_relation['hostname'],
                    'control_exchange': 'quantum',
                    'notification_driver': 'quantum.openstack.common.notifier.'
                                           'list_notifier',
                    'list_notifier_drivers': 'quantum.openstack.common.'
                                             'notifier.rabbit_notifier'
                },
                'AGENT': {
                    'root_helper': 'sudo /usr/bin/quantum-rootwrap '
                                   '/etc/quantum/rootwrap.conf'
                }
            }

        if self._get_openstack_release() >= self.precise_icehouse:
            expected['DEFAULT']['core_plugin'] = \
                                          'neutron.plugins.ml2.plugin.Ml2Plugin'
        elif self._get_openstack_release() >= self.precise_havana:
            expected['DEFAULT']['core_plugin'] = \
             'neutron.plugins.openvswitch.ovs_neutron_plugin.OVSNeutronPluginV2'
        else:
            expected['DEFAULT']['core_plugin'] = \
             'quantum.plugins.openvswitch.ovs_quantum_plugin.OVSQuantumPluginV2'

        for section, pairs in expected.iteritems():
            ret = u.validate_config_data(unit, conf, section, pairs)
            if ret:
                message = "neutron config error: {}".format(ret)
                amulet.raise_status(amulet.FAIL, msg=message)

    def test_ml2_config(self):
        """Verify the data in the ml2 config file. This is only available
           since icehouse."""
        if self._get_openstack_release() < self.precise_icehouse:
            return

        unit = self.quantum_gateway_sentry
        conf = '/etc/neutron/plugins/ml2/ml2_conf.ini'
        quantum_gateway_relation = unit.relation('shared-db', 'mysql:shared-db')
        expected = {
            'ml2': {
                'type_drivers': 'gre,vxlan',
                'tenant_network_types': 'gre,vxlan',
                'mechanism_drivers': 'openvswitch,l2population'
            },
            'ml2_type_gre': {
                'tunnel_id_ranges': '1:1000'
            },
            'ml2_type_vxlan': {
                'vni_ranges': '1001:2000'
            },
            'ovs': {
                'enable_tunneling': 'True',
                'local_ip': quantum_gateway_relation['private-address']
            },
            'agent': {
                'tunnel_types': 'gre',
                'l2_population': 'False'
            },
            'securitygroup': {
                'firewall_driver': 'neutron.agent.linux.iptables_firewall.'
                                   'OVSHybridIptablesFirewallDriver'
            }
        }

        for section, pairs in expected.iteritems():
            ret = u.validate_config_data(unit, conf, section, pairs)
            if ret:
                message = "ml2 config error: {}".format(ret)
                amulet.raise_status(amulet.FAIL, msg=message)

    def test_api_paste_config(self):
        """Verify the data in the api paste config file."""
        unit = self.quantum_gateway_sentry
        if self._get_openstack_release() >= self.precise_havana:
            conf = '/etc/neutron/api-paste.ini'
            expected = {
                'composite:neutron': {
                    'use': 'egg:Paste#urlmap',
                    '/': 'neutronversions',
                    '/v2.0': 'neutronapi_v2_0'
                },
                'filter:keystonecontext': {
                    'paste.filter_factory': 'neutron.auth:'
                                            'NeutronKeystoneContext.factory'
                },
                'filter:authtoken': {
                    'paste.filter_factory': 'keystoneclient.middleware.'
                                            'auth_token:filter_factory'
                },
                'filter:extensions': {
                    'paste.filter_factory': 'neutron.api.extensions:'
                                            'plugin_aware_extension_middleware_'
                                            'factory'
                },
                'app:neutronversions': {
                    'paste.app_factory': 'neutron.api.versions:Versions.factory'
                },
                'app:neutronapiapp_v2_0': {
                    'paste.app_factory': 'neutron.api.v2.router:APIRouter.'
                                         'factory'
                }
            }
            if self._get_openstack_release() == self.precise_havana:
                expected_additional = {
                    'composite:neutronapi_v2_0': {
                        'use': 'call:neutron.auth:pipeline_factory',
                        'noauth': 'extensions neutronapiapp_v2_0',
                        'keystone': 'authtoken keystonecontext extensions '
                                    'neutronapiapp_v2_0'
                    }
                }
            else:
                expected_additional = {
                    'composite:neutronapi_v2_0': {
                        'use': 'call:neutron.auth:pipeline_factory',
                        'noauth': 'request_id catch_errors extensions '
                                  'neutronapiapp_v2_0',
                        'keystone': 'request_id catch_errors authtoken '
                                    'keystonecontext extensions '
                                    'neutronapiapp_v2_0'
                    }
                }
            expected = dict(expected.items() + expected_additional.items())
        else:
            conf = '/etc/quantum/api-paste.ini'
            expected = {
                'composite:quantum': {
                    'use': 'egg:Paste#urlmap',
                    '/': 'quantumversions',
                    '/v2.0': 'quantumapi_v2_0'
                },
                'composite:quantumapi_v2_0': {
                    'use': 'call:quantum.auth:pipeline_factory',
                    'noauth': 'extensions quantumapiapp_v2_0',
                    'keystone': 'authtoken keystonecontext extensions '
                                'quantumapiapp_v2_0',
                },
                'filter:keystonecontext': {
                    'paste.filter_factory': 'quantum.auth:'
                                            'QuantumKeystoneContext.factory'
                },
                'filter:authtoken': {
                    'paste.filter_factory': 'keystoneclient.middleware.'
                                            'auth_token:filter_factory'
                },
                'filter:extensions': {
                    'paste.filter_factory': 'quantum.api.extensions:'
                                            'plugin_aware_extension_middleware_'
                                            'factory'
                },
                'app:quantumversions': {
                    'paste.app_factory': 'quantum.api.versions:Versions.factory'
                },
                'app:quantumapiapp_v2_0': {
                    'paste.app_factory': 'quantum.api.v2.router:APIRouter.'
                                         'factory'
                }
            }

        for section, pairs in expected.iteritems():
            ret = u.validate_config_data(unit, conf, section, pairs)
            if ret:
                message = "api paste config error: {}".format(ret)
                amulet.raise_status(amulet.FAIL, msg=message)

    def test_dhcp_agent_config(self):
        """Verify the data in the dhcp agent config file."""
        unit = self.quantum_gateway_sentry
        if self._get_openstack_release() >= self.precise_havana:
            conf = '/etc/neutron/dhcp_agent.ini'
            expected = {
                'state_path': '/var/lib/neutron',
                'interface_driver': 'neutron.agent.linux.interface.'
                                    'OVSInterfaceDriver',
                'dhcp_driver': 'neutron.agent.linux.dhcp.Dnsmasq',
                'root_helper': 'sudo /usr/bin/neutron-rootwrap '
                               '/etc/neutron/rootwrap.conf',
                'ovs_use_veth': 'True'
            }
        else:
            conf = '/etc/quantum/dhcp_agent.ini'
            expected = {
                'state_path': '/var/lib/quantum',
                'interface_driver': 'quantum.agent.linux.interface.'
                                    'OVSInterfaceDriver',
                'dhcp_driver': 'quantum.agent.linux.dhcp.Dnsmasq',
                'root_helper': 'sudo /usr/bin/quantum-rootwrap '
                               '/etc/quantum/rootwrap.conf'
            }

        ret = u.validate_config_data(unit, conf, 'DEFAULT', expected)
        if ret:
            message = "dhcp agent config error: {}".format(ret)
            amulet.raise_status(amulet.FAIL, msg=message)

    def test_fwaas_driver_config(self):
        """Verify the data in the fwaas driver config file.  This is only
           available since havana."""
        if self._get_openstack_release() < self.precise_havana:
            return

        unit = self.quantum_gateway_sentry
        conf = '/etc/neutron/fwaas_driver.ini'
        expected = {
            'driver': 'neutron.services.firewall.drivers.linux.'
                      'iptables_fwaas.IptablesFwaasDriver',
            'enabled': 'True'
        }

        ret = u.validate_config_data(unit, conf, 'fwaas', expected)
        if ret:
            message = "fwaas driver config error: {}".format(ret)
            amulet.raise_status(amulet.FAIL, msg=message)

    def test_l3_agent_config(self):
        """Verify the data in the l3 agent config file."""
        unit = self.quantum_gateway_sentry
        nova_cc_relation = self.nova_cc_sentry.relation(\
                                      'quantum-network-service',
                                      'quantum-gateway:quantum-network-service')
        ep = self.keystone.service_catalog.url_for(service_type='identity',
                                                   endpoint_type='publicURL')

        if self._get_openstack_release() >= self.precise_havana:
            conf = '/etc/neutron/l3_agent.ini'
            expected = {
                'interface_driver': 'neutron.agent.linux.interface.'
                                    'OVSInterfaceDriver',
                'auth_url': ep,
                'auth_region': 'RegionOne',
                'admin_tenant_name': 'services',
                'admin_user': 'quantum_s3_ec2_nova',
                'admin_password': nova_cc_relation['service_password'],
                'root_helper': 'sudo /usr/bin/neutron-rootwrap '
                               '/etc/neutron/rootwrap.conf',
                'ovs_use_veth': 'True',
                'handle_internal_only_routers': 'True'
            }
        else:
            conf = '/etc/quantum/l3_agent.ini'
            expected = {
                'interface_driver': 'quantum.agent.linux.interface.'
                                    'OVSInterfaceDriver',
                'auth_url': ep,
                'auth_region': 'RegionOne',
                'admin_tenant_name': 'services',
                'admin_user': 'quantum_s3_ec2_nova',
                'admin_password': nova_cc_relation['service_password'],
                'root_helper': 'sudo /usr/bin/quantum-rootwrap '
                               '/etc/quantum/rootwrap.conf'
            }

        ret = u.validate_config_data(unit, conf, 'DEFAULT', expected)
        if ret:
            message = "l3 agent config error: {}".format(ret)
            amulet.raise_status(amulet.FAIL, msg=message)

    def test_lbaas_agent_config(self):
        """Verify the data in the lbaas agent config file. This is only
           available since havana."""
        if self._get_openstack_release() < self.precise_havana:
            return

        unit = self.quantum_gateway_sentry
        conf = '/etc/neutron/lbaas_agent.ini'
        expected = {
            'DEFAULT': {
                'periodic_interval': '10',
                'interface_driver': 'neutron.agent.linux.interface.'
                                    'OVSInterfaceDriver',
                'ovs_use_veth': 'False',
                'device_driver': 'neutron.services.loadbalancer.drivers.'
                                 'haproxy.namespace_driver.HaproxyNSDriver'
            },
            'haproxy': {
                'loadbalancer_state_path': '$state_path/lbaas',
                'user_group': 'nogroup'
            }
        }

        for section, pairs in expected.iteritems():
            ret = u.validate_config_data(unit, conf, section, pairs)
            if ret:
                message = "lbaas agent config error: {}".format(ret)
                amulet.raise_status(amulet.FAIL, msg=message)

    def test_metadata_agent_config(self):
        """Verify the data in the metadata agent config file."""
        unit = self.quantum_gateway_sentry
        ep = self.keystone.service_catalog.url_for(service_type='identity',
                                                   endpoint_type='publicURL')
        quantum_gateway_relation = unit.relation('shared-db', 'mysql:shared-db')
        nova_cc_relation = self.nova_cc_sentry.relation(\
                                      'quantum-network-service',
                                      'quantum-gateway:quantum-network-service')

        if self._get_openstack_release() >= self.precise_havana:
            conf = '/etc/neutron/metadata_agent.ini'
            expected = {
                'auth_url': ep,
                'auth_region': 'RegionOne',
                'admin_tenant_name': 'services',
                'admin_user': 'quantum_s3_ec2_nova',
                'admin_password': nova_cc_relation['service_password'],
                'root_helper': 'sudo neutron-rootwrap '
                                 '/etc/neutron/rootwrap.conf',
                'state_path': '/var/lib/neutron',
                'nova_metadata_ip': quantum_gateway_relation['private-address'],
                'nova_metadata_port': '8775'
            }
        else:
            conf = '/etc/quantum/metadata_agent.ini'
            expected = {
                'auth_url': ep,
                'auth_region': 'RegionOne',
                'admin_tenant_name': 'services',
                'admin_user': 'quantum_s3_ec2_nova',
                'admin_password': nova_cc_relation['service_password'],
                'root_helper': 'sudo quantum-rootwrap '
                               '/etc/quantum/rootwrap.conf',
                'state_path': '/var/lib/quantum',
                'nova_metadata_ip': quantum_gateway_relation['private-address'],
                'nova_metadata_port': '8775'
            }
        if self._get_openstack_release() >= self.precise_icehouse:
            expected['cache_url'] = 'memory://?default_ttl=5'

        ret = u.validate_config_data(unit, conf, 'DEFAULT', expected)
        if ret:
            message = "metadata agent config error: {}".format(ret)
            amulet.raise_status(amulet.FAIL, msg=message)

    def test_metering_agent_config(self):
        """Verify the data in the metering agent config file.  This is only
           available since havana."""
        if self._get_openstack_release() < self.precise_havana:
            return

        unit = self.quantum_gateway_sentry
        conf = '/etc/neutron/metering_agent.ini'
        expected = {
            'driver': 'neutron.services.metering.drivers.iptables.'
                      'iptables_driver.IptablesMeteringDriver',
            'measure_interval': '30',
            'report_interval': '300',
            'interface_driver': 'neutron.agent.linux.interface.'
                                'OVSInterfaceDriver',
            'use_namespaces': 'True'
        }

        ret = u.validate_config_data(unit, conf, 'DEFAULT', expected)
        if ret:
            message = "metering agent config error: {}".format(ret)

    def test_nova_config(self):
        """Verify the data in the nova config file."""
        unit = self.quantum_gateway_sentry
        conf = '/etc/nova/nova.conf'
        mysql_relation = self.mysql_sentry.relation('shared-db',
                                                    'quantum-gateway:shared-db')
        db_uri = "mysql://{}:{}@{}/{}".format('nova',
                                              mysql_relation['password'],
                                              mysql_relation['db_host'],
                                              'nova')
        rabbitmq_relation = self.rabbitmq_sentry.relation('amqp',
                                                         'quantum-gateway:amqp')
        nova_cc_relation = self.nova_cc_sentry.relation(\
                                      'quantum-network-service',
                                      'quantum-gateway:quantum-network-service')
        ep = self.keystone.service_catalog.url_for(service_type='identity',
                                                   endpoint_type='publicURL')

        if self._get_openstack_release() >= self.precise_havana:
            expected = {
                'logdir': '/var/log/nova',
                'state_path': '/var/lib/nova',
                'lock_path': '/var/lock/nova',
                'root_helper': 'sudo nova-rootwrap /etc/nova/rootwrap.conf',
                'verbose': 'False',
                'use_syslog': 'False',
                'api_paste_config': '/etc/nova/api-paste.ini',
                'enabled_apis': 'metadata',
                'multi_host': 'True',
                'sql_connection': db_uri,
                'service_neutron_metadata_proxy': 'True',
                'rabbit_userid': 'neutron',
                'rabbit_virtual_host': 'openstack',
                'rabbit_password': rabbitmq_relation['password'],
                'rabbit_host': rabbitmq_relation['hostname'],
                'network_api_class': 'nova.network.neutronv2.api.API',
                'neutron_auth_strategy': 'keystone',
                'neutron_url': nova_cc_relation['quantum_url'],
                'neutron_admin_tenant_name': 'services',
                'neutron_admin_username': 'quantum_s3_ec2_nova',
                'neutron_admin_password': nova_cc_relation['service_password'],
                'neutron_admin_auth_url': ep

            }
        else:
            expected = {
                'logdir': '/var/log/nova',
                'state_path': '/var/lib/nova',
                'lock_path': '/var/lock/nova',
                'root_helper': 'sudo nova-rootwrap /etc/nova/rootwrap.conf',
                'verbose': 'True',
                'api_paste_config': '/etc/nova/api-paste.ini',
                'enabled_apis': 'metadata',
                'multi_host': 'True',
                'sql_connection':  db_uri,
                'service_quantum_metadata_proxy': 'True',
                'rabbit_userid': 'neutron',
                'rabbit_virtual_host': 'openstack',
                'rabbit_password': rabbitmq_relation['password'],
                'rabbit_host': rabbitmq_relation['hostname'],
                'network_api_class': 'nova.network.quantumv2.api.API',
                'quantum_auth_strategy': 'keystone',
                'quantum_url': nova_cc_relation['quantum_url'],
                'quantum_admin_tenant_name': 'services',
                'quantum_admin_username': 'quantum_s3_ec2_nova',
                'quantum_admin_password': nova_cc_relation['service_password'],
                'quantum_admin_auth_url': ep
            }

        ret = u.validate_config_data(unit, conf, 'DEFAULT', expected)
        if ret:
            message = "nova config error: {}".format(ret)
            amulet.raise_status(amulet.FAIL, msg=message)

    def test_ovs_neutron_plugin_config(self):
        """Verify the data in the ovs neutron plugin config file. The ovs
           plugin is not used by default since icehouse."""
        if self._get_openstack_release() >= self.precise_icehouse:
            return

        unit = self.quantum_gateway_sentry
        quantum_gateway_relation = unit.relation('shared-db', 'mysql:shared-db')

        if self._get_openstack_release() >= self.precise_havana:
            conf = '/etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini'
            expected = {
                'ovs': {
                    'local_ip': quantum_gateway_relation['private-address'],
                    'tenant_network_type': 'gre',
                    'enable_tunneling': 'True',
                    'tunnel_id_ranges': '1:1000'
                }
            }
            if self._get_openstack_release() > self.precise_havana:
                expected_additional = {
                    'agent': {
                        'polling_interval': '10',
                        'root_helper': 'sudo /usr/bin/neutron-rootwrap '
                        '/etc/neutron/rootwrap.conf'
                    }
                }
                expected = dict(expected.items() + expected_additional.items())
        else:
            conf = '/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini'
            expected = {
                'OVS': {
                    'local_ip': quantum_gateway_relation['private-address'],
                    'tenant_network_type': 'gre',
                    'enable_tunneling': 'True',
                    'tunnel_id_ranges': '1:1000'
                    },
                'AGENT': {
                    'polling_interval': '10',
                    'root_helper': 'sudo /usr/bin/quantum-rootwrap '
                                   '/etc/quantum/rootwrap.conf'
                    }
            }

        for section, pairs in expected.iteritems():
            ret = u.validate_config_data(unit, conf, section, pairs)
            if ret:
                message = "ovs neutron plugin config error: {}".format(ret)
                amulet.raise_status(amulet.FAIL, msg=message)

    def test_vpn_agent_config(self):
        """Verify the data in the vpn agent config file.  This isn't available
           prior to havana."""
        if self._get_openstack_release() < self.precise_havana:
            return

        unit = self.quantum_gateway_sentry
        conf = '/etc/neutron/vpn_agent.ini'
        expected = {
            'vpnagent': {
                'vpn_device_driver': 'neutron.services.vpn.device_drivers.'
                                     'ipsec.OpenSwanDriver'
            },
            'ipsec': {
                'ipsec_status_check_interval': '60'
            }
        }

        for section, pairs in expected.iteritems():
            ret = u.validate_config_data(unit, conf, section, pairs)
            if ret:
                message = "vpn agent config error: {}".format(ret)
                amulet.raise_status(amulet.FAIL, msg=message)

    def test_create_network(self):
        """Create a network, verify that it exists, and then delete it."""
        self.neutron.format = 'json'
        net_name = 'ext_net'

        #Verify that the network doesn't exist
        networks = self.neutron.list_networks(name=net_name)
        net_count = len(networks['networks'])
        if net_count != 0:
            msg = "Expected zero networks, found {}".format(net_count)
            amulet.raise_status(amulet.FAIL, msg=msg)

        # Create a network and verify that it exists
        network = {'name': net_name}
        self.neutron.create_network({'network':network})

        networks = self.neutron.list_networks(name=net_name)
        net_len = len(networks['networks'])
        if net_len != 1:
            msg = "Expected 1 network, found {}".format(net_len)
            amulet.raise_status(amulet.FAIL, msg=msg)

        network = networks['networks'][0]
        if network['name'] != net_name:
            amulet.raise_status(amulet.FAIL, msg="network ext_net not found")

        #Cleanup
        self.neutron.delete_network(network['id'])