chromium-dashboard/Dockerfile

38 строки
1.3 KiB
Docker
Исходник Постоянная ссылка Обычный вид История

Dlaliberte playwright 06 22 (#3184) * Initial install of playwright visual tests * Close to working. * who knows... * after updates * Extend devcontainer docker compose file for playwright (#3192) * Extend devcontainer docker compose file for playwright Create another docker compose file for playwright. That new one extends the existing docker compose Should be able to run: `npm run pwtests` * adjust gh action * adjust gh action * remove volumes * add timeout * fix volumes * Fix docker compose environment * ignore stuff and volume mounting * Attempting to login reliably * Auto cleanups. * Finally starting to work * Thought it was getting better, but maybe not * Seems reliable now * Higher success rate * Add test of entering feature name. Remove new feature page content test. * Add playwright-report dir to Dockerfile. * Comment out mkdir -p /work/playwright-report line. * Update screenshots. * Increasing timeout for entering feature name * try running as user (#3248) * try running as user * again * try * change volume ownership * tidy up * Adjust login process to be more reliable. * Add 5 second delay before first test runs. * Wait longer for first login. * Add auto-logout during login if already logged in * Screenshot after login click * Add testName to screenshots. Upload artifacts. Fix form method="POST". * Add doc to README for Updating the test_html_rendering files. * Maybe increase chance of login. * Add a couple more delays. * Repeat auto-logout during login until no longer logged in, before logging in again. * Add some more delays. * Use loginButton.click(). Add delay before after-click screenshot. * Add console info an errors to login process. * Capture console messages, relay to terminal. * Capture console messages properly. * Add some more console messages during login. * Ignore error on jsonValue. * Reduce most delays. Add more logs. Add top-level playwright call. * More logging to figure out why login fails * More logging to detect if ever logged in. * Add more logging to each stage of testing * Use history.replaceState before changing location. * Use location.reload() after a timeout. * After login, just load home page. * Add playwright-report to artifacts. * Turn off playwright-report during CI * Log response after login * Only log first response after request that should log in. * Look for 'currentuser/permissions' request/response. * Delay after mock_login and before reload of home page * Comment out header and cookie logs. * Act like logged when in DEV_MODE and login attempted. * Fix mock mock login. * Undo fake mock_login. * rearrange docker (#3265) * Updates after changes by James. * Fix previous updates. * Remove pwtests-shutdown from "stop" command. * Remove pwtest from client-src/elements. (moved to packages/playwright/tests) * update paths for run.sh * Add pwtests-shutdown to top-level stop command. * Remove "playwright" from ./wait-for-app.sh * Add logging of user login status. * add playwright_display for debugging * add server debugging * Remove extra "/__screenshots__" in path. * Update the path for test-results artifacts in the playwright.yml * add health checks * fix action * fix run.sh * Add beforeAll method, disabled. * add dsadmin * Add top level pwtests command, not working yet. * cleanup and undo changes * use transactions * always reuse server * temp: limit the workers * Partial cleanup. Reduce timeouts and delays a bit. * More cleanup. Reduce timeout/delay. * Update the correct README file. Update html rendering tests. * Remove unnecessary changes. * set script-shell to fix source not found and call npm run setup (#3292) * set script-shell to fix source not found and call npm run setup There has always been `source: not found` in the previous CI jobs The tests previously worked because npm run deps installs the requirements into the default environment and not the virtual environment. And since we actually did not call `source` correctly, it was okay because the default environment had the packages installed. The problem started to arise because we started to call `source` correctly in some places but not all places. This fixes by setting the shell consistently whenever we call `source` More info: https://morgan.cugerone.com/blog/troubleshooting-source-not-found-when-in-the-context-of-package-json-scripts/ * do each separately * Revert "do each separately" This reverts commit 4fc75f740789d67fca0f375573a0cef6e5c58714. * do ci job * consistent to the right datastore mode * verbose * kill the emulator * remove verbose * Reenable Google login * Finish reenabling Google signin button. Add margin for Firefox. * Only show Google signin if playwright is not active * Preserve url on login. Use default num of workers. Retry tests in CI * Some updates after comments * optimize docker changes * Rename account-indicator. Shorten some delays. * revert the workers * Make playwright.yml push and pull_request triggers be like others. * Use getByTestId instead of locator with data-testid. --------- Co-authored-by: James C Scott III <jcscottiii@users.noreply.github.com> Co-authored-by: James Scott <jamescscott@google.com>
2023-09-06 22:35:06 +03:00
ARG PYTHON_VARIANT=3.11-bullseye
FROM python:${PYTHON_VARIANT} as app
RUN groupadd -g 1001 appuser && \
useradd appuser -u 1001 -g 1001 -m -d /home/appuser -s /bin/bash
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# openapi-generator-cli dependencies
&& apt-get install -y openjdk-17-jre
USER appuser
# Install node
ENV NVM_DIR=/home/appuser/.nvm \
# Need the full major.minor.patch version for NODE_VERISON
# https://nodejs.org/en/download/releases
NODE_VERSION=18.17.1
RUN mkdir /home/appuser/.nvm && \
curl https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.4/install.sh | bash \
&& . $NVM_DIR/nvm.sh \
&& nvm install $NODE_VERSION \
&& nvm alias default $NODE_VERSION \
&& nvm use default \
&& npm config set script-shell bash
ENV NODE_PATH=$NVM_DIR/v$NODE_VERSION/lib/node_modules \
PATH="${PATH}:$NVM_DIR/versions/node/v$NODE_VERSION/bin"
WORKDIR /workspace
# Cache the infrequent but time consuming changes early
COPY --chown=appuser:appuser requirements.txt requirements.dev.txt package.json package-lock.json /workspace/
COPY --chown=appuser:appuser openapi /workspace/openapi/
COPY --chown=appuser:appuser gen /workspace/gen/
RUN npm install -g gulp-cli && npm run setup && cs-env/bin/python -m pip install debugpy==1.6.7.post1
# Copy the rest
COPY --chown=appuser:appuser . /workspace