-
Notifications
You must be signed in to change notification settings - Fork 660
Add bidirectional index/codec compatibility harness for Lucene, #270 #1351
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
paulirwin
wants to merge
7
commits into
apache:master
Choose a base branch
from
paulirwin:issue/270
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
845abf3
Add bidirectional index/codec compatibility harness for Lucene 4.8.1,…
paulirwin cf62aec
Move TestJavaCompatibility to Support
paulirwin b5b3bca
Rename types for consistency
paulirwin 7d860b9
De-duplicate scripts, and fix path
paulirwin 4a3cf9a
Apply suggestions from code review
paulirwin da66f1f
PR feedback; import classes
paulirwin a268fd9
Fix line endings
paulirwin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,169 @@ | ||
| # Licensed to the Apache Software Foundation (ASF) under one | ||
| # or more contributor license agreements. See the NOTICE file | ||
| # distributed with this work for additional information | ||
| # regarding copyright ownership. The ASF licenses this file | ||
| # to you 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. | ||
|
|
||
| # Verifies two-way index/codec compatibility between Lucene.NET and Apache | ||
| # Lucene 4.8.1 (Java), per issue #270. Each runtime writes an index that the | ||
| # other reads back and validates with CheckIndex. See src/java/index-compat. | ||
| # | ||
| # This workflow is hand-maintained (NOT generated by Generate-TestWorkflows.ps1), | ||
| # because it needs a JDK and runs a Maven <-> dotnet orchestration that does not | ||
| # fit the generated per-project test template. | ||
|
|
||
| name: 'Index Compatibility' | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| paths: | ||
| # The compatibility harness itself | ||
| - 'src/java/index-compat/**/*' | ||
| - 'src/Lucene.Net.Tests/Index/TestJavaCompatibility.cs' | ||
| # Production code whose on-disk format the harness validates | ||
| - 'src/Lucene.Net/Codecs/**/*' | ||
| - 'src/Lucene.Net/Index/**/*' | ||
| - 'src/Lucene.Net/Store/**/*' | ||
| # Build/runtime inputs that can affect the produced index | ||
| - 'src/Lucene.Net.Analysis.Common/**/*' | ||
| - 'src/Lucene.Net.TestFramework/**/*' | ||
| - 'TestTargetFrameworks.*' | ||
| - 'Directory.Build.*' | ||
| - 'src/Directory.Build.*' | ||
| - '.github/workflows/Lucene-Net-Index-Compatibility.yml' | ||
| - '!**/*.md' | ||
|
|
||
| env: | ||
| DOTNET_CLI_TELEMETRY_OPTOUT: 1 | ||
| DOTNET_NOLOGO: 1 | ||
| NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages | ||
| BUILD_FOR_ALL_TEST_TARGET_FRAMEWORKS: 'true' | ||
| # The _I-J shard owns Index/TestJ*.cs, so it contains TestJavaCompatibility. | ||
| project_path: './src/Lucene.Net.Tests._I-J/Lucene.Net.Tests._I-J.csproj' | ||
| compat_dir: './src/java/index-compat' | ||
|
|
||
| jobs: | ||
|
|
||
| Compatibility: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| os: [windows-latest, ubuntu-latest] | ||
| framework: [net10.0, net8.0, net48, net472] | ||
| platform: [x64] | ||
| configuration: [Release] | ||
| exclude: | ||
| - os: ubuntu-latest | ||
| framework: net48 | ||
| - os: ubuntu-latest | ||
| framework: net472 | ||
|
|
||
| steps: | ||
| - name: Checkout Source Code | ||
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | ||
|
|
||
| - name: Setup Java (JDK) | ||
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | ||
| with: | ||
| distribution: 'zulu' | ||
| java-version: '21' | ||
|
|
||
| - name: Setup .NET 8 SDK | ||
| uses: actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0 | ||
| with: | ||
| dotnet-version: '8.0.x' | ||
| if: ${{ startswith(matrix.framework, 'net8.') }} | ||
|
|
||
| - name: Setup .NET 10 SDK | ||
| uses: actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0 | ||
| with: | ||
| dotnet-version: '10.0.x' | ||
|
|
||
| - name: Cache NuGet Packages | ||
| uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 | ||
| with: | ||
| # Use a 'compat-' prefixed key so this cache lives in its own namespace. | ||
| # This job only restores the _I-J project, a smaller package closure than | ||
| # the generated workflows' full-solution restore. Sharing their 'nuget-...' | ||
| # key would let whichever job runs first populate a partial cache the other | ||
| # then gets a (wrong-sized) hit on. A separate key avoids that interaction. | ||
| key: compat-nuget-${{ runner.os }}-${{ env.BUILD_FOR_ALL_TEST_TARGET_FRAMEWORKS }}-${{ hashFiles('**/*.*proj', '**/*.props', '**/*.targets', '**/*.sln', '*.sln', 'global.json') }} | ||
| path: ${{ env.NUGET_PACKAGES }} | ||
|
|
||
| - name: Cache Maven Packages | ||
| uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 | ||
| with: | ||
| key: maven-${{ runner.os }}-${{ hashFiles('src/java/index-compat/pom.xml') }} | ||
| restore-keys: | | ||
| maven-${{ runner.os }}- | ||
| path: ~/.m2/repository | ||
|
|
||
| - name: Restore .NET | ||
| run: dotnet restore "${{ env.project_path }}" /p:TestFrameworks=${{ env.BUILD_FOR_ALL_TEST_TARGET_FRAMEWORKS }} | ||
|
|
||
| - name: Build .NET test shard | ||
| run: dotnet build "${{ env.project_path }}" --configuration "${{ matrix.configuration }}" --framework "${{ matrix.framework }}" --no-restore -p:TestFrameworks=${{ env.BUILD_FOR_ALL_TEST_TARGET_FRAMEWORKS }} | ||
| shell: bash | ||
|
|
||
| # --------------------------------------------------------------------- | ||
| # Direction 1: .NET writes, Java reads | ||
| # --------------------------------------------------------------------- | ||
| # dotnet test exits 0 when a --filter matches nothing or a test is skipped, | ||
| # which would hide a misconfiguration. Capture the output and fail unless | ||
| # exactly the expected test ran and passed. | ||
| - name: '.NET writes index' | ||
| # The test reads its target via the env var "lucenenet.compat.write.dir". | ||
| # Names with dots are not valid bash identifiers, so we apply it with `env` | ||
| # rather than a plain assignment. Using `shell: bash` keeps this identical | ||
| # on Windows (Git Bash) and Linux. | ||
| run: | | ||
| set -o pipefail | ||
| out=$(env "lucenenet.compat.write.dir=$WRITE_DIR" dotnet test "${{ env.project_path }}" --configuration "${{ matrix.configuration }}" --framework "${{ matrix.framework }}" --no-build --no-restore --logger:"console;verbosity=normal" --filter "FullyQualifiedName~TestJavaCompatibility.TestWriteIndexForJava" 2>&1) | ||
| echo "$out" | ||
| echo "$out" | grep -Eq 'Passed:[[:space:]]*1\b' || { echo "::error::TestWriteIndexForJava did not run/pass"; exit 1; } | ||
| shell: bash | ||
| env: | ||
| WRITE_DIR: ${{ github.workspace }}/src/java/index-compat/work/dotnet | ||
|
|
||
| - name: 'Java reads .NET index (nocfs)' | ||
| run: ./mvnw -q test "-Dlucenenet.index.dir=work/dotnet/index.481.nocfs" | ||
| working-directory: ${{ env.compat_dir }} | ||
| shell: bash | ||
|
|
||
| - name: 'Java reads .NET index (cfs)' | ||
| run: ./mvnw -q test "-Dlucenenet.index.dir=work/dotnet/index.481.cfs" | ||
| working-directory: ${{ env.compat_dir }} | ||
| shell: bash | ||
|
|
||
| # --------------------------------------------------------------------- | ||
| # Direction 2: Java writes, .NET reads | ||
| # --------------------------------------------------------------------- | ||
| - name: 'Java writes index' | ||
| run: ./mvnw -q compile exec:java "-Dexec.args=work/java" | ||
| working-directory: ${{ env.compat_dir }} | ||
| shell: bash | ||
|
|
||
| # Guard against a false green: TestReadJavaIndex self-skips (Inconclusive) when | ||
| # it can't find the index, and a skipped test still exits 0. Require Passed: 1. | ||
| - name: '.NET reads Java index' | ||
| run: | | ||
| set -o pipefail | ||
| out=$(env "lucenenet.compat.read.dir=$READ_DIR" dotnet test "${{ env.project_path }}" --configuration "${{ matrix.configuration }}" --framework "${{ matrix.framework }}" --no-build --no-restore --logger:"console;verbosity=normal" --filter "FullyQualifiedName~TestJavaCompatibility.TestReadJavaIndex" 2>&1) | ||
| echo "$out" | ||
| echo "$out" | grep -Eq 'Passed:[[:space:]]*1\b' || { echo "::error::TestReadJavaIndex did not run/pass (skipped or filtered out)"; exit 1; } | ||
| shell: bash | ||
| env: | ||
| READ_DIR: ${{ github.workspace }}/src/java/index-compat/work/java | ||
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.