[PR #817] [MERGED] ExactMatcher : IgnoreCase #1097

Closed
opened 2025-12-29 08:34:39 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/wiremock/WireMock.Net/pull/817
Author: @StefH
Created: 9/26/2022
Status: Merged
Merged: 10/15/2022
Merged by: @StefH

Base: masterHead: exactmatcher-ignorecase


📝 Commits (6)

📊 Changes

20 files changed (+812 additions, -698 deletions)

View changed files

📝 src/WireMock.Net.Abstractions/Models/IBodyData.cs (+3 -3)
📝 src/WireMock.Net/Matchers/ExactMatcher.cs (+24 -5)
📝 src/WireMock.Net/Matchers/JsonPartialMatcher.cs (+1 -1)
📝 src/WireMock.Net/Matchers/MatchOperator.cs (+1 -1)
📝 src/WireMock.Net/Matchers/Request/RequestMessageBodyMatcher.cs (+9 -9)
📝 src/WireMock.Net/Matchers/Request/RequestMessageParamMatcher.cs (+1 -1)
📝 src/WireMock.Net/Models/BodyData.cs (+1 -1)
📝 src/WireMock.Net/Owin/AspNetCoreSelfHost.cs (+1 -1)
📝 src/WireMock.Net/Proxy/ProxyHelper.cs (+72 -0)
📝 src/WireMock.Net/Serialization/MatcherMapper.cs (+1 -1)
📝 src/WireMock.Net/Serialization/ProxyMappingConverter.cs (+2 -2)
📝 src/WireMock.Net/Server/IRespondWithAProvider.cs (+160 -162)
📝 src/WireMock.Net/Util/DictionaryExtensions.cs (+1 -0)
📝 src/WireMock.Net/Util/TypeBuilderUtils.cs (+2 -1)
📝 test/WireMock.Net.Tests/Matchers/ExactMatcherTests.cs (+146 -134)
📝 test/WireMock.Net.Tests/RequestMatchers/RequestMessageBodyMatcherTests.cs (+350 -351)
📝 test/WireMock.Net.Tests/ResponseBuilders/ResponseWithTransformerTests.cs (+13 -13)
📝 test/WireMock.Net.Tests/Serialization/MatcherMapperTests.cs (+20 -0)
📝 test/WireMock.Net.Tests/Serialization/files/proxy.json (+4 -2)
📝 test/WireMock.Net.Tests/WireMock.Net.Tests.csproj (+0 -10)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/wiremock/WireMock.Net/pull/817 **Author:** [@StefH](https://github.com/StefH) **Created:** 9/26/2022 **Status:** ✅ Merged **Merged:** 10/15/2022 **Merged by:** [@StefH](https://github.com/StefH) **Base:** `master` ← **Head:** `exactmatcher-ignorecase` --- ### 📝 Commits (6) - [`93daafe`](https://github.com/wiremock/WireMock.Net/commit/93daafe34ac5547944cf255bbdca2235d4bf02ef) ... - [`29e6456`](https://github.com/wiremock/WireMock.Net/commit/29e6456dda4206913770031c87d1651c2bd4fa99) mm - [`52ad0f8`](https://github.com/wiremock/WireMock.Net/commit/52ad0f8c3364e9804195e96c69802e9480f2cc67) fix some null warnings - [`6a2cc57`](https://github.com/wiremock/WireMock.Net/commit/6a2cc57334358b0816e3c1b4766f506e3e7b1d59) merge from master - [`a4c8c20`](https://github.com/wiremock/WireMock.Net/commit/a4c8c20a33a89d0562f1fe279d56f5ba4f1dfc84) fx - [`b8c1930`](https://github.com/wiremock/WireMock.Net/commit/b8c1930424c5a8e42d875b53e8877e2fac92345a) Merge branch 'master' into exactmatcher-ignorecase ### 📊 Changes **20 files changed** (+812 additions, -698 deletions) <details> <summary>View changed files</summary> 📝 `src/WireMock.Net.Abstractions/Models/IBodyData.cs` (+3 -3) 📝 `src/WireMock.Net/Matchers/ExactMatcher.cs` (+24 -5) 📝 `src/WireMock.Net/Matchers/JsonPartialMatcher.cs` (+1 -1) 📝 `src/WireMock.Net/Matchers/MatchOperator.cs` (+1 -1) 📝 `src/WireMock.Net/Matchers/Request/RequestMessageBodyMatcher.cs` (+9 -9) 📝 `src/WireMock.Net/Matchers/Request/RequestMessageParamMatcher.cs` (+1 -1) 📝 `src/WireMock.Net/Models/BodyData.cs` (+1 -1) 📝 `src/WireMock.Net/Owin/AspNetCoreSelfHost.cs` (+1 -1) 📝 `src/WireMock.Net/Proxy/ProxyHelper.cs` (+72 -0) 📝 `src/WireMock.Net/Serialization/MatcherMapper.cs` (+1 -1) 📝 `src/WireMock.Net/Serialization/ProxyMappingConverter.cs` (+2 -2) 📝 `src/WireMock.Net/Server/IRespondWithAProvider.cs` (+160 -162) 📝 `src/WireMock.Net/Util/DictionaryExtensions.cs` (+1 -0) 📝 `src/WireMock.Net/Util/TypeBuilderUtils.cs` (+2 -1) 📝 `test/WireMock.Net.Tests/Matchers/ExactMatcherTests.cs` (+146 -134) 📝 `test/WireMock.Net.Tests/RequestMatchers/RequestMessageBodyMatcherTests.cs` (+350 -351) 📝 `test/WireMock.Net.Tests/ResponseBuilders/ResponseWithTransformerTests.cs` (+13 -13) 📝 `test/WireMock.Net.Tests/Serialization/MatcherMapperTests.cs` (+20 -0) 📝 `test/WireMock.Net.Tests/Serialization/files/proxy.json` (+4 -2) 📝 `test/WireMock.Net.Tests/WireMock.Net.Tests.csproj` (+0 -10) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 08:34:39 +01:00
adam closed this issue 2025-12-29 08:34:39 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/WireMock.Net#1097