aboutsummaryrefslogtreecommitdiff
path: root/tests/test_connection.py
blob: 1c0f4ea5a0230dc6645429551534141e7d5c0acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import unittest

from unittest.mock import patch, Mock

from prometheus_pgbouncer_exporter import utils

class ConnectionTest(unittest.TestCase):
    @patch('prometheus_pgbouncer_exporter.utils.psycopg2.connect')
    def test_get_connection_with_password_works(self, connect):
        conn = utils.get_connection(host='/tmp/', dbname='template1')
        connect.assert_called_once_with(host='/tmp/', dbname='template1')
        connect.return_value.set_session.assert_called_once_with(autocommit=True)