test_database.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2019 New Vector Ltd
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. import yaml
  16. from synapse.config.database import DatabaseConfig
  17. from tests import unittest
  18. class DatabaseConfigTestCase(unittest.TestCase):
  19. def test_database_configured_correctly_no_database_conf_param(self):
  20. conf = yaml.safe_load(
  21. DatabaseConfig().generate_config_section("/data_dir_path", None)
  22. )
  23. expected_database_conf = {
  24. "name": "sqlite3",
  25. "args": {"database": "/data_dir_path/homeserver.db"},
  26. }
  27. self.assertEqual(conf["database"], expected_database_conf)
  28. def test_database_configured_correctly_database_conf_param(self):
  29. database_conf = {
  30. "name": "my super fast datastore",
  31. "args": {
  32. "user": "matrix",
  33. "password": "synapse_database_password",
  34. "host": "synapse_database_host",
  35. "database": "matrix",
  36. },
  37. }
  38. conf = yaml.safe_load(
  39. DatabaseConfig().generate_config_section("/data_dir_path", database_conf)
  40. )
  41. self.assertEqual(conf["database"], database_conf)