Skip to content

Commit

Permalink
Rebase and rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
JosefShenhav committed Apr 22, 2024
1 parent 056e48d commit c8b481e
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 2 deletions.
51 changes: 49 additions & 2 deletions modules/selenium/testcontainers/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,22 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.

from pathlib import Path
from typing import Optional

from typing_extensions import Self

import urllib3

from selenium import webdriver
from selenium.webdriver.common.options import ArgOptions

from core.network import Network
from testcontainers.core.container import DockerContainer
from testcontainers.core.waiting_utils import wait_container_is_ready
from testcontainers.selenium.video import SeleniumVideoContainer

IMAGES = {"firefox": "selenium/standalone-firefox-debug:latest", "chrome": "selenium/standalone-chrome-debug:latest"}
IMAGES = {"firefox": "selenium/standalone-firefox:latest", "chrome": "selenium/standalone-chrome:latest"}


def get_image_name(capabilities: str) -> str:
Expand Down Expand Up @@ -51,6 +56,7 @@ def __init__(
self.image = image or get_image_name(capabilities)
self.port = port
self.vnc_port = vnc_port
self.video = None
super().__init__(image=self.image, **kwargs)
self.with_exposed_ports(self.port, self.vnc_port)

Expand All @@ -72,3 +78,44 @@ def get_connection_url(self) -> str:
ip = self.get_container_host_ip()
port = self.get_exposed_port(self.port)
return f"http://{ip}:{port}/wd/hub"

def with_video(self, video_path: Optional[Path] = None) -> Self:
video_path = video_path or Path.cwd()

self.video = SeleniumVideoContainer()
video_folder_path = video_path.parent.resolve()
self.video.set_videos_host_path(str(video_folder_path))

if video_path.name:
self.video.set_video_name(video_path.name)

return self

def start(self) -> 'DockerContainer':
if not self.video:
super().start()
return self

network = Network().__enter__()

self.with_kwargs(network=network.name)
super().start()

self.video \
.with_kwargs(network=network.name) \
.set_selenium_container_host(self.get_wrapped_container().short_id) \
.start()

return self

def stop(self, force=True, delete_volume=True) -> None:
if self.video:
# get_wrapped_container().stop -> stop the container
# video.stop -> remove the container
self.video.get_wrapped_container().stop()
self.video.stop(force, delete_volume)

super().stop(force, delete_volume)

if self._network:
self._network.remove()
39 changes: 39 additions & 0 deletions modules/selenium/testcontainers/selenium/video.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#
# 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.
from typing import Optional

from testcontainers.core.container import DockerContainer

VIDEO_DEFAULT_IMAGE = "selenium/video:ffmpeg-6.1-20240402"


class SeleniumVideoContainer(DockerContainer):
"""
Selenium video container.
"""

def __init__(self, image: Optional[str] = None, **kwargs) -> None:
self.image = image or VIDEO_DEFAULT_IMAGE
super().__init__(image=self.image, **kwargs)

def set_video_name(self, video_name: str) -> 'DockerContainer':
self.with_env("FILE_NAME", video_name)
return self

def set_videos_host_path(self, host_path: str) -> 'DockerContainer':
self.with_volume_mapping(host_path, "/videos", "rw")
return self

def set_selenium_container_host(self, host: str) -> 'DockerContainer':
self.with_env("DISPLAY_CONTAINER_NAME", host)
return self
19 changes: 19 additions & 0 deletions modules/selenium/tests/test_selenium.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import tempfile
from pathlib import Path

import pytest
from selenium.webdriver import DesiredCapabilities
from selenium.webdriver.common.by import By
Expand All @@ -23,3 +26,19 @@ def test_selenium_custom_image():
chrome = BrowserWebDriverContainer(DesiredCapabilities.CHROME, image=image)
assert "image" in dir(chrome), "`image` attribute was not instantialized."
assert chrome.image == image, "`image` attribute was not set to the user provided value"


@pytest.mark.parametrize("caps", [DesiredCapabilities.CHROME])
def test_selenium_video(caps, workdir):
video_path = workdir / Path("video.mp4")
with BrowserWebDriverContainer(caps).with_video(video_path) as chrome:
chrome.get_driver().get("https://google.com")

assert video_path.exists(), "Selenium video file does not exists"


@pytest.fixture
def workdir() -> Path:
tmpdir = tempfile.TemporaryDirectory()
yield Path(tmpdir.name)
tmpdir.cleanup()

0 comments on commit c8b481e

Please sign in to comment.