def test_start(self):
     with MockTransaction:
         app = mock('app')
         db = mock('db')
         hosts = ['host1', 'host2']
         state = {'property': 'value',
                  'db': db,
                  'compute_hosts': hosts,
                  'host_macs': {}}
         config = {
             'log_directory': 'dir',
             'log_level': 2,
             'global_manager_host': 'localhost',
             'global_manager_port': 8080,
             'ether_wake_interface': 'eth0'}
         paths = [manager.DEFAILT_CONFIG_PATH, manager.CONFIG_PATH]
         fields = manager.REQUIRED_FIELDS
         expect(manager).read_and_validate_config(paths, fields). \
             and_return(config).once()
         expect(common).init_logging('dir', 'global-manager.log', 2).once()
         expect(manager).init_state(config). \
             and_return(state).once()
         expect(manager).switch_hosts_on(db, 'eth0', {}, hosts).once()
         expect(bottle).app().and_return(app).once()
         expect(bottle).run(host='localhost', port=8080).once()
         manager.start()
Exemple #2
0
 def test_start(self):
     with MockTransaction:
         app = mock('app')
         db = mock('db')
         hosts = ['host1', 'host2']
         state = {
             'property': 'value',
             'db': db,
             'compute_hosts': hosts,
             'host_macs': {}
         }
         config = {
             'log_directory': 'dir',
             'log_level': 2,
             'global_manager_host': 'localhost',
             'global_manager_port': 8080,
             'ether_wake_interface': 'eth0'
         }
         paths = [manager.DEFAILT_CONFIG_PATH, manager.CONFIG_PATH]
         fields = manager.REQUIRED_FIELDS
         expect(manager).read_and_validate_config(paths, fields). \
             and_return(config).once()
         expect(common).init_logging('dir', 'global-manager.log', 2).once()
         expect(manager).init_state(config). \
             and_return(state).once()
         expect(manager).switch_hosts_on(db, 'eth0', {}, hosts).once()
         expect(bottle).app().and_return(app).once()
         expect(bottle).run(host='localhost', port=8080).once()
         manager.start()
Exemple #3
0
# Copyright 2012 Anton Beloglazov
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import neat.globals.manager as manager


manager.start()