Update nextUrl validation to incorporate serverBasePath (#2048) (#2066) #4181
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
name: Integration Tests | |
on: [push, pull_request] | |
env: | |
TEST_BROWSER_HEADLESS: 1 | |
CI: 1 | |
PLUGIN_NAME: opensearch-security | |
jobs: | |
tests: | |
name: Run integration tests | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest , windows-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Branch | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Set env | |
run: | | |
opensearch_version=$(node -p "require('./package.json').opensearchDashboards.version") | |
plugin_version=$(node -p "require('./package.json').version") | |
echo "OPENSEARCH_VERSION=$opensearch_version" >> $GITHUB_ENV | |
echo "PLUGIN_VERSION=$plugin_version" >> $GITHUB_ENV | |
shell: bash | |
- uses: browser-actions/[email protected] | |
- run: geckodriver --version | |
- name: Set up Firefox browser | |
if: ${{ runner.os == 'Linux' }} | |
uses: browser-actions/setup-firefox@v1 | |
- run: firefox --version | |
if: ${{ runner.os == 'Linux' }} | |
# Browser-action version does not work on Windows | |
- name: Set up Firefox browser for Windows | |
if: ${{ runner.os == 'Windows' }} | |
uses: RyanL1997/setup-browser@main | |
with: | |
browser: firefox | |
version: latest | |
- name: Download security plugin and create setup scripts | |
uses: ./.github/actions/download-plugin | |
with: | |
opensearch-version: ${{ env.OPENSEARCH_VERSION }} | |
plugin-name: ${{ env.PLUGIN_NAME }} | |
plugin-version: ${{ env.PLUGIN_VERSION }} | |
- name: Run Opensearch with A Single Plugin | |
uses: opensearch-project/security/.github/actions/[email protected] | |
with: | |
opensearch-version: ${{ env.OPENSEARCH_VERSION }} | |
plugin-name: ${{ env.PLUGIN_NAME }} | |
setup-script-name: setup | |
admin-password: admin | |
- id: install-dashboards | |
uses: ./.github/actions/install-dashboards | |
with: | |
plugin_name: security-dashboards-plugin | |
- name: Start Dashboards in background | |
run: node scripts/build_opensearch_dashboards_platform_plugins.js | |
working-directory: ${{ steps.install-dashboards.outputs.dashboards-directory }} | |
- name: Run integration tests on Linux | |
if: ${{ runner.os == 'Linux' }} | |
run: | | |
echo "check if opensearch is ready" | |
curl -XGET https://localhost:9200 -u 'admin:admin' -k | |
yarn test:jest_server --coverage | |
working-directory: ${{ steps.install-dashboards.outputs.plugin-directory }} | |
- name: Run integration tests on Windows | |
if: ${{ runner.os == 'Windows' }} | |
run: | | |
echo "check if opensearch is ready" | |
curl -XGET https://localhost:9200 -u 'admin:admin' -k | |
node .\test\run_jest_tests.js --config .\test\jest.config.server.js --testPathIgnorePatterns saml_auth.test.ts | |
working-directory: ${{ steps.install-dashboards.outputs.plugin-directory }} |