chokdee

Results 9 issues of chokdee

**Citrus Version** 3.2.0 **Expected behavior** When sending a Request and call the receive() the response should be logged in any case **Actual behavior** If the extract failed because the response...

Type: Enhancement
good first issue

**Citrus Version** 3.1.0 **Expected behavior** All validator shall be called **Actual behavior** Only the first is called **Test case sample** ``` $(http().client(client).send() .post("/url") .message() .header("Content-Type", "application/json") .body(new ClassPathResource("citrus/testcase.json"))); $(http() .client(cwsClient)...

State: To discuss
Type: Question

**Citrus Version** 2.7.1 **Question** How to concat a single quote with citrus:concat? **What I've tried so far** ``` ``` The second value with a single quote isn't concated to the...

Type: Bug
Prio: Low
good first issue

**Citrus Version** 3.4.0 **Question** Why is the following code not working: ``` $(http() .client(myclient) .receive() .response(HttpStatus.OK) .message() .type(MessageType.JSON) .validate(jsonPath().expression("$.name", "meier")) .validate(jsonPath().expression("$.vorname", "heinz")) .validate(jsonPath().expression("$.city", "München"))); ``` **What I've tried so far**...

Type: Bug

**User story** As a tester, I don't want to see the output of binary responses, but I want to see Json or Text responses. That can corrupt the console. **Additional...

Type: Enhancement

This is a fix for the following issue https://github.com/citrusframework/citrus/issues/846

**Citrus Version** 2.7.4 **Expected behavior** Testcase isn't executed as it is when we are using the CitrusXmlTest annotation **Actual behavior** Testcase is executed **Test case sample** ``` public class Foo...

State: To discuss
Type: Bug
Prio: Low

**Citrus Version** 3.4.0 **Expected behavior** Validate should be called first, otherwise the error message is confusing. **Actual behavior** extract is failing before validate is failing **Test case sample** First example:...

Type: Question

**Citrus Version** 3.4.0 **Expected behavior** Printing German Umlauts with correct encoding **Actual behavior** Printing wrong characters to log **Test case sample** handleRequest(getRequestContent(request, new String(body))); should be handleRequest(getRequestContent(request, new String(body, StandardCharsets.UTF_8)));...

Type: Bug