示例#1
0
 def test_get_unknown_service(self):
     fuel_managment = fuel.FuelManagement({
         'address': 'fuel.local',
         'username': '******',
     })
     self.assertRaises(error.ServiceError, fuel_managment.get_service,
                       'unknown')
示例#2
0
    def test_get_service_nodes(self, service_name, service_cls,
                               mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [
            [self.fake_ansible_result],
            [
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        status=executor.STATUS_FAILED,
                                        host='10.0.0.2'),
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        host='10.0.0.3')
            ]
        ]

        fuel_managment = fuel.FuelManagement({
            'address': 'fuel.local',
            'username': '******',
        })

        service = fuel_managment.get_service(service_name)
        self.assertIsInstance(service, service_cls)

        nodes = service.get_nodes()
        cmd = 'bash -c "ps ax | grep \'{}\'"'.format(service_cls.GREP)
        ansible_runner_inst.execute.assert_has_calls([
            mock.call(['fuel.local'], {'command': 'fuel node --json'}),
            mock.call(['10.0.0.2', '10.0.0.3'], {'command': cmd}, []),
        ])

        hosts = [
            node_collection.Host(ip='10.0.0.3', mac='03', fqdn='node-3'),
        ]
        self.assertEqual(nodes.hosts, hosts)
示例#3
0
    def test_run_node_collection_empty(self, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [
            [self.fake_ansible_result],
            [
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        host='10.0.0.2',
                                        status=executor.STATUS_FAILED),
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        host='10.0.0.3',
                                        status=executor.STATUS_FAILED)
            ],
        ]

        fuel_managment = fuel.FuelManagement(self.conf)

        service = fuel_managment.get_service('keystone')
        exception = self.assertRaises(error.ServiceError, service.restart)
        self.assertEqual('Node collection is empty', str(exception))

        get_nodes_cmd = 'bash -c "ps ax | grep \'{}\'"'.format(service.GREP)
        ansible_runner_inst.execute.assert_has_calls([
            mock.call(['fuel.local'], {'command': 'fuel node --json'}),
            mock.call(['10.0.0.2', '10.0.0.3'], {'command': get_nodes_cmd},
                      []),
        ])
    def test_plug(self, service_name, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [
            [self.fake_ansible_result],
            [fakes.FakeAnsibleResult(payload={'stdout': ''},
                                     host='10.0.0.2'),
             fakes.FakeAnsibleResult(payload={'stdout': ''},
                                     host='10.0.0.3')],
            [fakes.FakeAnsibleResult(payload={'stdout': ''},
                                     host='10.0.0.2'),
             fakes.FakeAnsibleResult(payload={'stdout': ''},
                                     host='10.0.0.3')]
        ]

        fuel_managment = fuel.FuelManagement(self.conf)

        service = fuel_managment.get_service(service_name)
        service.plug()

        get_nodes_cmd = 'bash -c "ps ax | grep -v grep | grep \'{}\'"'.format(
            service.grep)
        ansible_runner_inst.execute.assert_has_calls([
            mock.call([self.master_host], {'command': 'fuel node --json'}),
            mock.call(self.hosts, {'command': get_nodes_cmd}, []),
            mock.call(self.hosts,
                      {'iptables': {'protocol': service.port[0],
                                    'port': service.port[1],
                                    'action': 'unblock',
                                    'service': service.service_name}}),
        ])
示例#5
0
    def test_start(self, service_name, service_cls, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [
            [self.fake_ansible_result],
            [
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        host='10.0.0.2'),
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        host='10.0.0.3')
            ],
            [
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        host='10.0.0.2'),
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        host='10.0.0.3')
            ]
        ]

        fuel_managment = fuel.FuelManagement(self.conf)

        service = fuel_managment.get_service(service_name)
        self.assertIsInstance(service, service_cls)

        service.start()

        get_nodes_cmd = 'bash -c "ps ax | grep \'{}\'"'.format(service.GREP)
        ansible_runner_inst.execute.assert_has_calls([
            mock.call(['fuel.local'], {'command': 'fuel node --json'}),
            mock.call(['10.0.0.2', '10.0.0.3'], {'command': get_nodes_cmd},
                      []),
            mock.call(['10.0.0.2', '10.0.0.3'], {'shell': service.START_CMD}),
        ])
    def test_freeze(self, service_name, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [
            [self.fake_ansible_result],
            [fakes.FakeAnsibleResult(payload={'stdout': ''},
                                     host='10.0.0.2'),
             fakes.FakeAnsibleResult(payload={'stdout': ''},
                                     host='10.0.0.3')],
            [fakes.FakeAnsibleResult(payload={'stdout': ''},
                                     host='10.0.0.2'),
             fakes.FakeAnsibleResult(payload={'stdout': ''},
                                     host='10.0.0.3')]
        ]

        fuel_managment = fuel.FuelManagement(self.conf)

        service = fuel_managment.get_service(service_name)
        service.freeze()

        get_nodes_cmd = 'bash -c "ps ax | grep -v grep | grep \'{}\'"'.format(
            service.grep)
        ansible_runner_inst.execute.assert_has_calls([
            mock.call([self.master_host], {'command': 'fuel node --json'}),
            mock.call(self.hosts, {'command': get_nodes_cmd}, []),
            mock.call(self.hosts, {'kill': {'grep': service.grep, 'sig': 19}}),
        ])
示例#7
0
    def test_get_service_nodes(self, service_name, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [
            [self.fake_ansible_result],
            [
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        status=executor.STATUS_FAILED,
                                        host='10.0.0.2'),
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        host='10.0.0.3')
            ]
        ]

        fuel_managment = fuel.FuelManagement(self.conf)

        service = fuel_managment.get_service(service_name)

        nodes = service.get_nodes()
        cmd = 'bash -c "ps ax | grep -v grep | grep \'{}\'"'.format(
            service.grep)
        ansible_runner_inst.execute.assert_has_calls([
            mock.call([self.master_host], {'command': 'fuel node --json'}),
            mock.call(self.hosts, {'command': cmd}, []),
        ])

        self.assertEqual(nodes.hosts, [self.hosts[1]])
示例#8
0
    def test_execute_on_cloud(self, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [
            [self.fake_ansible_result],
            [
                fakes.FakeAnsibleResult(payload={'stdout': ''}),
                fakes.FakeAnsibleResult(payload={'stdout': ''})
            ]
        ]
        fuel_managment = fuel.FuelManagement({
            'address': 'fuel.local',
            'username': '******',
        })
        nodes = fuel_managment.get_nodes()
        result = fuel_managment.execute_on_cloud(nodes.get_ips(),
                                                 {'command': 'mycmd'},
                                                 raise_on_error=False)

        ansible_runner_inst.execute.assert_has_calls([
            mock.call(['fuel.local'], {'command': 'fuel node --json'}),
            mock.call(['10.0.0.2', '10.0.0.3'], {'command': 'mycmd'}, []),
        ])

        self.assertEqual(result, [
            fakes.FakeAnsibleResult(payload={'stdout': ''}),
            fakes.FakeAnsibleResult(payload={'stdout': ''})
        ])
示例#9
0
    def test_init(self, config, expected_runner_calls, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value

        fuel_managment = fuel.FuelManagement(config)

        mock_ansible_runner.assert_has_calls(expected_runner_calls)
        self.assertIs(fuel_managment.master_node_executor, ansible_runner_inst)
        self.assertIs(fuel_managment.cloud_executor, ansible_runner_inst)
示例#10
0
    def test_get_nodes_fqdns(self, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [[self.fake_ansible_result]]
        fuel_managment = fuel.FuelManagement(self.conf)
        nodes = fuel_managment.get_nodes(fqdns=['node-3'])

        hosts = [
            node_collection.Host(ip='10.0.0.3', mac='03', fqdn='node-3'),
        ]
        self.assertEqual(nodes.hosts, hosts)
示例#11
0
    def test_get_nodes(self, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [[self.fake_ansible_result]]
        fuel_managment = fuel.FuelManagement(self.conf)
        nodes = fuel_managment.get_nodes()

        ansible_runner_inst.execute.assert_has_calls([
            mock.call([self.master_host], {'command': 'fuel node --json'}),
        ])

        self.assertEqual(nodes.hosts, self.hosts)
示例#12
0
    def test_verify(self, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [
            [self.fake_ansible_result],
            [
                fakes.FakeAnsibleResult(payload={'stdout': ''}),
                fakes.FakeAnsibleResult(payload={'stdout': ''})
            ],
        ]
        fuel_managment = fuel.FuelManagement(self.conf)
        fuel_managment.verify()

        ansible_runner_inst.execute.assert_has_calls([
            mock.call([self.master_host], {'command': 'fuel node --json'}),
            mock.call(self.hosts, {'command': 'hostname'}),
        ])
示例#13
0
    def test_get_nodes_from_discover_driver(self, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        hosts = [
            node_collection.Host(ip='10.0.2.2',
                                 mac='09:7b:74:90:63:c2',
                                 fqdn='mynode1.local'),
            node_collection.Host(ip='10.0.2.3',
                                 mac='09:7b:74:90:63:c3',
                                 fqdn='mynode2.local'),
        ]
        node_discover_driver = mock.Mock()
        node_discover_driver.discover_hosts.return_value = hosts
        fuel_managment = fuel.FuelManagement(self.conf)
        fuel_managment.set_node_discover(node_discover_driver)
        nodes = fuel_managment.get_nodes()

        self.assertFalse(ansible_runner_inst.execute.called)
        self.assertEqual(hosts, nodes.hosts)
示例#14
0
    def test_get_nodes(self, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [[self.fake_ansible_result]]
        fuel_managment = fuel.FuelManagement({
            'address': 'fuel.local',
            'username': '******',
        })
        nodes = fuel_managment.get_nodes()

        ansible_runner_inst.execute.assert_has_calls([
            mock.call(['fuel.local'], {'command': 'fuel node --json'}),
        ])

        hosts = [
            node_collection.Host(ip='10.0.0.2', mac='02', fqdn='node-2'),
            node_collection.Host(ip='10.0.0.3', mac='03', fqdn='node-3'),
        ]
        self.assertEqual(nodes.hosts, hosts)
示例#15
0
    def test_verify(self, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [
            [self.fake_ansible_result],
            [
                fakes.FakeAnsibleResult(payload={'stdout': ''}),
                fakes.FakeAnsibleResult(payload={'stdout': ''})
            ],
        ]
        fuel_managment = fuel.FuelManagement({
            'address': 'fuel.local',
            'username': '******',
        })
        fuel_managment.verify()

        ansible_runner_inst.execute.assert_has_calls([
            mock.call(['fuel.local'], {'command': 'fuel node --json'}),
            mock.call(['10.0.0.2', '10.0.0.3'], {'command': 'hostname'}),
        ])
示例#16
0
    def test_unplug(self, service_name, service_cls, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [
            [self.fake_ansible_result],
            [
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        host='10.0.0.2'),
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        host='10.0.0.3')
            ],
            [
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        host='10.0.0.2'),
                fakes.FakeAnsibleResult(payload={'stdout': ''},
                                        host='10.0.0.3')
            ]
        ]

        fuel_managment = fuel.FuelManagement(self.conf)

        service = fuel_managment.get_service(service_name)
        self.assertIsInstance(service, service_cls)

        service.unplug()

        get_nodes_cmd = 'bash -c "ps ax | grep \'{}\'"'.format(
            service_cls.GREP)
        ansible_runner_inst.execute.assert_has_calls([
            mock.call(['fuel.local'], {'command': 'fuel node --json'}),
            mock.call(['10.0.0.2', '10.0.0.3'], {'command': get_nodes_cmd},
                      []),
            mock.call(
                ['10.0.0.2', '10.0.0.3'], {
                    'iptables': {
                        'protocol': service_cls.PORT[0],
                        'port': service_cls.PORT[1],
                        'action': 'block',
                        'service': service_cls.SERVICE_NAME
                    }
                }),
        ])
示例#17
0
    def test_execute_on_cloud(self, mock_ansible_runner):
        ansible_runner_inst = mock_ansible_runner.return_value
        ansible_runner_inst.execute.side_effect = [
            [self.fake_ansible_result],
            [
                fakes.FakeAnsibleResult(payload={'stdout': ''}),
                fakes.FakeAnsibleResult(payload={'stdout': ''})
            ]
        ]
        fuel_managment = fuel.FuelManagement(self.conf)
        nodes = fuel_managment.get_nodes()
        result = fuel_managment.execute_on_cloud(nodes.hosts,
                                                 {'command': 'mycmd'},
                                                 raise_on_error=False)

        ansible_runner_inst.execute.assert_has_calls([
            mock.call([self.master_host], {'command': 'fuel node --json'}),
            mock.call(self.hosts, {'command': 'mycmd'}, []),
        ])

        self.assertEqual(result, [
            fakes.FakeAnsibleResult(payload={'stdout': ''}),
            fakes.FakeAnsibleResult(payload={'stdout': ''})
        ])
示例#18
0
 def test_validate_services(self):
     fuel_managment = fuel.FuelManagement(self.conf)
     fuel_managment.validate_services()
示例#19
0
 def test_get_unknown_service(self):
     fuel_managment = fuel.FuelManagement(self.conf)
     self.assertRaises(error.ServiceError, fuel_managment.get_service,
                       'unknown')