[PR #170] [MERGED] Support json path in the response #785

Closed
opened 2025-12-29 15:33:13 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/wiremock/WireMock.Net/pull/170
Author: @StefH
Created: 7/23/2018
Status: Merged
Merged: 7/23/2018
Merged by: @StefH

Base: masterHead: SupportJSONPath_in_the_response


📝 Commits (10+)

📊 Changes

19 files changed (+591 additions, -74 deletions)

View changed files

📝 CHANGELOG.md (+7 -0)
📝 GitReleaseNotes.txt (+1 -1)
📝 README.md (+16 -16)
📝 examples/WireMock.Net.ConsoleApplication/MainApp.cs (+40 -0)
📝 examples/WireMock.Net.Service/Service-Install.bat (+1 -1)
📝 examples/WireMock.Net.WebApplication/WireMock.Net.WebApplication.NETCore2.csproj (+8 -2)
📝 src/WireMock.Net.StandAlone/WireMock.Net.StandAlone.csproj (+1 -1)
📝 src/WireMock.Net/Matchers/JsonMatcher.cs (+15 -4)
📝 src/WireMock.Net/Matchers/MatchBehaviourHelper.cs (+1 -2)
📝 src/WireMock.Net/Owin/OwinResponseMapper.cs (+5 -0)
📝 src/WireMock.Net/Server/FluentMockServer.Admin.cs (+0 -1)
📝 src/WireMock.Net/Server/FluentMockServer.cs (+1 -1)
src/WireMock.Net/Transformers/HandleBarsHelpers.cs (+89 -0)
📝 src/WireMock.Net/Transformers/ResponseMessageTransformer.cs (+86 -14)
📝 src/WireMock.Net/WireMock.Net.csproj (+5 -2)
📝 test/WireMock.Net.Tests/FluentMockServerTests.cs (+0 -1)
📝 test/WireMock.Net.Tests/Matchers/JsonMatcherTests.cs (+2 -2)
📝 test/WireMock.Net.Tests/ResponseBuilderTests/ResponseWithHandlebarsTests.cs (+312 -24)
📝 test/WireMock.Net.Tests/ResponseTests.cs (+1 -2)

📄 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/170 **Author:** [@StefH](https://github.com/StefH) **Created:** 7/23/2018 **Status:** ✅ Merged **Merged:** 7/23/2018 **Merged by:** [@StefH](https://github.com/StefH) **Base:** `master` ← **Head:** `SupportJSONPath_in_the_response` --- ### 📝 Commits (10+) - [`a838221`](https://github.com/wiremock/WireMock.Net/commit/a838221ff3c2001ed9e058a88e2e752438b38da6) jsonpath in response - [`2c929a0`](https://github.com/wiremock/WireMock.Net/commit/2c929a0e516fe62cc8030c640f5a0619080dd7cb) Fix tests - [`bd5e99b`](https://github.com/wiremock/WireMock.Net/commit/bd5e99b082e40e28f34a209eeff7c4280ab7102c) Merge branch 'master' into SupportJSONPath_in_the_response - [`8578325`](https://github.com/wiremock/WireMock.Net/commit/8578325d2458a925da739d49fafdbf68e223de5a) Support also BodyAsJson - [`f14468f`](https://github.com/wiremock/WireMock.Net/commit/f14468f693cc487f2ca0e8762f6af77e7129f93a) Fix Sonar Issue - [`f97fae6`](https://github.com/wiremock/WireMock.Net/commit/f97fae61dcdb6a9a7345fd95bd0055f10fefc679) Add example (zubinix2) - [`5cf40ff`](https://github.com/wiremock/WireMock.Net/commit/5cf40ff21adad7d46e9dfcfd9abe853815f0d1ed) Fix batch file - [`29b310d`](https://github.com/wiremock/WireMock.Net/commit/29b310d03dae4ed8cf3249e69b1e8a885427731c) Solve CodeFactor issues - [`4e0b22d`](https://github.com/wiremock/WireMock.Net/commit/4e0b22db08a824a8f42284344f6ca6f56a0fc1c8) netcoreapp2.0;netcoreapp2.1 - [`f217372`](https://github.com/wiremock/WireMock.Net/commit/f217372c83837bb9b0327627d86e2d5bb44864d1) 1.0.4.8 ### 📊 Changes **19 files changed** (+591 additions, -74 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+7 -0) 📝 `GitReleaseNotes.txt` (+1 -1) 📝 `README.md` (+16 -16) 📝 `examples/WireMock.Net.ConsoleApplication/MainApp.cs` (+40 -0) 📝 `examples/WireMock.Net.Service/Service-Install.bat` (+1 -1) 📝 `examples/WireMock.Net.WebApplication/WireMock.Net.WebApplication.NETCore2.csproj` (+8 -2) 📝 `src/WireMock.Net.StandAlone/WireMock.Net.StandAlone.csproj` (+1 -1) 📝 `src/WireMock.Net/Matchers/JsonMatcher.cs` (+15 -4) 📝 `src/WireMock.Net/Matchers/MatchBehaviourHelper.cs` (+1 -2) 📝 `src/WireMock.Net/Owin/OwinResponseMapper.cs` (+5 -0) 📝 `src/WireMock.Net/Server/FluentMockServer.Admin.cs` (+0 -1) 📝 `src/WireMock.Net/Server/FluentMockServer.cs` (+1 -1) ➕ `src/WireMock.Net/Transformers/HandleBarsHelpers.cs` (+89 -0) 📝 `src/WireMock.Net/Transformers/ResponseMessageTransformer.cs` (+86 -14) 📝 `src/WireMock.Net/WireMock.Net.csproj` (+5 -2) 📝 `test/WireMock.Net.Tests/FluentMockServerTests.cs` (+0 -1) 📝 `test/WireMock.Net.Tests/Matchers/JsonMatcherTests.cs` (+2 -2) 📝 `test/WireMock.Net.Tests/ResponseBuilderTests/ResponseWithHandlebarsTests.cs` (+312 -24) 📝 `test/WireMock.Net.Tests/ResponseTests.cs` (+1 -2) </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 15:33:13 +01:00
adam closed this issue 2025-12-29 15:33:13 +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-wiremock#785