-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathclient-server-request.py
53 lines (43 loc) · 1.53 KB
/
client-server-request.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
#
# Copyright Contributors to the Conu project.
# SPDX-License-Identifier: MIT
#
import subprocess
import logging
import time
from conu import DockerBackend, DockerRunBuilder
environment = ["-e", "POSTGRESQL_USER=user",
"-e", "POSTGRESQL_PASSWORD=pass",
"-e", "POSTGRESQL_DATABASE=db"]
with DockerBackend(logging_level=logging.DEBUG) as backend:
image = backend.ImageClass('centos/postgresql-96-centos7')
# create server
additional_opts = environment
dbcont = image.run_via_binary(additional_opts=additional_opts)
# wait for server port to be ready
dbcont.wait_for_port(5432)
# prepare request
endpoint = "postgresql://user@" + dbcont.get_IPv4s()[0] + ":5432/" + 'db'
request_command = DockerRunBuilder(command=['psql', endpoint], additional_opts=['-i'])
# create client
clientcont = image.run_via_binary_in_foreground(
request_command,
popen_params={"stdin": subprocess.PIPE}
)
# send requests
clientcont.write_to_stdin(b'pass\n')
# give postgres time to process
time.sleep(0.1)
clientcont.write_to_stdin(b'SELECT 1;\n')
# give postgres time to process
time.sleep(0.2)
logs_bytes = clientcont.logs_in_bytes()
expected_output = b'Password: \n ?column? \n----------\n 1\n(1 row)'
try:
assert b'Password: ' in logs_bytes
assert b'(1 row)' in logs_bytes
assert clientcont.is_running()
finally:
dbcont.delete(force=True)
clientcont.delete(force=True)