From e2f8409810cdd62a9f95319a1cddc1a0fb650789 Mon Sep 17 00:00:00 2001 From: Fedor Dudinskiy Date: Wed, 27 Jul 2022 17:09:36 +0200 Subject: [PATCH] =?UTF-8?q?Test=20plans=20for=20QUARKUS-2098=20=E2=80=94?= =?UTF-8?q?=20Fix=20support=20of=20media=20types=20with=20suffixes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- QUARKUS-2098.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 QUARKUS-2098.md diff --git a/QUARKUS-2098.md b/QUARKUS-2098.md new file mode 100644 index 0000000..5a97e15 --- /dev/null +++ b/QUARKUS-2098.md @@ -0,0 +1,27 @@ +# QUARKUS-2098 - Fix support of media types with suffixes + +JIRA link: https://issues.redhat.com/browse/QUARKUS-2098 + +Test plan covers RESTEasy Reactive functionality provided by `quarkus-resteasy-reactive` and `quarkus-rest-client-reactive` extensions, +with emphasis on multipart form data support. + +https://quarkus.io/version/main/guides/resteasy-reactive + +https://quarkus.io/version/main/guides/rest-client-reactive + +## Scope of the testing +- Endpoints with mediatypes with suffix(e.g. application/test+json). + +### Impact on test suites and testing automation: +Negligible. There is a need to add three tests. + +## Automated test development +- Add test for mediatype with subtype and suffix +- Add tests for mediatype with either subtype or suffix +- Tests to make sure, that priority is + 1. git subtype+suffix + 2. only subtype + 3. only suffix + +## Time estimate +3 developer days