Skip to content

CTRL-C handling in Behat inside docker #299

Open
@skodak

Description

@skodak

Quite often I realise I need to do some changes in feature fields before behat execution in docker completes, so I press CTRL-C to stop it. But the CTRL-C does not work the same in PHP inside docker and so the selenium session does not get terminated properly and because there is a default maximum session limit of 1 in standalone chrome selenium then the next behat gets stuck for 300 seconds until the selenium session times out (or until you restart selenium).

Workaround is to increase the maximum number of sessions like this

services:
  selenium:
    ports:
      - "${MOODLE_DOCKER_SELENIUM_VNC_PORT}:5900"
    environment:
        # Workaround for https://github.com/SeleniumHQ/docker-selenium/issues/227
        "no_proxy": localhost
        # Allow new behat after CTRL-C, the aborted sessions will time out in 300 seconds by default.
        SE_NODE_MAX_SESSIONS: 8
        SE_NODE_OVERRIDE_MAX_SESSIONS: true

skodak@c180ab2

I wanted to ask you guys, is there is a better way to deal with CTRL-C so that standard PHP signal handling works as usual?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions