-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into image_build
- Loading branch information
Showing
13 changed files
with
198 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.. autoclass:: testcontainers.memcached.MemcachedContainer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from setuptools import find_namespace_packages, setup | ||
|
||
description = "Memcached component of testcontainers-python." | ||
|
||
setup( | ||
name="testcontainers-memcached", | ||
version="0.0.1rc1", | ||
packages=find_namespace_packages(), | ||
description=description, | ||
long_description=description, | ||
long_description_content_type="text/x-rst", | ||
url="/~https://github.com/testcontainers/testcontainers-python", | ||
install_requires=[ | ||
"testcontainers-core", | ||
], | ||
python_requires=">=3.7", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# | ||
# 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. | ||
import socket | ||
|
||
from testcontainers.core.container import DockerContainer | ||
from testcontainers.core.waiting_utils import wait_container_is_ready | ||
|
||
|
||
class MemcachedNotReady(Exception): | ||
pass | ||
|
||
|
||
class MemcachedContainer(DockerContainer): | ||
""" | ||
Test container for Memcached. The example below spins up a Memcached server | ||
Example: | ||
.. doctest:: | ||
>>> from testcontainers.memcached import MemcachedContainer | ||
>>> with MemcachedContainer() as memcached_container: | ||
... host, port = memcached_container.get_host_and_port() | ||
""" | ||
|
||
def __init__(self, image="memcached:1", port_to_expose=11211, **kwargs): | ||
super().__init__(image, **kwargs) | ||
self.port_to_expose = port_to_expose | ||
self.with_exposed_ports(port_to_expose) | ||
|
||
@wait_container_is_ready(MemcachedNotReady) | ||
def _connect(self): | ||
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: | ||
host = self.get_container_host_ip() | ||
port = int(self.get_exposed_port(self.port_to_expose)) | ||
s.connect((host, port)) | ||
s.sendall(b"stats\n\r") | ||
data = s.recv(1024) | ||
if len(data) == 0: | ||
raise MemcachedNotReady("Memcached not ready yet") | ||
|
||
def start(self): | ||
super().start() | ||
self._connect() | ||
return self | ||
|
||
def get_host_and_port(self): | ||
return self.get_container_host_ip(), int(self.get_exposed_port(self.port_to_expose)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import socket | ||
|
||
from testcontainers.memcached import MemcachedContainer | ||
|
||
import pytest | ||
|
||
|
||
def test_memcached_host_and_exposed_port(): | ||
with MemcachedContainer("memcached:1.6-alpine") as memcached: | ||
host, port = memcached.get_host_and_port() | ||
assert host == "localhost" | ||
assert port != 11211 | ||
|
||
|
||
@pytest.mark.parametrize("image", ["memcached:1.6-bookworm", "memcached:1.6-alpine"]) | ||
def test_memcached_can_connect_and_retrieve_data(image): | ||
with MemcachedContainer(image) as memcached: | ||
host, port = memcached.get_host_and_port() | ||
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: | ||
s.connect((host, port)) | ||
s.sendall(b"stats\n\r") | ||
data = s.recv(1024) | ||
assert len(data) > 0, "We should have received some data from memcached" | ||
|
||
pid_stat, uptime_stat, *_ = data.decode().split("\r\n") | ||
|
||
assert pid_stat.startswith("STAT pid") | ||
assert uptime_stat.startswith("STAT uptime") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
-- Sample SQL schema, no data | ||
CREATE TABLE `stuff` ( | ||
`id` mediumint NOT NULL AUTO_INCREMENT, | ||
`name` VARCHAR(63) NOT NULL, | ||
PRIMARY KEY (`id`) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-- Sample data, to be loaded after the schema | ||
INSERT INTO stuff (name) | ||
VALUES ("foo"), ("bar"), ("qux"), ("frob"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters