Merge "An unit test passes because is launched as non-root user"

This commit is contained in:
Jenkins 2017-03-03 02:23:49 +00:00 committed by Gerrit Code Review
commit 14e780b0ea
1 changed files with 7 additions and 1 deletions

View File

@ -29,6 +29,12 @@ class TestStoreBase(base.StoreBaseTest):
@mock.patch.object(store.driver, 'LOG')
def test_configure_does_not_raise_on_missing_driver_conf(self, mock_log):
self.config(stores=['file'], group='glance_store')
self.config(filesystem_store_datadir=None, group='glance_store')
self.config(filesystem_store_datadirs=None, group='glance_store')
for (__, store_instance) in backend._load_stores(self.conf):
store_instance.configure()
self.assertTrue(mock_log.warning.called)
mock_log.warning.assert_called_once_with(
"Failed to configure store correctly: Store filesystem "
"could not be configured correctly. Reason: Specify "
"at least 'filesystem_store_datadir' or "
"'filesystem_store_datadirs' option Disabling add method.")