sahara-plugin-vanilla/sahara/tests/unit/plugins/vanilla/v2_3_0/test_configs.py

72 lines
2.1 KiB
Python

# Copyright (c) 2014 Mirantis Inc.
#
# 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.
from sahara.plugins.vanilla.v2_3_0 import config as c
from sahara.tests.unit import base
class VanillaTwoConfigTestCase(base.SaharaTestCase):
def test_get_hadoop_dirs(self):
ng = FakeNG(storage_paths=['/vol1', '/vol2'])
dirs = c._get_hadoop_dirs(ng)
expected = {
'hadoop_name_dirs': ['/vol1/hdfs/namenode',
'/vol2/hdfs/namenode'],
'hadoop_data_dirs': ['/vol1/hdfs/datanode',
'/vol2/hdfs/datanode'],
'hadoop_log_dir': '/vol1/hadoop/logs',
'hadoop_secure_dn_log_dir': '/vol1/hadoop/logs/secure',
'yarn_log_dir': '/vol1/yarn/logs'
}
self.assertDictEqual(dirs, expected)
def test_merge_configs(self):
a = {
'HDFS': {
'param1': 'value1',
'param2': 'value2'
}
}
b = {
'HDFS': {
'param1': 'value3',
'param3': 'value4'
},
'YARN': {
'param5': 'value5'
}
}
res = c._merge_configs(a, b)
expected = {
'HDFS': {
'param1': 'value3',
'param2': 'value2',
'param3': 'value4'
},
'YARN': {
'param5': 'value5'
}
}
self.assertDictEqual(res, expected)
class FakeNG():
def __init__(self, storage_paths=None):
self.paths = storage_paths
def storage_paths(self):
return self.paths